摘要: <view :style="{height: scrollHeight}"> <view class="swiper-item"> <scroll-view scroll-y style="height: 100%; width: 100%;" lower-threshold="50"> <view 阅读全文
posted @ 2021-07-28 15:53 PromiseOne 阅读(1197) 评论(0) 推荐(0) 编辑
摘要: 01-随机获取布尔值 Math.random创建一个介于0和1之间的随机数,然后我们检查它是否大于或小于0.5。这意味着有50/50的机会会得到对或错。 const getRandomBoolean = () => Math.random() >= 0.5; 02-检查日期是否为周末 通过此功能,你 阅读全文
posted @ 2021-06-29 16:58 PromiseOne 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 校验是否正确的网址:/^((http|https):\/\/)([\w-]+\.)+[\w-]+([\w-./?%&=]*)?$/ 数字:/^[0-9]*$/ 1~9的数字:/^[1-9]\d*$/ 不能输入特殊字符:/[^u4e00-u9fa5\w]/ 不能输入表情:/^[A-Za-z0-9\u4 阅读全文
posted @ 2021-06-28 14:08 PromiseOne 阅读(699) 评论(0) 推荐(0) 编辑
摘要: 1 <el-upload 2 class="avatar-uploader" 3 :action="action" 4 :show-file-list="false" 5 :before-upload="beforeAvatarUpload"> 6 <i class="el-icon-plus av 阅读全文
posted @ 2021-06-28 11:40 PromiseOne 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 1 <el-date-picker 2 v-model="nowTime" 3 type="datetime" 4 format="yyyy-MM-dd HH:mm:ss" 5 value-format="yyyy-MM-dd HH:mm:ss" 6 placeholder="选择日期时间" 7 : 阅读全文
posted @ 2021-06-28 11:00 PromiseOne 阅读(2021) 评论(0) 推荐(0) 编辑
摘要: 父组件: 子组件 孙子组件 页面展示 解决方案 阅读全文
posted @ 2021-06-21 14:53 PromiseOne 阅读(1485) 评论(0) 推荐(0) 编辑
摘要: 页面渲染 后端返回数据 反显的时候需要用this.$set,不然会导致v-model绑定的变量无法修改 阅读全文
posted @ 2021-06-04 16:47 PromiseOne 阅读(637) 评论(0) 推荐(0) 编辑
摘要: function arrayhandle(arr){ arr.map(item => { // 对数据进行处理 item.label = item.title; if(item.children && item.children.length) { arrayhandle(item.children 阅读全文
posted @ 2021-05-24 17:26 PromiseOne 阅读(1900) 评论(0) 推荐(0) 编辑
摘要: let fieldsToValidate = ['indicativePrice', 'name']; Promise.all(fieldsToValidate.map(item => { return new Promise((resolve, reject) => { this.$refs['f 阅读全文
posted @ 2021-05-21 13:42 PromiseOne 阅读(2539) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖 //使用axios发送 ajax npm install axios --save //使用mockjs产生随机数据 npm install mockjs --save-dev //使用json5解决json文件,无法添加注释问题 npm install json5 --save-de 阅读全文
posted @ 2021-05-16 19:31 PromiseOne 阅读(310) 评论(0) 推荐(0) 编辑