init
This commit is contained in:
2025-06-27 17:42:38 +08:00
commit bd6402478b
5317 changed files with 785994 additions and 0 deletions
@@ -0,0 +1,58 @@
import { BasicColumn, FormSchema } from '/@/components/Table';
export const columns: BasicColumn[] = [
{
title: '健康室 ',
align: 'center',
dataIndex: 'pic',
},
{
title: '终端编号 ',
align: 'center',
dataIndex: 'qq',
},
{
title: '终端名称',
align: 'center',
dataIndex: 'name',
},
{
title: '启用',
align: 'center',
dataIndex: 'pic',
},
];
export const searchFormSchema: FormSchema[] = [
{
label: '健康室',
field: 'name1',
component: 'Select',
},
];
export const schemas: FormSchema[] = [
{
label: '健康室',
field: 'name',
component: 'Select',
rules: [{ required: true, trigger: 'blur' }],
},
{
label: '终端编号',
field: 'name',
component: 'Input',
rules: [{ required: true, trigger: 'blur' }],
},
{
label: '终端名称',
field: 'name',
component: 'Input',
rules: [{ required: true, trigger: 'blur' }],
},
{
label: '启用',
field: 'name',
component: 'Select',
rules: [{ required: true, trigger: 'blur' }],
},
];