feat:【mall 商城】交易订单(30% antd remark 优化代码风格)

This commit is contained in:
YunaiV
2025-10-15 09:12:51 +08:00
parent cc44ee3daa
commit a101cdf2f8
4 changed files with 79 additions and 34 deletions

View File

@@ -261,3 +261,26 @@ export function useGridColumns(): VxeGridPropTypes.Columns {
},
];
}
/** 订单备注表单配置 */
export function useRemarkFormSchema(): VbenFormSchema[] {
return [
{
component: 'Input',
fieldName: 'id',
dependencies: {
triggerFields: [''],
show: () => false,
},
},
{
fieldName: 'remark',
label: '备注',
component: 'Input',
componentProps: {
type: 'textarea',
rows: 3,
},
},
];
}