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.

35 lines
630 B

import moment from 'moment'
import { left } from 'inquirer/lib/utils/readline'
import type { BasicColumn, FormSchema } from '@/components/Table'
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
export const columns: BasicColumn[] = [
{
title: '点号',
dataIndex: 'PointId',
width: 150,
},
{
title: '描述',
dataIndex: 'Description',
width: 200,
},
{
title: '单位',
dataIndex: 'Unit',
width: 80,
},
{
title: '所属模型',
dataIndex: 'modelName',
width: 150,
},
{
title: '模型描述',
dataIndex: 'modelDescirption',
width: 150,
},
]