Merge branch 'dev' of gitee.com:yudaocode/yudao-ui-admin-vben into dev-spu

Signed-off-by: puhui999 <puhui999@163.com>
This commit is contained in:
puhui999
2025-10-21 08:53:26 +00:00
committed by Gitee
254 changed files with 4984 additions and 2092 deletions

View File

@@ -23,7 +23,7 @@ export function useFormSchema(): VbenFormSchema[] {
label: '商品',
component: 'ApiSelect',
componentProps: {
api: () => getSpuSimpleList(),
api: getSpuSimpleList,
labelField: 'name',
valueField: 'id',
placeholder: '请选择商品',

View File

@@ -50,7 +50,7 @@ export function useInfoFormSchema(): VbenFormSchema[] {
label: '商品品牌',
component: 'ApiSelect',
componentProps: {
api: () => getSimpleBrandList(),
api: getSimpleBrandList,
labelField: 'name',
valueField: 'id',
allowClear: true,
@@ -232,7 +232,7 @@ export function useDeliveryFormSchema(): VbenFormSchema[] {
label: '运费模板',
component: 'ApiSelect',
componentProps: {
api: () => getSimpleTemplateList(),
api: getSimpleTemplateList,
labelField: 'name',
valueField: 'id',
},