摘要:
vue.config.js 中配置 configureWebpack: (config) => { if (process.env.NODE_ENV "production") { config.optimization.minimizer[0].options.terserOptions.comp 阅读全文
posted @ 2023-01-29 17:40
技术杨
阅读(107)
评论(0)
推荐(0)
摘要:
// bad mounted() { // 创建一个定时器 this.timer = setInterval(() => { // ...... }, 500); }, // 销毁这个定时器。 beforeDestroy() { if (this.timer) { clearInterval(thi 阅读全文
posted @ 2023-01-29 17:27
技术杨
阅读(21)
评论(0)
推荐(0)
摘要:
const { href } = this.$router.resolve({ path: "/index", query: { key: key } }); // iframe 控制父页面跳转 window.parent.window.location.href = href 阅读全文
posted @ 2023-01-29 17:25
技术杨
阅读(38)
评论(0)
推荐(0)
摘要:
export const getSearchParams = () => { const searchPar = new URLSearchParams(window.location.search) const paramsObj = {} for (const [key, value] of s 阅读全文
posted @ 2023-01-29 17:17
技术杨
阅读(50)
评论(0)
推荐(0)
摘要:
参数: str 待转换的字符串 type 1-全大写 2-全小写 3-首字母大写 export const turnCase = (str, type) => { switch (type) { case 1: return str.toUpperCase() case 2: return str. 阅读全文
posted @ 2023-01-29 17:16
技术杨
阅读(48)
评论(0)
推荐(0)
摘要:
export const typeOf = function(obj) { return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase() } 示例: typeOf('树哥') // string typeOf([]) // 阅读全文
posted @ 2023-01-29 17:15
技术杨
阅读(19)
评论(0)
推荐(0)
摘要:
export const debounce = (() => { let timer = null return (callback, wait = 800) => { timer&&clearTimeout(timer) timer = setTimeout(callback, wait) } } 阅读全文
posted @ 2023-01-29 17:14
技术杨
阅读(55)
评论(0)
推荐(0)
摘要:
export const foreachTree = (data, callback, childrenName = 'children') => { for (let i = 0; i < data.length; i++) { callback(data[i]) if (data[i][chil 阅读全文
posted @ 2023-01-29 17:11
技术杨
阅读(19)
评论(0)
推荐(0)
摘要:
参数: list 原数组 keyWord 查询的关键词 attribute 数组需要检索属性 export const fuzzyQuery = (list, keyWord, attribute = 'name') => { const reg = new RegExp(keyWord) cons 阅读全文
posted @ 2023-01-29 17:10
技术杨
阅读(134)
评论(0)
推荐(0)
摘要:
参数: api 接口 params 请求参数 fileName 文件名 const downloadFile = (api, params, fileName, type = 'get') => { axios({ method: type, url: api, responseType: 'blo 阅读全文
posted @ 2023-01-29 17:06
技术杨
阅读(203)
评论(0)
推荐(0)
浙公网安备 33010602011771号