fix : 修复阶段变更中抄送人员回显

This commit is contained in:
2024-06-14 23:26:38 +08:00
parent 532ef440ce
commit 73313a1532
4 changed files with 11 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
<template>
<el-button color="#DED0B2" >
{{ modelValue || '请选择抄送人员' }}
<div>{{modelValue}}</div>
<el-button color="#DED0B2" style="margin-left: 10px" @click="click">
{{ modelValue?'更改':'请选择抄送人员' }}
</el-button>
</template>
@@ -11,13 +12,8 @@ const props = defineProps({
default: ''
}
})
// const emit = defineEmits('update: modelValue')
const localText = ref('')
const emit = defineEmits('clickCopyUser')
const click=()=>{
emit("clickCopyUser")
}
</script>
<style lang="scss" scoped>
</style>