10 2020 档案
摘要:参考链接:https://www.cnblogs.com/mthgh/p/11156938.html 先检查vueb -v 和 npm -v (下面vuecli安装成功后,如果vue -v报错的话需要以管理员身份打开PowerShell 具体查看此链接:https://blog.csdn.net/w
阅读全文
摘要:Bolb可以用来改变一个文件的类型 // 下载导出内容 export function downloadFile(data, config = {}) { const aLink = document.createElement("a"); let blob = new Blob([data], {
阅读全文
摘要:// 数字千分位export function toThousands(num) { var num = (num || 0).toString(), result = ''; // 将传入数据转换为字符串 while (num.length > 3) { // 只要字符串长度大于三就执行 resu
阅读全文
摘要:恢复内容开始 下载 恢复内容结束 上传:
阅读全文
摘要:let detectionCycleList = [“2020-01-01”,“2020-01-02”,“2020-01-03”]; //日期数组 let newArr = detectionCycleList.map(ele =>{ return new Date(ele).getTime() }
阅读全文
摘要:1.大写字母、数字、符号: /^[A-Z0-9`~!@#$%^&*()_\-+=<>?:"{}|,.\/;'\\[\]·~!@#¥%……&*()——\-+={}|《》?:“”【】、;‘',。、]+$/ 2.中文字符、大写英文字符、数字、符号: /^[\u4e00-\u9fa5_A-Z0-9`~!@#
阅读全文