摘要:
因为v-for 带索引时,括号与in之间必须加空格,否则就会报如下如的错误。 正确如下:in与括号之间必须要有空格 阅读全文
摘要:
vue 使用elementUI实现树懒加载功能以及节点过滤 1.过滤:设置filter-node-method,值为过滤函数。 2.懒加载:点击节点时才进行该层数据的获取 <el-input placeholder="输入关键字进行过滤" size="mini" v-model="filterTex 阅读全文
摘要:
Vue 删除取消时报Uncaught (in promise) cancel错误,如下图: 原因:this.$confirm方法内置promise方法, 所以.catch()不能省略(因为取消操作时,无法捕获),虽然不影响操作,但操作台报错 重点:在this.$confirm方法后加上 .catch 阅读全文
摘要:
js 获取当前时间戳与前一天或者后一天时间戳 获取当前时间戳: new Date().getTime() 获取前一天时间戳: (new Date()).getTime()-24*60*60*1000 //当前时间戳(毫秒) - 1天毫秒数 = 前一天时间戳 获取明天时间戳: (new Date()) 阅读全文
摘要:
vue elementUI el-tree默认选中树节点 1.设置一个固定值作为key:node-key="id" 2.定义当前选中节点的key::current-node-key="currentId" <el-tree node-key="id" :current-node-key="curre 阅读全文
摘要:
vue axios异步处理方案 1.使用setTimeout函数用延时处理(复杂一点逻辑会达不到效果) 实例: setTimeout(() => { console.log('1'); }, 3000); setTimeout(() => { console.log('2') }, 1000); 控 阅读全文
摘要:
js实现动态时间功能,实时日期自走动功能 效果如下: html页面js方式实现 1.获取实时日期 <div id="headerTime" class="header-time text"> <span class="header-time-span1" id="tobaccoTime1"></sp 阅读全文
摘要:
动态传参的Echarts图表,需要根据不同参数改变图表的构建时,发现只通过 var myChart = echarts.init(document.getElementById('main'));//<div>容器id:main 实例化,在第二次查询时echarts上会遗留上次查询的结果。问题如下图 阅读全文
摘要:
在el-input中可以通过 prefix-icon(首部)和 suffix-icon(尾部) 属性在 input 组件增加显示图标,也可以通过 slot 来放置图标。如下图: 代码如下: <div class="demo-input-suffix"> 属性方式: <el-input placeho 阅读全文
摘要:
1.在子组件中通过“this.$parent.event”来调用父组件的方法 父组件如下: <template> <div> <child></child> </div> </template> <script> import child from './components/childcompon 阅读全文