07 2023 档案

摘要:编辑时 表单赋值使用 this.$nextTick 即可 this.$nextTick(() => { this.formData = { id: row.id, taskCode: row.taskCode, fullName: row.fullName, priority: row.priori 阅读全文
posted @ 2023-07-12 15:23 卢老师不想编程 阅读(10) 评论(0) 推荐(0) 编辑
摘要:根目录创建 .prettierrc.json { "singleQuote": true, "semi": false, "prettier.semi": true, "trailingComma": "none" } 阅读全文
posted @ 2023-07-11 09:37 卢老师不想编程 阅读(67) 评论(0) 推荐(0) 编辑
摘要:1.import _ from 'lodash' 2.function clearEmptyParam(config) { ['data', 'params'].forEach(item => { if (config[item]) { const keys = Object.keys(config 阅读全文
posted @ 2023-07-03 14:53 卢老师不想编程 阅读(61) 评论(0) 推荐(0) 编辑
摘要:// 上传图片校验 fileChange(file) { const isJPG = file.raw.type 'image/jpeg' const isPNG = file.raw.type 'image/png' const isLt2M = file.raw.size / 1024 / 10 阅读全文
posted @ 2023-07-03 11:20 卢老师不想编程 阅读(246) 评论(0) 推荐(0) 编辑