1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/babel-loader/3e5817eea90c26e1c94125ea2a2...

1 line
14 KiB
JSON

{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!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\\role-add-or-update.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\sys\\role-add-or-update.vue","mtime":1614735254000},{"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\\babel-loader\\lib\\index.js","mtime":499162500000},{"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":["import \"core-js/modules/es7.object.get-own-property-descriptors\";\nimport \"core-js/modules/es6.object.keys\";\nimport _toConsumableArray from \"C:\\\\Users\\\\27446\\\\Desktop\\\\up\\\\front\\\\dkha-web-sz-main\\\\node_modules\\\\@babel\\\\runtime-corejs2/helpers/esm/toConsumableArray\";\nimport _defineProperty from \"C:\\\\Users\\\\27446\\\\Desktop\\\\up\\\\front\\\\dkha-web-sz-main\\\\node_modules\\\\@babel\\\\runtime-corejs2/helpers/esm/defineProperty\";\nimport \"core-js/modules/web.dom.iterable\";\nimport \"core-js/modules/es6.string.iterator\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\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//\nimport debounce from 'lodash/debounce';\nexport default {\n data: function data() {\n return {\n visible: false,\n menuList: [],\n deptList: [],\n dataForm: {\n id: '',\n name: '',\n menuIdList: [],\n deptIdList: [],\n remark: ''\n }\n };\n },\n computed: {\n dataRule: function dataRule() {\n return {\n name: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }]\n };\n }\n },\n methods: {\n init: function init() {\n var _this = this;\n\n this.visible = true;\n this.$nextTick(function () {\n _this.$refs['dataForm'].resetFields();\n\n _this.$refs.menuListTree.setCheckedKeys([]);\n\n _this.$refs.deptListTree.setCheckedKeys([]);\n\n Promise.all([_this.getMenuList(), _this.getDeptList()]).then(function () {\n if (_this.dataForm.id) {\n _this.getInfo();\n }\n });\n });\n },\n // 获取菜单列表\n getMenuList: function getMenuList() {\n var _this2 = this;\n\n return this.$http.get('/sys/menu/select').then(function (_ref) {\n var res = _ref.data;\n\n if (res.code !== 0) {\n return _this2.$message.error(res.msg);\n }\n\n _this2.menuList = res.data;\n }).catch(function () {});\n },\n // 获取部门列表\n getDeptList: function getDeptList() {\n var _this3 = this;\n\n return this.$http.get('/sys/dept/list').then(function (_ref2) {\n var res = _ref2.data;\n\n if (res.code !== 0) {\n return _this3.$message.error(res.msg);\n }\n\n _this3.deptList = res.data;\n }).catch(function () {});\n },\n // 获取信息\n getInfo: function getInfo() {\n var _this4 = this;\n\n this.$http.get(\"/sys/role/\".concat(this.dataForm.id)).then(function (_ref3) {\n var res = _ref3.data;\n\n if (res.code !== 0) {\n return _this4.$message.error(res.msg);\n }\n\n _this4.dataForm = _objectSpread({}, _this4.dataForm, {}, res.data);\n\n _this4.dataForm.menuIdList.forEach(function (item) {\n return _this4.$refs.menuListTree.setChecked(item, true);\n });\n\n _this4.$refs.deptListTree.setCheckedKeys(_this4.dataForm.deptIdList);\n }).catch(function () {});\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n var _this5 = this;\n\n this.$refs['dataForm'].validate(function (valid) {\n if (!valid) {\n return false;\n }\n\n _this5.dataForm.menuIdList = [].concat(_toConsumableArray(_this5.$refs.menuListTree.getCheckedKeys()), _toConsumableArray(_this5.$refs.menuListTree.getHalfCheckedKeys()));\n _this5.dataForm.deptIdList = _this5.$refs.deptListTree.getCheckedKeys();\n\n _this5.$http[!_this5.dataForm.id ? 'post' : 'put']('/sys/role', _this5.dataForm).then(function (_ref4) {\n var res = _ref4.data;\n\n if (res.code !== 0) {\n return _this5.$message.error(res.msg);\n }\n\n _this5.$message({\n message: _this5.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this5.visible = false;\n\n _this5.$emit('refreshDataList');\n }\n });\n }).catch(function () {});\n });\n }, 1000, {\n 'leading': true,\n 'trailing': false\n })\n }\n};",{"version":3,"sources":["role-add-or-update.vue"],"names":[],"mappings":"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","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('role.name')\">\n <el-input v-model=\"dataForm.name\" :placeholder=\"$t('role.name')\"></el-input>\n </el-form-item>\n <el-form-item prop=\"remark\" :label=\"$t('role.remark')\">\n <el-input v-model=\"dataForm.remark\" :placeholder=\"$t('role.remark')\"></el-input>\n </el-form-item>\n <el-row>\n <el-col :span=\"12\">\n <el-form-item size=\"mini\" :label=\"$t('role.menuList')\">\n <el-tree\n :data=\"menuList\"\n :props=\"{ label: 'name', children: 'children' }\"\n node-key=\"id\"\n ref=\"menuListTree\"\n accordion\n show-checkbox>\n </el-tree>\n </el-form-item>\n </el-col>\n <el-col :span=\"12\">\n <el-form-item size=\"mini\" :label=\"$t('role.deptList')\">\n <el-tree\n :data=\"deptList\"\n :props=\"{ label: 'name', children: 'children' }\"\n node-key=\"id\"\n ref=\"deptListTree\"\n accordion\n show-checkbox>\n </el-tree>\n </el-form-item>\n </el-col>\n </el-row>\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 menuList: [],\n deptList: [],\n dataForm: {\n id: '',\n name: '',\n menuIdList: [],\n deptIdList: [],\n remark: ''\n }\n }\n },\n computed: {\n dataRule () {\n return {\n name: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ]\n }\n }\n },\n methods: {\n init () {\n this.visible = true\n this.$nextTick(() => {\n this.$refs['dataForm'].resetFields()\n this.$refs.menuListTree.setCheckedKeys([])\n this.$refs.deptListTree.setCheckedKeys([])\n Promise.all([\n this.getMenuList(),\n this.getDeptList()\n ]).then(() => {\n if (this.dataForm.id) {\n this.getInfo()\n }\n })\n })\n },\n // 获取菜单列表\n getMenuList () {\n return this.$http.get('/sys/menu/select').then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.menuList = res.data\n }).catch(() => {})\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/role/${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 this.dataForm.menuIdList.forEach(item => this.$refs.menuListTree.setChecked(item, true))\n this.$refs.deptListTree.setCheckedKeys(this.dataForm.deptIdList)\n }).catch(() => {})\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n this.dataForm.menuIdList = [\n ...this.$refs.menuListTree.getCheckedKeys(),\n ...this.$refs.menuListTree.getHalfCheckedKeys()\n ]\n this.dataForm.deptIdList = this.$refs.deptListTree.getCheckedKeys()\n this.$http[!this.dataForm.id ? 'post' : 'put']('/sys/role', 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"],"sourceRoot":"src/views/modules/sys"}]}