摘要: 1.当生成vue实例后,当再次给数据赋值时,有时候并不会自动更新到视图上去 解决方案:this.$set(data,'sex', '男') 参考链接:https://www.jianshu.com/p/358c1974d9a5 阅读全文
posted @ 2018-03-12 16:22 东少回忆 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1.webpack打包后z-index失效 解决方案:z-index设置成行内样式,例如:root.style.cssText = 'z-index:100000 !important;'; 阅读全文
posted @ 2018-03-12 16:21 东少回忆 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1.小程序遮罩滚动穿透问题 解决方案: <view class="mask" wx:if="{{showVipRights}}" catchtap='hideMask' capture-catch:touchmove="preventScroll"></view> preventScroll() { 阅读全文
posted @ 2018-03-12 16:18 东少回忆 阅读(1115) 评论(0) 推荐(0) 编辑
摘要: 1.element-ui 使用MessageBox后弹窗显示异常 解决方案:去掉Vue.use(MessageBox); 2.element-ui 分页切换后若改变总数会导致请求两次 解决方案:<el-paginationv-if ="pagination.totalNum > pagination 阅读全文
posted @ 2018-03-12 16:14 东少回忆 阅读(2289) 评论(0) 推荐(0) 编辑