feat:【mall 商城】分销用户的 update 迁移(antd 50%)

This commit is contained in:
YunaiV
2025-10-09 22:18:57 +08:00
parent db38eb23da
commit 94d0550ecc
5 changed files with 164 additions and 305 deletions

View File

@@ -168,3 +168,15 @@ export function useCreateFormSchema(): VbenFormSchema[] {
},
];
}
/** 修改分销用户表单配置 */
export function useUpdateFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'bindUserId',
label: '上级推广员编号',
component: 'InputSearch',
rules: 'required',
},
];
}