mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-04-19 13:48:37 +00:00
fix:【mall】分销用户创建时,缺少对 bindUserId 的校验
This commit is contained in:
@@ -88,7 +88,8 @@ const formData = ref({
|
|||||||
})
|
})
|
||||||
const formRef = ref() // 表单 Ref
|
const formRef = ref() // 表单 Ref
|
||||||
const formRules = reactive({
|
const formRules = reactive({
|
||||||
userId: [{ required: true, message: '分销员不能为空', trigger: 'blur' }]
|
userId: [{ required: true, message: '分销员不能为空', trigger: 'blur' }],
|
||||||
|
bindUserId: [{ required: true, message: '推广人不能为空', trigger: 'blur' }]
|
||||||
})
|
})
|
||||||
|
|
||||||
/** 打开弹窗 */
|
/** 打开弹窗 */
|
||||||
|
|||||||
Reference in New Issue
Block a user