1 2 3 4 5 ··· 24 下一页
摘要: https://blog.csdn.net/qq_70071513/article/details/133171580 //暴露自定义websocket对象 export const socket = { //后台请求路径 url: "", //websocket对象 websocket: null 阅读全文
posted @ 2024-08-15 18:12 南瓜壳 阅读(2) 评论(0) 推荐(0) 编辑
摘要: xAxis: { data: nameArr, axisLine: { show: true, //隐藏X轴轴线 lineStyle: { color: "#01FCE3", }, }, axisTick: { show: false, //隐藏X轴刻度 }, axisLabel: { show: 阅读全文
posted @ 2024-08-15 15:09 南瓜壳 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://gitee.com/solovejack/big-screen-vue-datav 阅读全文
posted @ 2024-06-21 14:14 南瓜壳 阅读(3) 评论(0) 推荐(0) 编辑
摘要: /^(([1-9]?\d{0,1}(\.\d{1,2})?)|100|100\.(0){1,2})$/ 0-100内的数字(最多2位小数) 阅读全文
posted @ 2023-12-20 14:19 南瓜壳 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一:首先配置‘环境变量’ 打开电脑‘设置’ >关于 >高级系统设置 >环境变量 >用户和系统变量都设置一下,点击Path >新建 >将git-bash的应用程序地址粘贴到里面 >一直点击确定,直到退出 (这里的应用程序地址看自己保存的bash.exe的位置)我的是:C:\Program Files\ 阅读全文
posted @ 2023-08-16 20:16 南瓜壳 阅读(775) 评论(0) 推荐(0) 编辑
摘要: function get1DArray(arr1:any){ var arr2 = arr1.reduce(function (a:any, b:any) { return a.concat(b) }); return arr2; } get1DArray(dataForm.peiyangminmi 阅读全文
posted @ 2023-03-22 15:17 南瓜壳 阅读(17) 评论(0) 推荐(0) 编辑
摘要: function changeArrNum(arr:any,num:number){ let newCardList:any = []; for (var i = 0; i < arr.length; i += num) { newCardList.push(arr.slice(i, i + num 阅读全文
posted @ 2023-03-22 15:15 南瓜壳 阅读(106) 评论(0) 推荐(0) 编辑
摘要: <template> <div ref="echart" :style="{ width:width, height:height }" class="echartsbox"></div> </template> <script> import * as echarts from 'echarts' 阅读全文
posted @ 2023-02-22 14:09 南瓜壳 阅读(21) 评论(0) 推荐(0) 编辑
摘要: function getCaption(url,parameter) { var index = url.lastIndexOf(parameter); url = url.substring(index+1,url.length); return url; } var url="http://ww 阅读全文
posted @ 2023-02-02 10:33 南瓜壳 阅读(20) 评论(0) 推荐(0) 编辑
摘要: //num1 num2传入两个值 symbol +-*/符号 function amend(num1,num2,symbol){ var str1=num1.toString(),str2=num2.toString(),result,str1Length,str2Length //解决整数没有小数 阅读全文
posted @ 2022-12-14 09:14 南瓜壳 阅读(66) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 24 下一页