crm:code review 客户配置管理

This commit is contained in:
YunaiV
2023-11-18 22:11:42 +08:00
parent c06223decd
commit 526172af60
6 changed files with 21 additions and 24 deletions

View File

@ -83,6 +83,7 @@ const formRules = reactive({
maxCount: [{ required: true, message: '数量上限不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
// TODO @芋艿:看看怎么搞个部门选择组件
const deptTree = ref() // 部门树形结构
const userTree = ref() // 用户树形结构
@ -179,6 +180,7 @@ const getUserTree = async () => {
handleUserData(userTree.value, deptUserMap)
}
// TODO @芋艿:看看怎么搞个用户选择的组件
/**
* 处理用户树
*