摘要: 鼠标经过变宽 ::v-deep .el-scrollbar { .el-scrollbar__bar{ width: 6px; right: 2px; .el-scrollbar__thumb { width: 4px; border-radius: 4px; background-color: # 阅读全文
posted @ 2024-06-27 15:29 bingxiaoxiao 阅读(1) 评论(0) 推荐(0) 编辑
摘要: el-tabs初始加载时,el-tabs__active-bar的宽度为0,导致下划线不显示问题 首先在el-tabs组件中加入v-if=“ifShow”, 默认值为false 请求tabList数据接口时给添加为true <el-tabs v-if="ifShow" v-model="authTy 阅读全文
posted @ 2024-06-26 17:55 bingxiaoxiao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阿里巴巴矢量图标库:https://www.iconfont.cn/第一步:生成fontclass地址 将喜欢的icon加入购物车 将购物车中的图标添加至项目 获取项目,下载至本地 使用iconfont.css 第二步:引入字体 将iconfont.css 内容粘贴到微信小程序项目中 assets/ 阅读全文
posted @ 2024-05-28 18:09 bingxiaoxiao 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <!--修改二级字段-->const list = this.pcTreeData.map(item => { const arr = item.btnInfoVos.map(i => { return { ...i, id: i.btnCode, componentTitle: i.btnName 阅读全文
posted @ 2024-05-27 17:32 bingxiaoxiao 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实现可拖拽边界布局 a56爆大奖在线娱乐可拖拽边界的布局,通过拖动分隔线来调整不同区域大小。 主要涉及到以下几个方面: 布局结构:使用flex布局来实现容器和子元素的分配,使用style绑定来动态调整区域的大小,使用cursor属性来改变鼠标的形状。数据定义:使用data选项来定义不同区域的宽度和高度,以及是否正在 阅读全文
posted @ 2024-05-07 14:17 bingxiaoxiao 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1. 使用delete let a = {b:1,c:2} delete a.b//true console.log(a)//{c:2} 2. 使用解构 let a = {b:1,c:2} let {b,...a} = a console.log(a)//{c:2} 3.使用反射 let a = { 阅读全文
posted @ 2022-05-05 14:44 bingxiaoxiao 阅读(1168) 评论(0) 推荐(0) 编辑
摘要: this.$set(this.formData.crmAssessmentSettingCustomerVisitTargetList[0], 'typeList', res.data) 阅读全文
posted @ 2022-05-05 14:26 bingxiaoxiao 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1.在directive文件下的directive.js中内容如下 // 判断小数点正整数 v-inputLimit='0' 0位 v-inputLimit='1' 1位 v-inputLimit='2' 2位 const inputLimit = { bind(el, binding) { var 阅读全文
posted @ 2022-04-26 09:59 bingxiaoxiao 阅读(756) 评论(0) 推荐(0) 编辑
摘要: this.dataList = [ {id:2,name:'zhang'}, {id:4,name:'chen'}, {id:6,name:'xiao'}, ] console.log('最大值',Math.max.apply(Math, dataList.map(item => { return 阅读全文
posted @ 2022-03-29 14:46 bingxiaoxiao 阅读(84) 评论(0) 推荐(0) 编辑
摘要: // show-checkbox 单选时去掉 <el-tree :props="props" :data="treeList" node-key="id" ref="tree" show-checkbox :expand-on-click-node="true" @node-click="handl 阅读全文
posted @ 2022-03-25 14:01 bingxiaoxiao 阅读(444) 评论(0) 推荐(0) 编辑