Fork me on GitHub
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页
摘要: 地址:https://pan.baidu.com/s/10o6lxN2pFk1eun5G0ZNlPw 提取码:7oga安装方式:打开goole浏览器扩展程序页面:然后把文件拖拽到里面即可 阅读全文
posted @ 2019-09-04 18:02 欢欢11 阅读(122) 评论(0) 推荐(0) 编辑
摘要: var src = 'http://imtt.dd.qq.com/16891/26747DD8B125A8479AD0C9D22CA47BC9.apk?fsname=com.snda.wifilocating_4.2.91_3211.apk&csr=1bbd'; var src = 'http:// 阅读全文
posted @ 2019-09-04 09:53 欢欢11 阅读(3761) 评论(0) 推荐(0) 编辑
摘要: // 丢弃小数部分,保留整数部分 parseInt(5/2) // 2 // 向上取整,有小数就整数部分加1 Math.ceil(5/2) // 3 // 向下取整,丢弃小数部分 Math.floor(5/2) // 2 // 四舍五入 Math.round(5/2) // 3 // 取余 6%4 阅读全文
posted @ 2019-08-29 09:47 欢欢11 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-28 23:01 欢欢11 阅读(150) 评论(0) 推荐(0) 编辑
摘要: // #ifdef H5 uni.navigateBack({ delta: 2 }); //#endif uni.navigateBack({ delta: 1 }); 如果页面有showModel这类弹窗 uni.navigateBack({}); 跳转不出去 阅读全文
posted @ 2019-08-26 16:32 欢欢11 阅读(2230) 评论(0) 推荐(0) 编辑
摘要: //安装: npm install vue-bus1. // app.js var eventBus = { install(Vue,options) { Vue.prototype.$bus = new Vue() } }; Vue.use(eventBus); 2.然后在组件中,可以使用$emit, $on, $off 分别来分发、监听、取消... 阅读全文
posted @ 2019-08-17 09:43 欢欢11 阅读(540) 评论(0) 推荐(0) 编辑
摘要: :class="`字符串${index}`" 阅读全文
posted @ 2019-08-15 17:34 欢欢11 阅读(2883) 评论(1) 推荐(0) 编辑
摘要: var DateTime = "Sun Jul 28 2019 00:00:00 GMT+0800 (中国标准时间)" var curTime = moment(DateTime).format("HH:mm:ss"); console.log(curTime) //输出: 00:00:00 var curTime = moment(DateTime).format("hh:mm:s... 阅读全文
posted @ 2019-07-28 19:59 欢欢11 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 1. 输入 ctrl + shift + p 打开 2. 输入pc 安装 install package 3.输入安装SublimeCodeIntel 4.重启应用即可 阅读全文
posted @ 2019-07-24 22:32 欢欢11 阅读(293) 评论(0) 推荐(0) 编辑
摘要: /* 设置table header的背景颜色 */ .el-table__header th, .el-table__header tr { background-color: #17B3A3; color: black; } /* 设置表主体的高度 */ .el-table__body td,.el-table__body th{ padding:1px; } /* 设置表头... 阅读全文
posted @ 2019-07-19 10:57 欢欢11 阅读(166) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页