32 lines
669 B
TypeScript
32 lines
669 B
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
|
|
/** 获取表格列配置 */
|
|
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{
|
|
field: 'content',
|
|
title: '图文内容',
|
|
minWidth: 300,
|
|
slots: { default: 'content' },
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: 200,
|
|
fixed: 'right',
|
|
slots: { default: 'actions' },
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 列表的搜索表单 */
|
|
export function useGridFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
fieldName: 'accountId',
|
|
label: '公众号',
|
|
component: 'Input',
|
|
},
|
|
];
|
|
}
|