2022年9月28日
摘要: 在调取Echarts实例时判断是否存在,存在就销毁 if (this.launchEchart != null && this.launchEchart != "" && this.launchEchart != undefined) { this.launchEchart.dispose()//销 阅读全文
posted @ 2022-09-28 15:54 好大的虫子 阅读(1383) 评论(0) 推荐(0) 编辑
摘要: 1、改变坐标轴文字颜色: 在xAxis,yAxis中添加以下代码即可 xAxis: { type: 'category', data: this.xAxis, axisLabel: { show: true, color: '#ffffff', fontSize: 16 } }, yAxis: { 阅读全文
posted @ 2022-09-28 15:39 好大的虫子 阅读(7526) 评论(0) 推荐(0) 编辑
  2022年9月27日
摘要: getListCountryJdSc(obj).then((res) => { this.SummaryList = res.data.data this.jdDataList = JSON.parse(JSON.stringify(res.data.data)) this.scDataList = 阅读全文
posted @ 2022-09-27 19:08 好大的虫子 阅读(64) 评论(0) 推荐(0) 编辑
  2022年9月9日
摘要: 安装命令 npm install echarts --save <template> <div class="echart" id="mychart" :style="{ width: '500px', height: '500px' }"></div> </template> <script> i 阅读全文
posted @ 2022-09-09 17:05 好大的虫子 阅读(87) 评论(0) 推荐(0) 编辑
摘要: {{index+1>9?index+1:"0"+(index+1)}} 阅读全文
posted @ 2022-09-09 16:12 好大的虫子 阅读(71) 评论(0) 推荐(0) 编辑
  2022年9月1日
摘要: this.fingerprint = (equipment.model || '') + (equipment.deviceId || '') + (equipment.hostName || '') 阅读全文
posted @ 2022-09-01 09:01 好大的虫子 阅读(135) 评论(0) 推荐(0) 编辑
  2022年8月21日
摘要: 将if条件判断里面的input.value==' ',或者input.value.length<=0替换成 if(/^\s*$/.test(input.value)) 即可 阅读全文
posted @ 2022-08-21 21:37 好大的虫子 阅读(338) 评论(0) 推荐(0) 编辑
  2022年8月13日
摘要: uni.createSelectorQuery().in(this).select('.类名').boundingClientRect(data => { console.log(data.height) console.log(data.width) }).exec() 阅读全文
posted @ 2022-08-13 19:27 好大的虫子 阅读(2658) 评论(0) 推荐(0) 编辑
  2022年7月25日
摘要: 1、清理依赖包 del node_modules 2、强制清理依赖 npm cache clear --force 3、重新安装 npm i 阅读全文
posted @ 2022-07-25 09:59 好大的虫子 阅读(1947) 评论(0) 推荐(0) 编辑
摘要: 1、安装:npm install --save js-md5 2、在需要使用的页面引入 import md5 from 'js-md5' 3、在需要使用的地方加上md5即可 console.log(md5('this.title')) //md5()参数必须为字符串 阅读全文
posted @ 2022-07-25 09:44 好大的虫子 阅读(3191) 评论(0) 推荐(0) 编辑