123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import {BasicColumn} from '/@/components/Table';
- import {FormSchema} from '/@/components/Table';
- import { rules} from '/@/utils/helper/validator';
- import { render } from '/@/utils/common/renderUtils';
- import { getWeekMonthQuarterYear } from '/@/utils';
- //列表数据
- export const columns: BasicColumn[] = [
-
- {
- title: '配件类型(accessory type)',
- align:"center",
- dataIndex: 'accessoryType',
- key: 'accessoryType'
- },
- {
- title: '规格(specifications)',
- align:"center",
- dataIndex: 'specifications',
- key: 'specifications'
- },
- {
- title: '型号(model)',
- align:"center",
- dataIndex: 'model',
- key: 'model'
- },
- {
- title: '序列号(serial number)',
- align:"center",
- dataIndex: 'serialNumber',
- key: 'serialNumber'
- },
- /* {
- title: '备注',
- align:"center",
- dataIndex: 'notes',
- key: 'notes'
- },
- {
- title: '附件',
- align:"center",
- dataIndex: 'attachs',
- key: 'attachs'
- }, */
- ];
- //查询数据
- export const searchFormSchema: FormSchema[] = [
- ];
|