|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<template>
<div class="components-input-demo-presuffix">
<!---->
<a-input @click="openModal" placeholder="请点击选择部门" v-model="textVals" readOnly :disabled="disabled">
<a-icon slot="prefix" type="cluster" title="部门选择控件"/>
<a-icon v-if="storeVals" slot="suffix" type="close-circle" @click="handleEmpty" title="清空"/>
</a-input>
<j-select-depart-modal
ref="innerDepartSelectModal"
:modal-width="modalWidth"
:multi="multi"
:rootOpened="rootOpened"
:depart-id="value"
:store="storeField"
:text="textField"
:treeOpera="treeOpera"
@ok="handleOK"
@initComp="initComp"/>
</div>
</template>
<script>
|
|
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import JSelectDepartModal from './modal/JSelectDepartModal'
import {underLinetoHump} from '@/components/_util/StringUtil'
export default {
name: 'JSelectDepart',
components: {
JSelectDepartModal
},
props: {
modalWidth: {
type: Number,
default: 500,
required: false
|
|
37
|
},
|
|
38
39
40
41
|
multi: {
type: Boolean,
default: false,
required: false
|
|
42
|
},
|
|
43
44
45
46
|
rootOpened: {
type: Boolean,
default: true,
required: false
|
|
47
|
},
|
|
48
49
50
51
52
53
54
55
56
57
58
59
60
|
value: {
type: String,
required: false
},
disabled: {
type: Boolean,
required: false,
default: false
},
// 自定义返回字段,默认返回 id
customReturnField: {
type: String,
default: ''
|
|
61
|
},
|
|
62
63
64
65
|
backDepart: {
type: Boolean,
default: false,
required: false
|
|
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
|
// 存储字段 [key field]
store: {
type: String,
default: 'id',
required: false
},
// 显示字段 [label field]
text: {
type: String,
default: 'departName',
required: false
},
treeOpera: {
type: Boolean,
default: false,
required: false
}
},
data() {
return {
visible: false,
confirmLoading: false,
storeVals: '', //[key values]
textVals: '' //[label values]
}
},
computed: {
storeField() {
let field = this.customReturnField
if (!field) {
field = this.store;
|
|
99
|
}
|
|
100
|
return underLinetoHump(field)
|
|
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
126
127
128
129
130
|
textField() {
return underLinetoHump(this.text)
}
},
mounted() {
this.storeVals = this.value
},
watch: {
value(val) {
this.storeVals = val
}
},
methods: {
initComp(textVals) {
this.textVals = textVals
},
//返回选中的部门信息
backDeparInfo() {
if (this.backDepart === true) {
//LOWCOD-2147 【用户管理】选择部门和上级以后,负责部门没有数据可选 (陶炎改造自定义返回字段导致)
if (this.storeVals && this.storeVals.length > 0) {
let arr1 = this.storeVals.split(',')
let arr2 = this.textVals.split(',')
let info = []
for (let i = 0; i < arr1.length; i++) {
info.push({
value: arr1[i],
text: arr2[i]
})
|
|
131
|
}
|
|
132
|
this.$emit('back', info)
|
|
133
|
}
|
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
}
},
openModal() {
this.$refs.innerDepartSelectModal.show()
},
handleOK(rows) {
if (!rows && rows.length <= 0) {
this.textVals = ''
this.storeVals = ''
} else {
let arr1 = []
let arr2 = []
for (let dep of rows) {
arr1.push(dep[this.storeField])
arr2.push(dep[this.textField])
|
|
149
|
}
|
|
150
151
|
this.storeVals = arr1.join(',')
this.textVals = arr2.join(',')
|
|
152
|
}
|
|
153
154
|
this.$emit("change", this.storeVals)
this.backDeparInfo()
|
|
155
|
},
|
|
156
157
158
159
160
|
getDepartNames() {
return this.departNames
},
handleEmpty() {
this.handleOK('')
|
|
161
|
}
|
|
162
163
164
165
|
},
model: {
prop: 'value',
event: 'change'
|
|
166
|
}
|
|
167
|
}
|
|
168
169
170
|
</script>
<style scoped>
|
|
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
.components-input-demo-presuffix .anticon-close-circle {
cursor: pointer;
color: #ccc;
transition: color 0.3s;
font-size: 12px;
}
.components-input-demo-presuffix .anticon-close-circle:hover {
color: #f5222d;
}
.components-input-demo-presuffix .anticon-close-circle:active {
color: #666;
}
|
|
185
|
</style>
|