fix: resolve todo

This commit is contained in:
dylanmay
2025-12-15 10:13:13 +08:00
parent 380f74015e
commit 12b0575ca1
12 changed files with 991 additions and 1326 deletions

View File

@@ -1,3 +1,4 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MpMaterialApi } from '#/api/mp/material';
@@ -131,3 +132,14 @@ export function useImageGridColumns(): VxeTableGridOptions<MpMaterialApi.Materia
},
];
}
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'accountId',
label: '公众号',
component: 'Input',
},
];
}