摘要: html代码: js代码: 阅读全文
posted @ 2019-09-16 10:30 wjs0509 阅读(1302) 评论(0) 推荐(0) 编辑
摘要: 1、安装svg-sprite-loader和svgo插件 2、在components文件夹下面增加svgIcon.vue组件 3、在src文件夹下新增icons文件夹,下面再增加index.js文件和svg文件夹 4、src/icons/index.js中增加如下代码 5、在main.js里面进行引 阅读全文
posted @ 2019-09-06 17:47 wjs0509 阅读(2713) 评论(0) 推荐(1) 编辑
摘要: var userId=$("#userId").val(); var lockReconnect = false; //避免ws重复连接 var ws = null; // 判断当前浏览器是否支持WebSocket var wsUrl = serverConfig.cyberhouse_ws+userId; createWebSocket(wsUrl); //连接ws ... 阅读全文
posted @ 2019-08-07 10:55 wjs0509 阅读(1214) 评论(0) 推荐(0) 编辑
摘要: function addMonth(date, offset) { if (date instanceof Date && !isNaN(offset)) { let givenMonth = date.getMonth(); let newMonth = givenMonth + offset; date.setMonth(newMont... 阅读全文
posted @ 2019-07-29 17:56 wjs0509 阅读(1877) 评论(0) 推荐(0) 编辑
摘要: 模拟后台返回的数据为: 对数据处理的方法为:(对personName来进行分类) 对数据处理后的结构为: 阅读全文
posted @ 2019-07-12 17:40 wjs0509 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: 分两种情况:不使用vue/cli脚手架搭建和使用vue/cli脚手架搭建的项目 一、不使用vue/cli脚手架搭建 1、该组件基于vue,element,accountingjs 2、引入相应的js文件 <script src="https://cdn.jsdelivr.net/npm/vue@2. 阅读全文
posted @ 2019-07-08 15:15 wjs0509 阅读(15245) 评论(0) 推荐(0) 编辑
摘要: // num传入的数字,n需要的字符长度 function PrefixInteger(num, n) { return (Array(n).join(0) + num).slice(-n); } PrefixInteger(722, 5) //"00722" 第二种方式:JS padStart() 阅读全文
posted @ 2019-06-25 15:37 wjs0509 阅读(12061) 评论(0) 推荐(0) 编辑
摘要: // 10进制转为16进制 var a=1234567890; console.log(a.toString(16)) //499602d2 // 16进制转为10进制 var num=parseInt(96,16) console.log(num) //150 阅读全文
posted @ 2019-06-25 15:36 wjs0509 阅读(10814) 评论(0) 推荐(0) 编辑
摘要: /** * str:待处理的字符串 * s:开始位置下标 * e:结束位置下标 */ /** * str:待处理的字符串 * s:开始位置下标 * e:结束位置下标 */ 阅读全文
posted @ 2019-06-25 15:28 wjs0509 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 1.去重的方法为: 2.测试方法: 阅读全文
posted @ 2019-06-25 15:21 wjs0509 阅读(11567) 评论(0) 推荐(0) 编辑