144 lines
3.3 KiB
Vue
Raw Permalink Normal View History

2025-06-30 09:38:03 +08:00
<template>
<view class="jnpf-tree-select">
<u-input input-align='right' type="select" :select-open="selectShow" v-model="innerValue"
:placeholder="placeholder" @click="openSelect" v-if="isInput" />
<Tree v-model="selectShow" :options="options" :multiple="multiple" :selectedData="selectedData"
:selectType="selectType" :query='query' :clearable="clearable" ref="userTree" @close="handleClose"
@confirm="handleConfirm" />
</view>
</template>
<script>
import Tree from './Tree.vue';
import {
getUserInfoList
} from '@/api/common.js'
export default {
components: {
Tree
},
props: {
modelValue: {
default: ''
},
isInput: {
type: Boolean,
default: true
},
options: {
type: Array,
default: () => []
},
ableIds: {
type: Array,
default: () => []
},
ableRelationIds: {
type: [Array, String],
default: () => []
},
selectType: {
type: String,
default: 'all'
},
placeholder: {
type: String,
default: '请选择'
},
disabled: {
type: Boolean,
default: false
},
clearable: {
type: Boolean,
default: false
},
multiple: {
type: Boolean,
default: false
},
},
data() {
return {
selectShow: false,
innerValue: '',
selectedData: [],
query: {}
}
},
watch: {
modelValue: {
handler(val) {
this.setDefault()
},
immediate: true
}
},
methods: {
setDefault() {
if (!this.modelValue || !this.modelValue.length) return this.setNullValue();
this.selectedData = []
const ids = this.multiple ? this.modelValue : [this.modelValue];
if (!Array.isArray(ids)) return;
getUserInfoList(ids).then(res => {
if (!this.modelValue || !this.modelValue.length) return this.setNullValue();
const list = res.data.list
this.selectedData = list
this.innerValue = this.selectedData.map(o => o.fullName).join();
})
},
setNullValue() {
this.innerValue = '';
this.selectedData = [];
},
openSelect() {
if (this.disabled) return
this.selectShow = true
if (this.selectType === 'custom') {
this.query = {
ids: this.ableIds,
}
} else if (this.selectType != 'all') {
const suffix = '--' + this.getAbleKey(this.selectType);
let ableIds = !this.ableRelationIds ? [] : Array.isArray(this.ableRelationIds) ? this
.ableRelationIds : [this.ableRelationIds];
this.query = {
ids: ableIds.map(o => o + suffix)
}
}
},
getAbleKey(selectType) {
if (selectType === 'dep') return 'department'
if (selectType === 'pos') return 'position'
if (selectType === 'role') return 'role'
if (selectType === 'group') return 'group'
},
handleClose() {
this.selectShow = false
},
handleConfirm(e) {
this.selectedData = e;
let label = ''
let value = []
for (let i = 0; i < e.length; i++) {
label += (!label ? '' : ',') + e[i].fullName
value.push(e[i].id)
}
this.defaultValue = value
this.innerValue = label
if (!this.multiple) {
this.$emit('update:modelValue', value[0])
this.$emit('change', value[0], e[0])
} else {
this.$emit('update:modelValue', value)
this.$emit('change', value, e)
}
}
}
}
</script>
<style lang="scss" scoped>
.jnpf-tree-select {
width: 100%;
}
</style>