摘要: 1、MDNhttps://developer.mozilla.org/zh-CN/2、CodePenhttps://codepen.io/3、 GitHub https://github.com4、Stack Overflowhttps://stackoverflow.com/ 2023-03-30 阅读全文
posted @ 2023-04-11 06:39 李笑吅 阅读(27) 评论(0) 推荐(0) 编辑
摘要: // 重置alert window.alert = function(name){ const iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.setAttribute("src", 'da 阅读全文
posted @ 2023-02-03 14:57 李笑吅 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.npm create vite@latest 2.安装路由 npm install vue-router@4 3.安装axios npm i axios 4安装pinia npm install pinia 5安装sacc npm install sass-loader npm install 阅读全文
posted @ 2023-01-31 10:50 李笑吅 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 将 "isolatedModules": false, 设为false 阅读全文
posted @ 2023-01-16 10:03 李笑吅 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 第一种:JSON.stringify()let obj = { username:admin, password:"123456"}//先转为json格式字符,再转回来let newObj = JSON.parse(JSON.stringify(obj));obj.password = MD5(ob 阅读全文
posted @ 2022-10-28 10:16 李笑吅 阅读(2499) 评论(0) 推荐(0) 编辑
摘要: // 排序方法compare (namse) { return (obj1, obj2) => { const val1 = obj1[namse] * 1 const val2 = obj2[namse] * 1 if (val1 < val2) { return 1 } else if (val 阅读全文
posted @ 2022-07-14 09:21 李笑吅 阅读(23) 评论(0) 推荐(0) 编辑
摘要: util文件: export const echartsSize = function (size, defalteWidth = 1920) { const docEl = document.documentElement const clientWidth = window.innerWidth 阅读全文
posted @ 2022-07-12 09:18 李笑吅 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1.安装项目 npm create vite@latest 2.起名 3.选择vue 选择ts版 安装router+axios+pinia pinia:https://pinia.web3doc.top/core-concepts/ router:https://router.vuejs.org/z 阅读全文
posted @ 2022-06-09 11:20 李笑吅 阅读(91) 评论(0) 推荐(0) 编辑
摘要: <el-autocomplete v-model="dform.auto_idname" @select="openxuanfun" :debounce="1000" :fetch-suggestions="querySearch" placeholder="车辆" value-key="auto_ 阅读全文
posted @ 2022-06-08 14:37 李笑吅 阅读(133) 评论(0) 推荐(0) 编辑
摘要: <!-- 文章列表 --> <view class="activity_list" wx:for="{{3}}"> <view class="list_item"> <view class="item_wenzi"> <view class="wenzi_bit">美家分类进行的活动活动标题...< 阅读全文
posted @ 2022-03-22 15:37 李笑吅 阅读(18) 评论(0) 推荐(0) 编辑