| 1 |
- {"remainingRequest":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\components\\ren-dept-tree\\src\\ren-dept-tree.vue?vue&type=script&lang=js","dependencies":[{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\components\\ren-dept-tree\\src\\ren-dept-tree.vue","mtime":1581948664000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\babel.config.js","mtime":1581948662000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js","mtime":456789000000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/es6.function.name\";\nimport \"core-js/modules/es6.number.constructor\";\nexport default {\n name: 'RenDeptTree',\n data: function data() {\n return {\n filterText: '',\n visibleDept: false,\n deptList: [],\n showDeptName: '',\n expandedKeys: null,\n defaultProps: {\n children: 'children',\n label: 'label'\n }\n };\n },\n props: {\n value: [Number, String],\n deptName: String,\n query: Boolean,\n placeholder: String\n },\n watch: {\n filterText: function filterText(val) {\n this.$refs.tree.filter(val);\n },\n deptName: function deptName(val) {\n this.showDeptName = val;\n }\n },\n methods: {\n deptDialog: function deptDialog() {\n this.expandedKeys = null;\n if (this.$refs.tree) {\n this.$refs.tree.setCurrentKey(null);\n }\n this.visibleDept = true;\n this.getDeptList(this.value);\n },\n filterNode: function filterNode(value, data) {\n if (!value) return true;\n return data.name.indexOf(value) !== -1;\n },\n getDeptList: function getDeptList(id) {\n var _this = this;\n return this.$http.get('/sys/dept/list').then(function (_ref) {\n var res = _ref.data;\n if (res.code !== 0) {\n return _this.$message.error(res.msg);\n }\n _this.deptList = res.data;\n _this.$nextTick(function () {\n _this.$refs.tree.setCurrentKey(id);\n _this.expandedKeys = [id];\n });\n }).catch(function () {});\n },\n cancelHandle: function cancelHandle() {\n this.visibleDept = false;\n this.deptList = [];\n this.filterText = '';\n },\n clearHandle: function clearHandle() {\n this.$emit('input', '');\n this.$emit('update:deptName', '');\n this.showDeptName = '';\n this.visibleDept = false;\n this.deptList = [];\n this.filterText = '';\n },\n commitHandle: function commitHandle() {\n var node = this.$refs.tree.getCurrentNode();\n if (!node) {\n this.$message.error(this.$t('dept.chooseerror'));\n return;\n }\n this.$emit('input', node.id);\n this.$emit('update:deptName', node.name);\n this.showDeptName = node.name;\n this.visibleDept = false;\n this.deptList = [];\n this.filterText = '';\n }\n }\n};",{"version":3,"names":["name","data","filterText","visibleDept","deptList","showDeptName","expandedKeys","defaultProps","children","label","props","value","Number","String","deptName","query","Boolean","placeholder","watch","val","$refs","tree","filter","methods","deptDialog","setCurrentKey","getDeptList","filterNode","indexOf","id","_this","$http","get","then","_ref","res","code","$message","error","msg","$nextTick","catch","cancelHandle","clearHandle","$emit","commitHandle","node","getCurrentNode","$t"],"sources":["src/components/ren-dept-tree/src/ren-dept-tree.vue"],"sourcesContent":["<template>\r\n <div>\r\n <el-input v-model=\"showDeptName\" :placeholder=\"placeholder\" @focus=\"deptDialog\">\r\n <el-button slot=\"append\" icon=\"el-icon-search\" @click=\"deptDialog\"></el-button>\r\n </el-input>\r\n <el-input :value=\"value\" style=\"display: none\"></el-input>\r\n <el-dialog :visible.sync=\"visibleDept\" width=\"30%\" :modal=\"false\" :title=\"placeholder\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\r\n <el-form size=\"mini\" :inline=\"true\">\r\n <el-form-item :label=\"$t('keyword')\">\r\n <el-input v-model=\"filterText\"></el-input>\r\n </el-form-item>\r\n <el-form-item>\r\n <el-button type=\"default\">{{ $t('query') }}</el-button>\r\n </el-form-item>\r\n </el-form>\r\n <el-tree\r\n class=\"filter-tree\"\r\n :data=\"deptList\"\r\n :default-expanded-keys=\"expandedKeys\"\r\n :props=\"{ label: 'name', children: 'children' }\"\r\n :expand-on-click-node=\"false\"\r\n :filter-node-method=\"filterNode\"\r\n :highlight-current=\"true\"\r\n node-key=\"id\"\r\n ref=\"tree\">\r\n </el-tree>\r\n <template slot=\"footer\">\r\n <el-button type=\"default\" @click=\"cancelHandle()\" size=\"mini\">{{ $t('cancel') }}</el-button>\r\n <el-button v-if=\"query\" type=\"info\" @click=\"clearHandle()\" size=\"mini\">{{ $t('clear') }}</el-button>\r\n <el-button type=\"primary\" @click=\"commitHandle()\" size=\"mini\">{{ $t('confirm') }}</el-button>\r\n </template>\r\n </el-dialog>\r\n </div>\r\n</template>\r\n<script>\r\nexport default {\r\n name: 'RenDeptTree',\r\n data () {\r\n return {\r\n filterText: '',\r\n visibleDept: false,\r\n deptList: [],\r\n showDeptName: '',\r\n expandedKeys: null,\r\n defaultProps: {\r\n children: 'children',\r\n label: 'label'\r\n }\r\n }\r\n },\r\n props: {\r\n value: [Number, String],\r\n deptName: String,\r\n query: Boolean,\r\n placeholder: String\r\n },\r\n watch: {\r\n filterText (val) {\r\n this.$refs.tree.filter(val)\r\n },\r\n deptName (val) {\r\n this.showDeptName = val\r\n }\r\n },\r\n methods: {\r\n deptDialog () {\r\n this.expandedKeys = null\r\n if (this.$refs.tree) {\r\n this.$refs.tree.setCurrentKey(null)\r\n }\r\n this.visibleDept = true\r\n this.getDeptList(this.value)\r\n },\r\n filterNode (value, data) {\r\n if (!value) return true\r\n return data.name.indexOf(value) !== -1\r\n },\r\n getDeptList (id) {\r\n return this.$http.get('/sys/dept/list').then(({ data: res }) => {\r\n if (res.code !== 0) {\r\n return this.$message.error(res.msg)\r\n }\r\n this.deptList = res.data\r\n this.$nextTick(() => {\r\n this.$refs.tree.setCurrentKey(id)\r\n this.expandedKeys = [id]\r\n })\r\n }).catch(() => {})\r\n },\r\n cancelHandle () {\r\n this.visibleDept = false\r\n this.deptList = []\r\n this.filterText = ''\r\n },\r\n clearHandle () {\r\n this.$emit('input', '')\r\n this.$emit('update:deptName', '')\r\n this.showDeptName = ''\r\n this.visibleDept = false\r\n this.deptList = []\r\n this.filterText = ''\r\n },\r\n commitHandle () {\r\n const node = this.$refs.tree.getCurrentNode()\r\n if (!node) {\r\n this.$message.error(this.$t('dept.chooseerror'))\r\n return\r\n }\r\n this.$emit('input', node.id)\r\n this.$emit('update:deptName', node.name)\r\n this.showDeptName = node.name\r\n this.visibleDept = false\r\n this.deptList = []\r\n this.filterText = ''\r\n }\r\n }\r\n}\r\n</script>\r\n"],"mappings":";;AAmCA;EACAA,IAAA;EACAC,IAAA,WAAAA,KAAA;IACA;MACAC,UAAA;MACAC,WAAA;MACAC,QAAA;MACAC,YAAA;MACAC,YAAA;MACAC,YAAA;QACAC,QAAA;QACAC,KAAA;MACA;IACA;EACA;EACAC,KAAA;IACAC,KAAA,GAAAC,MAAA,EAAAC,MAAA;IACAC,QAAA,EAAAD,MAAA;IACAE,KAAA,EAAAC,OAAA;IACAC,WAAA,EAAAJ;EACA;EACAK,KAAA;IACAhB,UAAA,WAAAA,WAAAiB,GAAA;MACA,KAAAC,KAAA,CAAAC,IAAA,CAAAC,MAAA,CAAAH,GAAA;IACA;IACAL,QAAA,WAAAA,SAAAK,GAAA;MACA,KAAAd,YAAA,GAAAc,GAAA;IACA;EACA;EACAI,OAAA;IACAC,UAAA,WAAAA,WAAA;MACA,KAAAlB,YAAA;MACA,SAAAc,KAAA,CAAAC,IAAA;QACA,KAAAD,KAAA,CAAAC,IAAA,CAAAI,aAAA;MACA;MACA,KAAAtB,WAAA;MACA,KAAAuB,WAAA,MAAAf,KAAA;IACA;IACAgB,UAAA,WAAAA,WAAAhB,KAAA,EAAAV,IAAA;MACA,KAAAU,KAAA;MACA,OAAAV,IAAA,CAAAD,IAAA,CAAA4B,OAAA,CAAAjB,KAAA;IACA;IACAe,WAAA,WAAAA,YAAAG,EAAA;MAAA,IAAAC,KAAA;MACA,YAAAC,KAAA,CAAAC,GAAA,mBAAAC,IAAA,WAAAC,IAAA;QAAA,IAAAC,GAAA,GAAAD,IAAA,CAAAjC,IAAA;QACA,IAAAkC,GAAA,CAAAC,IAAA;UACA,OAAAN,KAAA,CAAAO,QAAA,CAAAC,KAAA,CAAAH,GAAA,CAAAI,GAAA;QACA;QACAT,KAAA,CAAA1B,QAAA,GAAA+B,GAAA,CAAAlC,IAAA;QACA6B,KAAA,CAAAU,SAAA;UACAV,KAAA,CAAAV,KAAA,CAAAC,IAAA,CAAAI,aAAA,CAAAI,EAAA;UACAC,KAAA,CAAAxB,YAAA,IAAAuB,EAAA;QACA;MACA,GAAAY,KAAA;IACA;IACAC,YAAA,WAAAA,aAAA;MACA,KAAAvC,WAAA;MACA,KAAAC,QAAA;MACA,KAAAF,UAAA;IACA;IACAyC,WAAA,WAAAA,YAAA;MACA,KAAAC,KAAA;MACA,KAAAA,KAAA;MACA,KAAAvC,YAAA;MACA,KAAAF,WAAA;MACA,KAAAC,QAAA;MACA,KAAAF,UAAA;IACA;IACA2C,YAAA,WAAAA,aAAA;MACA,IAAAC,IAAA,QAAA1B,KAAA,CAAAC,IAAA,CAAA0B,cAAA;MACA,KAAAD,IAAA;QACA,KAAAT,QAAA,CAAAC,KAAA,MAAAU,EAAA;QACA;MACA;MACA,KAAAJ,KAAA,UAAAE,IAAA,CAAAjB,EAAA;MACA,KAAAe,KAAA,oBAAAE,IAAA,CAAA9C,IAAA;MACA,KAAAK,YAAA,GAAAyC,IAAA,CAAA9C,IAAA;MACA,KAAAG,WAAA;MACA,KAAAC,QAAA;MACA,KAAAF,UAAA;IACA;EACA;AACA","ignoreList":[]}]}
|