运维管理平台前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
964 B

import { BasicColumn } from '@/components/Table';
import { FormSchema } from '@/components/Form';
export const formSchemas: FormSchema[] = [
{
label: '编号',
4 months ago
field: 'id',
component: 'Input',
componentProps: {
placeholder: '输入编号',
},
},
{
1 month ago
field: '[startDate, endDate]',
label: '报修范围',
component: 'RangePicker',
componentProps: {
1 month ago
format: 'YYYY-MM-DD',
valueFormat:'YYYY-MM-DD'
},
},
1 month ago
];
1 month ago
export const columns: BasicColumn[] = [
{
title: '编号',
4 months ago
dataIndex: 'id',
},
{
title: '报修时间',
3 months ago
dataIndex: 'repairTime',
},
{
title: '响应级别',
dataIndex: 'responseLevel',
},
{
title: '故障描述',
dataIndex: 'faultDescription',
},
{
title: '故障地点',
dataIndex: 'faultLocation',
},
{
title: '处理时限',
dataIndex: 'handleTime',
},
{
title: '当前状态',
dataIndex: 'status',
},
];