摘要: html <el-select v-model="dform.e_id" filterable remote reserve-keyword placeholder="请输入关键词" :remote-method="remoteMethod" :loading="loading"> <el-opti 阅读全文
posted @ 2021-10-29 15:20 李笑吅 阅读(100) 评论(0) 推荐(0) 编辑
摘要: html部分: <el-form-item label="图片" prop="icon"> <el-upload v-model="rotationfrom.img" action="" multiple show-file-list :http-request="httpRequest" list 阅读全文
posted @ 2021-10-28 16:51 李笑吅 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1.安装 npm install echarts --save 2.引入 ECharts import * as echarts from 'echarts'; 3.在页面中设置ECharts <template> <!--应收款分析--> <div className="com-threemois 阅读全文
posted @ 2021-10-08 10:38 李笑吅 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 1.创建文件 export const echartsSize = function (size, defalteWidth = 1920) { const docEl = document.documentElement const clientWidth = window.innerWidth 阅读全文
posted @ 2021-10-08 09:54 李笑吅 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1、字符串转换为数组 var string = '123,456,789'; var stringResult = string.split(','); console.log(stringResult) //输出["123", "456", "789"] var string2 = 'abcdef 阅读全文
posted @ 2021-08-12 17:09 李笑吅 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1.获取后台数据存本地 1)获取时间戳进行比对,如果差的话就重新取值 在存入时要注意格式 // 存 localStorage.setItem('jdclassdata', JSON.stringify(arr)) // 取 var arr = JSON.parse(localStorage.getI 阅读全文
posted @ 2021-08-10 14:41 李笑吅 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1.克隆:https://github.com/PanJiaChen/vue-admin-template.git 2.修改中文:main.js 3.在不使用模拟数据时: 设置反向代理: 1.在env.development,设置/api 2. vue.config.js 设置测试环境反向代理 其中 阅读全文
posted @ 2021-08-04 11:29 李笑吅 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 以管理员身份运行 PowerShell或命令提示符,并执行命令set-ExecutionPolicy RemoteSigned将PowerShell的执行策略更改为RemoteSigned 1.win+X 2.输入set-ExecutionPolicy RemoteSigned 然后选Y 好了 阅读全文
posted @ 2021-08-02 11:14 李笑吅 阅读(575) 评论(0) 推荐(0) 编辑
摘要: vue路由传对象格式的数据 发送页面: let data = JSON.stringify(this.listDate); //传值转换this.$router.push({ path:'/assets', query:{ data }})接收页面: console.log(JSON.parse(t 阅读全文
posted @ 2021-07-29 11:46 李笑吅 阅读(136) 评论(0) 推荐(0) 编辑
摘要: .detailedtext::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); background-color: #F5F5F5; border-radius: 10px;}.detailedte 阅读全文
posted @ 2021-07-29 10:59 李笑吅 阅读(30) 评论(0) 推荐(0) 编辑