management/front/dkha-web-sz-main/node_modules/.cache/vue-loader/34ae795439d8d94cc5b8ef73cf4...

1 line
5.6 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\\components\\ren-region-tree\\src\\ren-region-tree.vue?vue&type=style&index=0&lang=scss&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\components\\ren-region-tree\\src\\ren-region-tree.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.ren-region {\n .filter-tree {\n max-height: 230px;\n overflow: auto;\n }\n .el-dialog__body {\n padding: 0px 0px 0px 20px;\n }\n .el-dialog__footer {\n padding: 10px 20px 8px 20px;\n }\n}\n",{"version":3,"sources":["ren-region-tree.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"ren-region-tree.vue","sourceRoot":"src/components/ren-region-tree/src","sourcesContent":["<template>\n <div class=\"ren-region\">\n <el-input v-model=\"showName\" :placeholder=\"placeholder\" @focus=\"treeDialog\">\n <el-button slot=\"append\" icon=\"el-icon-search\" @click=\"treeDialog\"></el-button>\n </el-input>\n <el-input :value=\"value\" style=\"display: none\"></el-input>\n <el-dialog :visible.sync=\"visibleTree\" width=\"360px\" :modal=\"false\" :title=\"placeholder\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\n <el-form size=\"mini\" :inline=\"true\">\n <el-form-item :label=\"$t('keyword')\">\n <el-input v-model=\"filterText\"></el-input>\n </el-form-item>\n <el-form-item>\n <el-button type=\"default\">{{ $t('query') }}</el-button>\n </el-form-item>\n </el-form>\n <el-tree\n class=\"filter-tree\"\n :data=\"dataList\"\n :default-expanded-keys=\"expandedKeys\"\n :props=\"{ label: 'name', children: 'children' }\"\n :expand-on-click-node=\"false\"\n :filter-node-method=\"filterNode\"\n :highlight-current=\"true\"\n node-key=\"id\"\n ref=\"tree\">\n </el-tree>\n <template slot=\"footer\">\n <el-button type=\"default\" @click=\"cancelHandle()\" size=\"mini\">{{ $t('cancel') }}</el-button>\n <el-button type=\"info\" @click=\"clearHandle()\" size=\"mini\">{{ $t('clear') }}</el-button>\n <el-button type=\"primary\" @click=\"commitHandle()\" size=\"mini\">{{ $t('confirm') }}</el-button>\n </template>\n </el-dialog>\n </div>\n</template>\n<style lang=\"scss\">\n.ren-region {\n .filter-tree {\n max-height: 230px;\n overflow: auto;\n }\n .el-dialog__body {\n padding: 0px 0px 0px 20px;\n }\n .el-dialog__footer {\n padding: 10px 20px 8px 20px;\n }\n}\n</style>\n<script>\nimport { treeDataTranslate } from '@/utils'\nexport default {\n name: 'RenRegionTree',\n data () {\n return {\n filterText: '',\n visibleTree: false,\n dataList: [],\n showName: '',\n expandedKeys: null,\n defaultProps: {\n children: 'children',\n label: 'name'\n }\n }\n },\n props: {\n value: [Number, String],\n parentName: String,\n placeholder: String\n },\n watch: {\n filterText (val) {\n this.$refs.tree.filter(val)\n },\n parentName (val) {\n this.showName = val\n }\n },\n methods: {\n treeDialog () {\n this.expandedKeys = null\n if (this.$refs.tree) {\n this.$refs.tree.setCurrentKey(null)\n }\n this.visibleTree = true\n this.getDataList(this.value)\n },\n filterNode (value, data) {\n if (!value) return true\n return data.name.indexOf(value) !== -1\n },\n getDataList (id) {\n return this.$http.get('/sys/region/tree').then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.dataList = treeDataTranslate(res.data)\n this.$nextTick(() => {\n this.$refs.tree.setCurrentKey(id)\n this.expandedKeys = [id]\n })\n }).catch(() => {})\n },\n cancelHandle () {\n this.visibleTree = false\n this.dataList = []\n this.filterText = ''\n },\n clearHandle () {\n this.$emit('input', '0')\n this.$emit('update:parentName', '')\n this.showName = ''\n this.visibleTree = false\n this.dataList = []\n this.filterText = ''\n },\n commitHandle () {\n const node = this.$refs.tree.getCurrentNode()\n if (!node) {\n this.$message.error(this.$t('choose'))\n return\n }\n this.$emit('input', node.id)\n this.$emit('update:parentName', node.name)\n this.showName = node.name\n this.visibleTree = false\n this.dataList = []\n this.filterText = ''\n }\n }\n}\n</script>\n"]}]}