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