查询排班详请
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2m9s

This commit is contained in:
fyy
2025-08-13 17:02:49 +08:00
parent 8da35d2d4b
commit 1db3c351e5
10 changed files with 490 additions and 12 deletions

View File

@@ -0,0 +1,68 @@
import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
fieldName: 'area',
label: '区域',
}
];
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
// export const columns: () => VxeGridProps['columns'] = () => [
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: '区域',
field: 'area',
width: 'auto',
},
{
title: '摄像机id',
field: 'deviceManageId',
minWidth: 300,
},
{
title: '备注',
field: 'reamark',
},
{
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
width: 180,
},
];
export const modalSchema: FormSchemaGetter = () => [
{
label: '主键id',
fieldName: 'id',
component: 'Input',
dependencies: {
show: () => false,
triggerFields: [''],
},
},
{
label: '区域',
fieldName: 'area',
component: 'Input',
},
{
label: '摄像机id',
fieldName: 'deviceManageId',
component: 'Select',
componentProps: {
},
},
{
label: '备注',
fieldName: 'reamark',
component: 'Input',
},
];