- el-date-picker时间插件,根据月份显示当前月的第一
- 2020年08月09日 浏览(1)
- //默认根据月份显示当前月的第一天和最后一天el-date-pickerv-model=geMonthtype=monthplaceholder=请选择账期format=yyyy-MMvalue-format=yyyy-MM@change=getMyDateTime()/el-date-pickergetMyDateTime(){constnow=newDate(this.geMonth);constnowMonth=now.getMonth();constnowYear=now.getFullYear();constmonthStartDate=newDate(nowYear,nowMonth,1);constmonthEndDate=newDate(nowYear,nowMonth+1,0);this.startTime2=monthStartDate.getFullYear()+-+(monthStartDate.getMonth()+1)+-+monthStartDate.get
- 阅读全文>>
- el-date-picker时间插件,根据月份显示当前月的第一
- 2020年08月09日 浏览(1)
- //默认根据月份显示当前月的第一天和最后一天el-date-pickerv-model=geMonthtype=monthplaceholder=请选择账期format=yyyy-MMvalue-format=yyyy-MM@change=getMyDateTime()/el-date-pickergetMyDateTime(){constnow=newDate(this.geMonth);constnowMonth=now.getMonth();constnowYear=now.getFullYear();constmonthStartDate=newDate(nowYear,nowMonth,1);constmonthEndDate=newDate(nowYear,nowMonth+1,0);this.startTime2=monthStartDate.getFullYear()+-+(monthStartDate.getMonth()+1)+-+monthStartDate.get
- 阅读全文>>
- js替换数组中所有需要替换的字段
- 2020年06月23日 浏览(1)
- var arr=[ { ps: \u672c\u673a, sid: 27 }, { ps: other_http://192.168.0.9_33333, sid: 30 }, { ps: \u5916\u7f51\u4e91\u63a7, sid: 32 }, { ps: other_http://212.64.25.103:8888_212.64.25.103, sid: 33 }, { ps: com_http://212.64.25.103:8888_212.64.25.103, sid: 49 }, { ps: other_http://192.168.1.248:8888_192.168.1.248, sid: 54 }]console.log(JSON.parse(JSON.stringify(arr).replace(/(other_http|pub_http|com_http|sec_http)[^_]*_/gi,)))
- 阅读全文>>
- 从数组中提取相同的数组和不同的数组
- 2020年06月16日 浏览(0)
- let treeOneChecked2 = []//把自己的数组放进去//找出相同数组function duplicates(treeOneChecked2) { var newArr=[]; treeOneChecked2.sort(); for(var i =0;itreeOneChecked2.length;i++){ if(treeOneChecked2[i]==treeOneChecked2[i+1](newArr.indexOf(treeOneChecked2[i])==-1) ){ newArr.push(treeOneChecked2[i]); i++; } } return newArr;}var treeOne = duplicates(treeOneChecked2).sort()console.log(treeOne,treeOne);//找出不同数组function getArrDifference(treeCheckedAll, treeOne) { return treeC
- 阅读全文>>
- jsc从多维数组中遍历出中所有的id
- 2020年06月13日 浏览(1)
- 可以配合layui树形菜单获取所有id var data = [{id:221,title:私密服务器,children:[{title:sec_外网云控,id:32},{title:sec_腾讯云服务器,id:33}]},{id:222,title:一般服务器,children:[{title:com_Win1,id:25}]},{id:223,title:公共服务器,children:[{title:pub_PACS服务-Win,id:30}]},{id:224,title:其他服务器,children:[{title:本机,id:27}]}]// 遍历所有idfunction collectId(arr, ids = []) { arr.forEach(({ id, children }) = { if (id) { ids.push(id) } if (children) { co
- 阅读全文>>
- 从数据获取相同数据生成多维数组等数组相关j
- 2020年04月25日 浏览(4)
- //从数据获取相同数据生成多维数组 let tableList = {}, tableNewsList = []; for (let i = 0; i this.list.length; i++) { let tableListArr = this.list[i]; if (!tableList[tableListArr.hospital_name]) { tableNewsList.push({ Id: tableListArr.Id, hospital_name: tableListArr.hospital_name, data: [tableListArr] }); tableList[tableListArr.hospital_name] = tableListArr; } else { for (let j = 0; j tableNewsList.length; j++) { let tableListArr2 = tableNewsList[j]; if (tableListArr2.hospital_name
- 阅读全文>>
- 从数据获取相同数据生成多维数组等数组相关j
- 2020年04月25日 浏览(0)
- //从数据获取相同数据生成多维数组 let tableList = {}, tableNewsList = []; for (let i = 0; i this.list.length; i++) { let tableListArr = this.list[i]; if (!tableList[tableListArr.hospital_name]) { tableNewsList.push({ Id: tableListArr.Id, hospital_name: tableListArr.hospital_name, data: [tableListArr] }); tableList[tableListArr.hospital_name] = tableListArr; } else { for (let j = 0; j tableNewsList.length; j++) { let tableListArr2 = tableNewsList[j]; if (tableListArr2.hospital_name
- 阅读全文>>
- setInterval数据接口动态执行和清除
- 2020年03月30日 浏览(0)
- //1分钟执行一次var list = setInterval(list();, 1 * 60 * 1000)//执行完后清除数据window.clearInterval(list)//多少时间后清除数据setTimeout(() = { window.clearInterval(list)}, 60000);
- 阅读全文>>