1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/vue-loader/fa00f4d1c5460867eea4fc3436e...

1 line
7.0 KiB
JSON

{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\sys\\dept-add-or-update.vue?vue&type=style&index=0&lang=scss&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\sys\\dept-add-or-update.vue","mtime":1614735254000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\css-loader\\index.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\loaders\\stylePostLoader.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\postcss-loader\\src\\index.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\sass-loader\\lib\\loader.js","mtime":1533139052000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n.mod-sys__dept {\n .dept-list {\n .el-input__inner,\n .el-input__suffix {\n cursor: pointer;\n }\n }\n}\n",{"version":3,"sources":["dept-add-or-update.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"dept-add-or-update.vue","sourceRoot":"src/views/modules/sys","sourcesContent":["<template>\n <el-dialog :visible.sync=\"visible\" :title=\"!dataForm.id ? $t('add') : $t('update')\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\n <el-form :model=\"dataForm\" :rules=\"dataRule\" ref=\"dataForm\" @keyup.enter.native=\"dataFormSubmitHandle()\" label-width=\"120px\">\n <el-form-item prop=\"name\" :label=\"$t('dept.name')\">\n <el-input v-model=\"dataForm.name\" :placeholder=\"$t('dept.name')\"></el-input>\n </el-form-item>\n <el-form-item prop=\"parentName\" :label=\"$t('dept.parentName')\" class=\"dept-list\">\n <el-popover v-model=\"deptListVisible\" ref=\"deptListPopover\" placement=\"bottom-start\" trigger=\"click\">\n <el-tree\n :data=\"deptList\"\n :props=\"{ label: 'name', children: 'children' }\"\n node-key=\"id\"\n ref=\"deptListTree\"\n :highlight-current=\"true\"\n :expand-on-click-node=\"false\"\n accordion\n @current-change=\"deptListTreeCurrentChangeHandle\">\n </el-tree>\n </el-popover>\n <el-input v-model=\"dataForm.parentName\" v-popover:deptListPopover :readonly=\"true\" :placeholder=\"$t('dept.parentName')\">\n <i\n v-if=\"$store.state.user.superAdmin === 1 && dataForm.pid !== '0'\"\n slot=\"suffix\"\n @click.stop=\"deptListTreeSetDefaultHandle()\"\n class=\"el-icon-circle-close el-input__icon\">\n </i>\n </el-input>\n </el-form-item>\n <el-form-item prop=\"sort\" :label=\"$t('dept.sort')\">\n <el-input-number v-model=\"dataForm.sort\" controls-position=\"right\" :min=\"0\" :label=\"$t('dept.sort')\"></el-input-number>\n </el-form-item>\n </el-form>\n <template slot=\"footer\">\n <el-button @click=\"visible = false\">{{ $t('cancel') }}</el-button>\n <el-button type=\"primary\" @click=\"dataFormSubmitHandle()\">{{ $t('confirm') }}</el-button>\n </template>\n </el-dialog>\n</template>\n\n<script>\nimport debounce from 'lodash/debounce'\nexport default {\n data () {\n return {\n visible: false,\n deptList: [],\n deptListVisible: false,\n dataForm: {\n id: '',\n name: '',\n pid: '',\n parentName: '',\n sort: 0\n }\n }\n },\n computed: {\n dataRule () {\n return {\n name: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ],\n parentName: [\n { required: true, message: this.$t('validate.required'), trigger: 'change' }\n ]\n }\n }\n },\n methods: {\n init () {\n this.visible = true\n this.$nextTick(() => {\n this.$refs['dataForm'].resetFields()\n this.getDeptList().then(() => {\n if (this.dataForm.id) {\n this.getInfo()\n } else if (this.$store.state.user.superAdmin === 1) {\n this.deptListTreeSetDefaultHandle()\n }\n })\n })\n },\n // 获取部门列表\n getDeptList () {\n return this.$http.get('/sys/dept/list').then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.deptList = res.data\n }).catch(() => {})\n },\n // 获取信息\n getInfo () {\n this.$http.get(`/sys/dept/${this.dataForm.id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.dataForm = {\n ...this.dataForm,\n ...res.data\n }\n if (this.dataForm.pid === '0') {\n return this.deptListTreeSetDefaultHandle()\n }\n this.$refs.deptListTree.setCurrentKey(this.dataForm.pid)\n }).catch(() => {})\n },\n // 上级部门树, 设置默认值\n deptListTreeSetDefaultHandle () {\n this.dataForm.pid = '0'\n this.dataForm.parentName = this.$t('dept.parentNameDefault')\n },\n // 上级部门树, 选中\n deptListTreeCurrentChangeHandle (data) {\n this.dataForm.pid = data.id\n this.dataForm.parentName = data.name\n this.deptListVisible = false\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n this.$http[!this.dataForm.id ? 'post' : 'put']('/sys/dept', this.dataForm).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.visible = false\n this.$emit('refreshDataList')\n }\n })\n }).catch(() => {})\n })\n }, 1000, { 'leading': true, 'trailing': false })\n }\n}\n</script>\n\n<style lang=\"scss\">\n.mod-sys__dept {\n .dept-list {\n .el-input__inner,\n .el-input__suffix {\n cursor: pointer;\n }\n }\n}\n</style>\n"]}]}