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.
113 lines
2.1 KiB
113 lines
2.1 KiB
import type { BasicColumn, FormSchema } from '@/components/Table' |
|
import { useRender } from '@/components/Table' |
|
import { DICT_TYPE, getDictOptions } 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: 'description', |
|
width: 200, |
|
}, |
|
{ |
|
title: '标签', |
|
dataIndex: 'tags', |
|
width: 180, |
|
customRender: ({ text }) => { |
|
return useRender.renderTags(text) |
|
}, |
|
}, |
|
{ |
|
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: 'tag', |
|
component: 'Input', |
|
colProps: { span: 8 }, |
|
}, |
|
{ |
|
label: '状态', |
|
field: 'status', |
|
component: 'Select', |
|
componentProps: { |
|
options: getDictOptions(DICT_TYPE.COMMON_STATUS), |
|
}, |
|
colProps: { span: 8 }, |
|
}, |
|
{ |
|
label: '创建时间', |
|
field: 'createTime', |
|
component: 'RangePicker', |
|
colProps: { span: 8 }, |
|
}, |
|
] |
|
|
|
export const formSchema: FormSchema[] = [ |
|
{ |
|
label: '编号', |
|
field: 'id', |
|
show: false, |
|
component: 'Input', |
|
}, |
|
{ |
|
label: '敏感词', |
|
field: 'name', |
|
required: true, |
|
component: 'Input', |
|
}, |
|
{ |
|
label: '状态', |
|
field: 'status', |
|
component: 'Select', |
|
componentProps: { |
|
options: getDictOptions(DICT_TYPE.COMMON_STATUS), |
|
}, |
|
}, |
|
{ |
|
label: '备注', |
|
field: 'remark', |
|
component: 'InputTextArea', |
|
}, |
|
{ |
|
label: '标签', |
|
field: 'tags', |
|
required: true, |
|
component: 'Select', |
|
componentProps: { |
|
mode: 'tags', |
|
options: [], |
|
}, |
|
}, |
|
]
|
|
|