Loading

上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: vue 项目的权限限制功能, 有一种实现方案是这样的 进入项目 只设置没有权限要求的路由 向后台提供当前用户的权限 后台根据用户权限, 返回该用户可以用的路由信息 将路由信息翻译成 “符合 routes 选项要求的数组” 用 router.addRoutes(routes) 方法把 “符合 rout 阅读全文
posted @ 2022-11-01 17:30 资深if-else侠 阅读(460) 评论(0) 推荐(0) 编辑
摘要: // https://github.com/michael-ciniawsky/postcss-load-config module.exports = { 'plugins': { // to edit target browsers: use "browserslist" field in pa 阅读全文
posted @ 2022-11-01 08:56 资深if-else侠 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 应用场景 页面在接口请求到html模板后动态的向模板中挂载dom (例如 获得准考证的html模版后需要添加考试科目表格,#subject-table为模板预留占位标签) 注:全局组件可在页面内直接使用组件名标签使用 通过Vue.component注册全局组件 通过Vue.extend创建构造器 创 阅读全文
posted @ 2022-10-26 10:26 资深if-else侠 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1. 声明和初始化数组 const array = Array(5).fill(''); // 输出 (5) ["", "", "", "", ""] const matrix = Array(5).fill(0).map(()=>Array(5).fill(0)); // 输出 (5) [Arra 阅读全文
posted @ 2022-10-20 10:20 资深if-else侠 阅读(41) 评论(1) 推荐(0) 编辑
摘要: print () { this.printLoading = true const dom = document.querySelector('#printBox') // 添加延时器以解决loading 效果失效的问题 setTimeout(() => { this.$print(dom) }, 阅读全文
posted @ 2022-10-19 09:35 资深if-else侠 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 注意innerHTM必须换行书写 export function setStyle (direction) { const styleNode = document.createElement('style') styleNode.setAttribute('id', 'print-style') 阅读全文
posted @ 2022-10-17 10:23 资深if-else侠 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 使用chainWebpack配置TerserWebpackPlugin插件 安装插件版本要和webpack的版本匹配 npm install terser-webpack-plugin --save-dev chainWebpack(config) { config .when(process.en 阅读全文
posted @ 2022-10-12 17:09 资深if-else侠 阅读(821) 评论(0) 推荐(0) 编辑
摘要: GET请求直接传数组给后端,格式会错误, 转换传参格式,JS中将数组变成字符串:数组[arr] + ’ ’ axios.get('/gateway/xxx', { params: { name: 'lvxiaobu', list: [1,2,3] + '', } }) 阅读全文
posted @ 2022-09-26 15:25 资深if-else侠 阅读(198) 评论(0) 推荐(0) 编辑
摘要: dialog <template> <div> <el-dialog title="切换考试" top="9vh" :modal="false" width="600px" :visible.sync="dialogVisible" @close="close" :append-to-body="t 阅读全文
posted @ 2022-09-26 14:33 资深if-else侠 阅读(414) 评论(0) 推荐(0) 编辑
摘要: await api(html).then(res => { const blob = new Blob([res], { type: 'application/pdf;charset-UTF-8' }) const url = URL.createObjectURL(blob) window.ope 阅读全文
posted @ 2022-09-22 14:16 资深if-else侠 阅读(1375) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页