2024-08-19 20:08:37 +08:00
|
|
|
<template>
|
|
|
|
<treeselect
|
|
|
|
v-model="computedValue"
|
|
|
|
:options="deptOptions"
|
|
|
|
:normalizer="normalizer"
|
|
|
|
:placeholder="placeholder"
|
2024-08-30 18:05:27 +08:00
|
|
|
:disabled="disabled"
|
2024-08-19 20:08:37 +08:00
|
|
|
@select="onSelect"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {listDept} from "@/api/system/dept";
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
2024-08-28 17:53:59 +08:00
|
|
|
import { isDeepEqual } from '@/utils'
|
2024-08-19 20:08:37 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "DeptTreeSelect",
|
|
|
|
components: { Treeselect },
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: String,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
placeholder: {
|
|
|
|
type: String,
|
2024-08-27 17:59:51 +08:00
|
|
|
default: '选择运营商'
|
2024-08-30 18:05:27 +08:00
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2024-08-19 20:08:37 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
deptOptions: [],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
computedValue: {
|
|
|
|
get() {
|
|
|
|
return this.value;
|
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
this.$emit('input', val);
|
2024-08-28 17:53:59 +08:00
|
|
|
if (!isDeepEqual(val, this.value)) {
|
|
|
|
this.$emit('change', val);
|
|
|
|
}
|
2024-08-19 20:08:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getDeptTree();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getDeptTree() {
|
|
|
|
listDept().then(response => {
|
|
|
|
this.deptOptions = this.handleTree(response.data, "deptId");
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 转换运营商数据结构 */
|
|
|
|
normalizer(node) {
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
delete node.children;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
id: node.deptId,
|
|
|
|
label: node.deptName,
|
|
|
|
children: node.children
|
|
|
|
};
|
|
|
|
},
|
|
|
|
onSelect(data) {
|
|
|
|
this.$emit('select', data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|