上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: 报表导出 @click="exportAllItem" identity1: false, //导出 exportAllItem() { if (this.identity1 == true) { this.$message.warning('正在下载,请稍后...'); return false; 阅读全文
posted @ 2022-10-12 09:40 Ao_min 阅读(24) 评论(0) 推荐(0) 编辑
摘要: <div class="navbar"> <el-tabs v-model="activeNames" @tab-click="handleClick"> <el-tab-pane v-for="item in navList" :key="item.name" :name="item.code" 阅读全文
posted @ 2022-10-11 09:59 Ao_min 阅读(99) 评论(0) 推荐(0) 编辑
摘要: /* 去掉表头多选框 */ ::v-deep .el-table__header-wrapper .el-checkbox { display: none; } 阅读全文
posted @ 2022-09-29 08:52 Ao_min 阅读(84) 评论(0) 推荐(0) 编辑
摘要: <el-dialog class="pdfpreview" :visible.sync="pdfPreviewDialog" title="操作手册在线预览" width="70%" v-if="pdfPreviewDialog" :close-on-click-modal="false" > <p 阅读全文
posted @ 2022-09-21 14:31 Ao_min 阅读(671) 评论(0) 推荐(0) 编辑
摘要: scss中使用/deep/深度选择器报错 需求 : 在带有scoped属性的style中书写样式时,无法作用影响到子组件中的样式,此时我们会使用到deep深度选择器,来解决此问题,我们在使用less预处理器,能正常使用,但是在scss预处理器中会报错。 错误代码: <style lang="scss 阅读全文
posted @ 2022-09-20 08:25 Ao_min 阅读(862) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://www.cnblogs.com/qfcddl/p/13389566.html <el-input placeholder v-model="scope.row[index]" oninput="value=value.replace(/[^\-?\d.]/g,'') .rep 阅读全文
posted @ 2022-09-07 11:24 Ao_min 阅读(2340) 评论(0) 推荐(0) 编辑
摘要: JS前端输入框正则限制正负数和小数点后两位1.只能输入正负数,包括小数点value = value.replace(/[^\d\.-]/g,’’) 2.只能输入正数,不包括小数点value = value.replace(/[^\d]/g,’’) 3.只能输入正负数,限制小数点后两位value = 阅读全文
posted @ 2022-09-07 11:07 Ao_min 阅读(3588) 评论(0) 推荐(0) 编辑
摘要: 转自于:https://zhuanlan.zhihu.com/p/526439319 背景 为更好地维护项目以及使用v5新特性,把已有项目的eharts3.0/4.0升级v5【升级文档】 前期准备 推荐一个npm版本检测工具npm-check,也可用于检测不用npm依赖,减少node_modules 阅读全文
posted @ 2022-09-05 09:18 Ao_min 阅读(2214) 评论(0) 推荐(0) 编辑
摘要: let nape = []; for (let i = 0; i < list.length; i++) { let res = JSON.parse( JSON.stringify(list[i]) .replace(/id/g, 'itemId') .replace(/desc/g, 'item 阅读全文
posted @ 2022-08-18 09:04 Ao_min 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: 定义一个属性方法:<el-card shadow="never" body-style="padding: 12px" :class="sss()"></el-card> methods: //class属性方法 sss() { //根据条件返回样式 if (this.position == 3) 阅读全文
posted @ 2022-08-11 08:59 Ao_min 阅读(341) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页