1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| <template>
| <div>
| <Select
| v-model="currentValue"
| :size="size"
| :loading="loading"
| :placeholder="placeholder"
| :multiple="multiple"
| :disabled="disabled"
| :filterable="filterable"
| :transfer="transfer"
| :clearable="clearable"
| :placement="placement"
| :transfer-class-name="transferClassName"
| :prefix="prefix"
| :max-tag-count="maxTagCount"
| :max-tag-placeholder="maxTagPlaceholder"
| @on-change="handleChange"
| @on-query-change="handleQueryChange"
| @on-clear="handleClear"
| @on-open-change="handleOpenChange"
| @on-select="handleSelect"
| >
| <Option v-for="(item, i) in dictData" :key="i" :value="item.value">{{
| item.title
| }}</Option>
| </Select>
| </div>
| </template>
|
| <script>
| import { getDictDataByType } from "@/api/index";
| export default {
| name: "dict",
| props: {
| value: "",
| dict: String,
| placeholder: {
| type: String,
| default: "请选择",
| },
| placement: {
| type: String,
| default: "bottom-start",
| },
| size: String,
| multiple: {
| type: Boolean,
| default: false,
| },
| disabled: {
| type: Boolean,
| default: false,
| },
| filterable: {
| type: Boolean,
| default: false,
| },
| transfer: {
| type: Boolean,
| default: false,
| },
| transferClassName: String,
| prefix: String,
| maxTagCount: Number,
| maxTagPlaceholder: Function,
| clearable: {
| type: Boolean,
| default: true,
| },
| },
| data() {
| return {
| currentValue: this.value,
| dictData: [],
| loading: false,
| };
| },
| methods: {
| getData(v) {
| this.loading = true;
| getDictDataByType(v).then((res) => {
| this.loading = false;
| if (res.success) {
| this.dictData = res.result;
| }
| });
| },
| handleChange(v) {
| this.$emit("input", v);
| this.$emit("on-change", v);
| },
| handleQueryChange(v) {
| this.$emit("on-query-change", v);
| },
| handleClear() {
| this.$emit("on-clear", "");
| },
| handleOpenChange(v) {
| this.$emit("on-open-change", v);
| },
| handleSelect(v) {
| this.$emit("on-select", v);
| },
| setCurrentValue(value) {
| if (value === this.currentValue) {
| return;
| }
| this.currentValue = value;
| this.$emit("on-change", this.currentValue);
| },
| },
| watch: {
| value(val) {
| this.setCurrentValue(val);
| },
| dict(val) {
| this.getData(val);
| },
| },
| mounted() {
| this.getData(this.dict);
| },
| };
| </script>
|
|