摘要: 数组和字符串 数组和字符串转换 字符串转数组 const Str = "1,2,3,3," consr Arr = Str.split(',')//","指的是字符串的分隔点 console.log(Arr);//Arr=[1,2,3,3] 数组转字符串 const Arr = [1,2,3,4] consr S 阅读全文
posted @ 2022-11-17 10:00 入世凡尘 阅读(33) 评论(0) 推荐(0)
摘要: vue 实现级联查看 页面代码如下: <div class="choice-box"> <div class="cascader"> <ul> <li v-for="(item,index) in options" :key="index" v-bind="item" @click="open1(i 阅读全文
posted @ 2022-11-17 09:38 入世凡尘 阅读(33) 评论(0) 推荐(0)
摘要: h5 端页面在弹窗时禁止底部页面滚动 方法一: @touchmove.stop.prevent 在遮罩层中添加 @touchmove.stop.prevent ,代码如下: <div class="dialog-mask" v-if="isDlgShow" @click="closeHandle(2 阅读全文
posted @ 2022-11-17 09:33 入世凡尘 阅读(1147) 评论(0) 推荐(0)
摘要: vue 使用ant design vue组件实现点击表格数据弹窗 写在columns数组的对象里面 customRender: (text, record, index) => { if (index this.list.length - 1) { //此列的最后一行的数据不做事件 return ( 阅读全文
posted @ 2022-11-17 09:24 入世凡尘 阅读(1974) 评论(0) 推荐(0)
摘要: vue实现不一样背景颜色的头部,在某个高度范围显示某个背景色:class="pageYOffset > 62 ? 'header-bc':''" // 背景透明 滚动条高度: mounted() { window.addEventListener('scroll', this.handleScrol 阅读全文
posted @ 2022-11-17 09:11 入世凡尘 阅读(58) 评论(0) 推荐(0)