- 博客(16)
- 资源 (1)
- 收藏
- 关注
原创 递归处理树
// 递归处理树 treeRecursive(list) { return list.map(el => { if (el.permission && el.permission.length > 0) { el.children = el.permission.map(p => { p.isPermis = true return p }) .
2022-01-19 16:28:18
347
原创 数组去重复
// 数组去重复 fun(arr) { const s1 = new Set(arr) const arr2 = [] for (const item of s1) { arr2.push(item) } return arr2 },
2022-01-19 16:18:24
209
原创 div button 点击样式
.el-button:focus{}<div v-for="(item,i) in colorlist" :key="i" class="leftdiv" :class="getStyle(item)" @click="activeBtn(item)">金刚网折叠门</div>colorlist: [ { a1: false, a2: '金刚网折叠门' }, { a1: false, a2: '金刚网折叠门' }, { a1.
2021-11-15 19:56:07
833
转载 js截取字符串
js截取字符串的三种方法,slice、substring、substr的区别_web_xyk的专栏-优快云博客_js substring截取字符串
2021-11-09 18:17:00
84
原创 vue获取当前时间
// 获取当前时间 gettime(){ let yy = new Date().getFullYear(); let mm = new Date().getMonth()+1; let dd = new Date().getDate(); let hh = new Date().getHours(); let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes(..
2021-10-30 09:55:54
169
原创 vue 删除树结构中的空数组
// 删除树结构中的空数组 removeEmptyChildren (node) { node.forEach(item =>{ if('children' in item && item.children.length === 0){ delete item.children }else if ('children' in item && item.children.length){ .
2021-10-29 19:54:06
488
原创 vue 时间戳转标准时间
<el-table-column prop="createDate" :formatter="formatDate" label="创建时间" />// 时间戳转时间 formatDate(row, column, cellValue, index) { let time = cellValue !== null ? this.$moment(cellValue).format("YYYY-MM-DD HH:mm:ss") .
2021-10-29 17:08:08
229
原创 “‘node‘ 不是内部或外部命令,也不是可运行的程序或批处理文件”。vscode 终端被占用
1.打开cmd 输入node -v(有空格)查看是否安装,如返回“'node' 不是内部或外部命令,也不是可运行的程序或批处理文件”。2.从新下载node.js3.Node.js 中文网
2021-10-22 10:55:05
1499
原创 vue Vant组件 密码输入 样式修改
::v-deep .van-password-input__security li{ border-bottom: 1px solid #DDDDDD; background: #f0f3f5;}
2021-10-21 11:58:26
1003
原创 vue Vant组件cell单元格箭头对齐
css.van-cell { ::v-deep .van-icon { display: flex; align-items: center; }}
2021-10-21 11:55:53
1069
原创 vue删除弹窗
// 删除弹框 handleDeleteShow (index, row) { const obj = { id: row.id } console.log('obj', obj) this.$confirm('此操作将删除该条数据,是否继续?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warnin.
2021-10-21 11:46:11
819
原创 vue清空数组
//清空letobject=this.paramfor(constkeyinobject){ if(Object.hasOwnProperty.call(object,key)){ this.param[key]="";}}
2021-10-21 11:31:07
2968
原创 vue时间戳转时间,时间转时间戳
//时间戳格式化 formatDate(value) { if (!value) { return; } else { let date = new Date(value); let y = date.getFullYear(); let MM = date.getMonth() + 1; MM = MM < 10 ? "0" + MM : MM; let d = date.
2021-10-21 11:20:52
1254
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人