摘要: getRandomColor: function () { const rgb = [] for (let i = 0; i < 3; ++i) { let color = Math.floor(Math.random() * 256).toString(16) color = color.leng 阅读全文
posted @ 2024-12-18 11:25 好久不见-库克 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1在input 框中模糊查处输入的内容 input框失去焦点 点击查看代码 export function fuzzyQuery(list, keyWord) { console.log('要筛选的数据',list) console.log('筛选的关键词',keyWord) var arr = [ 阅读全文
posted @ 2024-12-05 11:19 好久不见-库克 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 存在的问题:借用vue3-json-excel插件导出的xls的tagID这一项数据过长出现科学技术法。 方法1. 网上给出的办法是将长数字转换为字符串。 我的数据tagID这个数据接口返回来的本就是字符串。 所以改方法不行🙅 方法2: 在vue3-json-excel插件的表头的tagID加转义 阅读全文
posted @ 2024-12-02 18:19 好久不见-库克 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 第一步对 secure-ls 进行安装:npm install secure-ls 第二步: secure-ls 的引入:import SecureLS from "secure-ls"; 点击查看代码 import { ref } from "vue"; import { defineStore 阅读全文
posted @ 2024-11-29 16:56 好久不见-库克 阅读(27) 评论(0) 推荐(0) 编辑
摘要: function sspPolymerizationEcharts() { const chartDom = document.getElementById('main'); const myChart = echarts.init(chartDom); // 从 allData 获取数据 cons 阅读全文
posted @ 2024-11-29 16:37 好久不见-库克 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 如果用户添加的时间段,在上面显示时间段有重复的时间范围,则提示如下内容: 执行函数的入参内容打印: 点击查看实现代码 export function addTimeRange(timeRanges, newTimeRange) { console.log('原有的时间范围的数组timeRanges' 阅读全文
posted @ 2024-11-19 14:24 好久不见-库克 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 将接口返回的数据整理成组件支持的数据结构 接口返回的数据格式: [{ "id": 767947, "appName": "生生世世", "appBundle": "cds", "appStore": 2, "link": "www.baidu.com", "accountId": "3,68", " 阅读全文
posted @ 2024-11-14 15:25 好久不见-库克 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 注意的内容点: 点击查看代码 <template v-for="(e, index) in appAdnInfo.ext" :key="e.name"> <el-form-item :label-width="labelWidth" :label="e.label" :prop="'ext.' + 阅读全文
posted @ 2024-11-04 13:48 好久不见-库克 阅读(123) 评论(0) 推荐(0) 编辑
摘要: echarts的线性数据都重叠在一起,查看接口的数据已更新,但是试图并未更新 解决方法1: setOption有3个属性,setOption(option,notMerge,lazyUpdate); 第二个notMerge默认为false,即默认合并数据,设置成true之后就不合并数据,从而实现刷新 阅读全文
posted @ 2024-08-27 13:14 好久不见-库克 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 1. 数组创建 Array.of(...): 创建一个新的数组实例,其中包含传入的所有元素。 点击查看代码 console.log(Array.of(1, 2, 3)); // [1, 2, 3] console.log(Array.of(7)); // [7] console.log(Array. 阅读全文
posted @ 2024-08-25 10:49 好久不见-库克 阅读(18) 评论(0) 推荐(0) 编辑