CRM:完善商机的列表

This commit is contained in:
YunaiV
2024-02-21 18:44:54 +08:00
parent 08bb022cb5
commit a2443e48f7
7 changed files with 436 additions and 204 deletions

View File

@ -206,7 +206,6 @@ const formRules = reactive({
ownerUserId: [{ required: true, message: '负责人不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
const ownerUserList = ref<any[]>([])
const userOptions = ref<UserApi.UserVO[]>([]) // 用户列表
// TODO 芋艿:统一的客户选择面板
const customerList = ref<CustomerApi.CustomerVO[]>([]) // 客户列表
@ -288,6 +287,5 @@ const resetForm = () => {
remark: undefined
}
formRef.value?.resetFields()
ownerUserList.value = []
}
</script>