自定义APP自定义App数据通讯
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.8 KiB

<!--
@ 作者: 秦东
@ 时间: 2024-11-14 13:16:43
@ 备注: 选择用户
-->
<script lang='ts' setup>
import { criteriaForPeopleList } from '@/api/hr/org/type'
import SvgIcon from '@/components/svgIcon/index.vue'
const props = withDefaults(
defineProps<{
modelValue?: string
disabled?: boolean
}>(),
{}
)
const emits = defineEmits<{
(e: 'update:modelValue', value: string): void
}>()
const userDialogEl = ref()
const value = computed({
get: () => {
// console.log("value-get",props.modelValue)
// userlist.value = props.modelValue
return props.modelValue
},
set: (newVal: any) => {
// console.log("value-set",newVal,newVal.length)
// emits('update:modelValue', newVal)
let newValJson:criteriaForPeopleList[] = JSON.parse(newVal)
// console.log("value-newValJson",newValJson)
if(newValJson.length > 0){
let userAry = new Array
let userKeyAry = new Array
newValJson.forEach(item =>{
userAry.push(item.name+"("+item.number+")")
userKeyAry.push(item.userkey.toString())
})
emits('update:modelValue', userAry.join(','))
// userlist.value = userAry.join(',')
//
}else{
emits('update:modelValue', "")
}
},
});
const openDialog = () => {
// console.log("value-----》",value.value)
userDialogEl.value.openUserDawer()
}
onMounted(() => {
// console.log("value---1--》",value.value,props.modelValue)
nextTick(() => {})
})
</script>
<template>
<el-input
placeholder="请选择用户"
v-bind="$props"
v-model="value"
@click="openDialog"
>
<template #append>
<SvgIcon icon-class="user" :size="20" @click.stop="openDialog" />
</template>
</el-input>
<UserDrawer ref="userDialogEl" v-model="value" />
</template>
<style lang='scss' scoped>
</style>