上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页
摘要: devServer: { // host: '0.0.0.0', port: 8080, open: true, proxy: { // "/test": { // target: `http://a/b`, //代理地址 // changeOrigin: true, //是否修改为后端host,h 阅读全文
posted @ 2022-07-12 15:02 yoona-lin 阅读(386) 评论(0) 推荐(0) 编辑
摘要: //index.js const componentsContext = require.context('./', true, /\.vue$/) let arr = {} componentsContext.keys().forEach(file_name => { // 获取文件中的 defa 阅读全文
posted @ 2022-07-12 14:42 yoona-lin 阅读(185) 评论(0) 推荐(0) 编辑
摘要: main.js // 全局组件自动注册 import '@/components/autoRegister' autoRegister.js /** * 全局组件自动注册 * * 全局组件各个组件按文件夹区分,文件夹名称与组件名无关联,但建议与组件名保持一致 * 文件夹内至少保留一个文件名为 ind 阅读全文
posted @ 2022-07-12 14:28 yoona-lin 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1. 本地运行报错,解决方法: 2.线上打包运行不影响,不报错,流水线自动打包也不影响 阅读全文
posted @ 2022-06-27 13:48 yoona-lin 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: // 星期格式转换 0-6:周日到周六 function weekFormat(e, prefix = "周") { switch (e) { case 0: return prefix + "日" break; case 1: return prefix + "一" break; case 2: 阅读全文
posted @ 2022-06-22 16:14 yoona-lin 阅读(573) 评论(0) 推荐(0) 编辑
摘要: // 判断任务状态禁用按钮 // 子级得递归一下 let taskListDeepCopy = JSON.parse(JSON.stringify(this.taskList)); this.taskList = this.arrayRecursion(taskListDeepCopy); // 递 阅读全文
posted @ 2022-05-25 11:54 yoona-lin 阅读(1097) 评论(0) 推荐(0) 编辑
摘要: // appletsPreviewUrl: "http:....." <el-dialog title="小程序预览地址" :visible.sync="dialogVisible" width="50%"> <span>{{ appletsPreviewUrl }}</span> <div sty 阅读全文
posted @ 2022-04-21 16:14 yoona-lin 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 企业微信效果 font-weight: bold; 可行 font-weight: 600; 不可行 阅读全文
posted @ 2022-01-10 11:30 yoona-lin 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 校验空值、null、undefined、[] /** * @description: 校验空值、null、undefined、[] * @param {*} val * @return {*} */ export function verification(val) { let valString 阅读全文
posted @ 2021-12-01 15:12 yoona-lin 阅读(3618) 评论(0) 推荐(0) 编辑
摘要: import { getCurrentDomain, openUrl, verification } from "@/utils/methods"; //点击下载 download(urlId) { let url = `${getCurrentDomain()}${this.dowmloadApi 阅读全文
posted @ 2021-12-01 15:05 yoona-lin 阅读(312) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页