摘要: element-ui table 给表头添加icon,以及hover上去的提示文字 html部分 <el-table-column prop="" show-overflow-tooltip label="待发放奖品项数" :render-header="icons" align="center" 阅读全文
posted @ 2020-01-02 17:25 龙卷风吹毁停车场 阅读(5708) 评论(0) 推荐(1)
摘要: var now = new Date(); // 当前日期 var nowDayOfWeek = now.getDay(); // 今天本周的第几天 var nowDay = now.getDate(); // 当前日 var nowMonth = now.getMonth(); // 当前月 va 阅读全文
posted @ 2019-12-31 14:20 龙卷风吹毁停车场 阅读(2819) 评论(0) 推荐(1)
摘要: 在el-table标签上添加 row-key=“id” 然后再 type = "selection" 这个标签上添加 :reserve-selection = "true" 这样表格的记忆功能就Ok啦 <el-table row-key="id"> <el-table-column type="se 阅读全文
posted @ 2019-12-30 09:52 龙卷风吹毁停车场 阅读(710) 评论(0) 推荐(0)
摘要: <el-upload class="upload-demo" ref="vidos" :action="URL+'/api/post/file'" :data="date" :on-success="handleAvatarAUDIO" :before-upload="beforeAvatarAUD 阅读全文
posted @ 2019-12-19 11:35 龙卷风吹毁停车场 阅读(3933) 评论(0) 推荐(0)
摘要: <el-upload class="upload-demo" ref="vidos" :action="URL+'/api/post/file'" :data="date" :on-success="handleAvatarAUDIO" :before-upload="beforeAvatarAUD 阅读全文
posted @ 2019-12-19 09:54 龙卷风吹毁停车场 阅读(3114) 评论(2) 推荐(0)
摘要: <el-upload class="upload-demo" ref="vidos" :action="URL+'/api/post/file'" :data="date" :on-success="handleAvatarAUDIO" :before-upload="beforeAvatarAUD 阅读全文
posted @ 2019-12-19 09:40 龙卷风吹毁停车场 阅读(6958) 评论(0) 推荐(0)
摘要: 第一种方法:需要安装一个模块 yarn add image-conversion --save <el-upload ref="upload" :data="date" :action="URL+'/api/post/file'" :before-upload="beforeAvatarAUDIO3 阅读全文
posted @ 2019-12-12 21:32 龙卷风吹毁停车场 阅读(5084) 评论(2) 推荐(0)
摘要: 如果input输入框type为text,设置autoComplete="off" <el-input v-model="ruleForm.loginId" placeholder="请输入工号" autocomplete="off"></el-input> 如果input输入框为password,设 阅读全文
posted @ 2019-12-06 15:15 龙卷风吹毁停车场 阅读(1220) 评论(0) 推荐(0)
摘要: 在index.html中添加代码如下 <meta name="referrer" content="no-referrer" /> 如果还是存在问题,找后端,后端的锅 阅读全文
posted @ 2019-12-04 15:25 龙卷风吹毁停车场 阅读(1133) 评论(0) 推荐(0)
摘要: 直接上代码,复制开用 let regExp = /^([0-9]{3,4}\-)?[0-9]{7,8}$|^0?1[3|4|5|7|8|9][0-9]\d{8}$/; //验证的手机号码格式 //this.ruleForm.adminContactNumbers是拿到的手机号 if(!regExp. 阅读全文
posted @ 2019-11-26 15:15 龙卷风吹毁停车场 阅读(432) 评论(0) 推荐(0)