|
|
|
@ -11,13 +11,31 @@ |
|
|
|
|
:disabled="isDisabled" |
|
|
|
|
@change="change" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in list" |
|
|
|
|
:key="item.id + index" |
|
|
|
|
:label="item[config.labelKey]" |
|
|
|
|
:value="item[config.valueKey]" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
<template v-if="labelIsMore"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in list" |
|
|
|
|
:key="item.id + index" |
|
|
|
|
:label=" |
|
|
|
|
item[config.labelKey[0]] + |
|
|
|
|
'(' + |
|
|
|
|
item[config.labelKey[1]] + |
|
|
|
|
'-' + |
|
|
|
|
item[config.labelKey[2]] + |
|
|
|
|
')' |
|
|
|
|
" |
|
|
|
|
:value="item[config.valueKey]" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</template> |
|
|
|
|
<template> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in list" |
|
|
|
|
:key="item.id + index" |
|
|
|
|
:label="item[config.labelKey]" |
|
|
|
|
:value="item[config.valueKey]" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</template> |
|
|
|
|
</el-select> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -37,6 +55,8 @@ export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
text: "", |
|
|
|
|
labelIsMore: false, |
|
|
|
|
// labelKeyArr:[], |
|
|
|
|
list: [], |
|
|
|
|
isDisabled: false, |
|
|
|
|
}; |
|
|
|
@ -58,8 +78,7 @@ export default { |
|
|
|
|
"config.isDisabled": { |
|
|
|
|
handler(nval, oval) { |
|
|
|
|
let type = this.$utils.typeJudgment(nval); |
|
|
|
|
console.log("type", type); |
|
|
|
|
if (type.includes("Boolean") || type.includes("String")) { |
|
|
|
|
if (["Boolean", "String"].includes(type)) { |
|
|
|
|
this.isDisabled = !!this.config.isDisabled; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -67,6 +86,16 @@ export default { |
|
|
|
|
immediate: true, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
let { labelKey } = this.config; |
|
|
|
|
let type = this.$utils.typeJudgment(labelKey); |
|
|
|
|
// console.log(type); |
|
|
|
|
if (type === "Array") { |
|
|
|
|
// let |
|
|
|
|
this.labelIsMore = true; |
|
|
|
|
// console.log(this.labelIsMore); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 远程搜索 |
|
|
|
|
remoteMethod(query) { |
|
|
|
@ -79,17 +108,12 @@ export default { |
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
let params = {}; |
|
|
|
|
if (type.includes("Object")) { |
|
|
|
|
if (["Object"].includes(type)) { |
|
|
|
|
params[this.config.autocompleteKey.key] = query; |
|
|
|
|
params["enableMark"] = this.config.autocompleteKey.enableMark; |
|
|
|
|
} |
|
|
|
|
if ( |
|
|
|
|
type.includes("String") || |
|
|
|
|
type.includes("Undefined") || |
|
|
|
|
type.includes("Null") |
|
|
|
|
) { |
|
|
|
|
if (["String", "Undefined", "Null"].includes(type)) { |
|
|
|
|
// 接口为get类型时需将autocompleteKey值设为空 |
|
|
|
|
console.log(); |
|
|
|
|
this.config.autocompleteKey |
|
|
|
|
? (params[this.config.autocompleteKey] = query) |
|
|
|
|
: (params = query); |
|
|
|
|