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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

113 lines
2.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: 'code',
width: 100
},
{
title: '岗位顺序',
dataIndex: 'sort',
width: 120
},
{
title: '状态',
dataIndex: 'status',
width: 180,
customRender: ({ text }) => {
return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS)
}
},
{
title: '备注',
2 years ago
dataIndex: 'remark',
width: 180
2 years ago
},
{
title: '创建时间',
dataIndex: 'createTime',
2 years ago
width: 180,
2 years ago
customRender: ({ text }) => {
return useRender.renderDate(text)
}
}
]
export const searchFormSchema: FormSchema[] = [
{
label: '岗位名称',
2 years ago
field: 'name',
2 years ago
component: 'Input',
colProps: { span: 8 }
},
{
label: '岗位编码',
2 years ago
field: 'code',
2 years ago
component: 'Input',
colProps: { span: 8 }
},
{
label: '状态',
2 years ago
field: 'status',
2 years ago
component: 'Select',
componentProps: {
options: getIntDictOptions(DICT_TYPE.COMMON_STATUS)
},
colProps: { span: 8 }
}
]
export const formSchema: FormSchema[] = [
{
label: '编号',
2 years ago
field: 'id',
2 years ago
show: false,
component: 'Input'
},
{
label: '岗位名称',
2 years ago
field: 'name',
2 years ago
required: true,
component: 'Input'
},
{
label: '岗位编码',
2 years ago
field: 'code',
2 years ago
required: true,
component: 'Input'
},
{
label: '岗位顺序',
2 years ago
field: 'sort',
2 years ago
required: true,
defaultValue: 0,
2 years ago
component: 'InputNumber'
},
{
label: '状态',
2 years ago
field: 'status',
2 years ago
component: 'Select',
defaultValue: 0,
componentProps: {
options: getIntDictOptions(DICT_TYPE.COMMON_STATUS)
}
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea'
}
]