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.
55 lines
1.0 KiB
55 lines
1.0 KiB
2 years ago
|
import { BasicColumn, FormSchema, useRender } from '@/components/Table'
|
||
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||
|
|
||
|
export const columns: BasicColumn[] = [
|
||
|
{
|
||
|
title: '编号',
|
||
|
dataIndex: 'id',
|
||
|
width: 100
|
||
|
},
|
||
|
{
|
||
|
title: '表单名',
|
||
|
dataIndex: 'name',
|
||
|
width: 180
|
||
|
},
|
||
|
{
|
||
|
title: '状态',
|
||
|
dataIndex: 'status',
|
||
|
width: 180,
|
||
|
customRender: ({ text }) => {
|
||
|
return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS)
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
title: '备注',
|
||
|
dataIndex: 'remark',
|
||
|
width: 180
|
||
|
},
|
||
|
{
|
||
|
title: '创建时间',
|
||
|
dataIndex: 'createTime',
|
||
|
width: 180,
|
||
|
customRender: ({ text }) => {
|
||
|
return useRender.renderDate(text)
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
|
||
|
export const searchFormSchema: FormSchema[] = [
|
||
|
{
|
||
|
label: '表单名',
|
||
|
field: 'name',
|
||
|
component: 'Input',
|
||
|
colProps: { span: 8 }
|
||
|
},
|
||
|
{
|
||
|
label: '状态',
|
||
|
field: 'status',
|
||
|
component: 'Select',
|
||
|
componentProps: {
|
||
|
options: getIntDictOptions(DICT_TYPE.COMMON_STATUS)
|
||
|
},
|
||
|
colProps: { span: 8 }
|
||
|
}
|
||
|
]
|