67 lines
1.1 KiB
TypeScript
67 lines
1.1 KiB
TypeScript
import { BasicColumn } from '/@/components/Table';
|
|
import { FormSchema } from '/@/components/Table';
|
|
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '学校ID',
|
|
align: 'center',
|
|
dataIndex: 'schoolId',
|
|
},
|
|
{
|
|
title: '专业编码',
|
|
align: 'center',
|
|
dataIndex: 'majorCode',
|
|
},
|
|
{
|
|
title: '专业名称',
|
|
align: 'center',
|
|
dataIndex: 'majorName',
|
|
},
|
|
];
|
|
|
|
export const searchFormSchema: FormSchema[] = [
|
|
{
|
|
label: '学校ID',
|
|
field: 'schoolId',
|
|
component: 'InputNumber',
|
|
colProps: { span: 6 },
|
|
},
|
|
{
|
|
label: '专业名称',
|
|
field: 'majorName',
|
|
component: 'Input',
|
|
colProps: { span: 6 },
|
|
},
|
|
];
|
|
|
|
export const formSchema: FormSchema[] = [
|
|
{
|
|
label: '学校ID',
|
|
field: 'schoolId',
|
|
component: 'InputNumber',
|
|
required: true,
|
|
},
|
|
{
|
|
label: '专业编码',
|
|
field: 'majorCode',
|
|
component: 'Input',
|
|
},
|
|
{
|
|
label: '专业名称',
|
|
field: 'majorName',
|
|
component: 'Input',
|
|
required: true,
|
|
},
|
|
{
|
|
label: '',
|
|
field: 'id',
|
|
component: 'Input',
|
|
show: false,
|
|
},
|
|
];
|
|
|
|
export function getBpmFormSchema(_formData): FormSchema[] {
|
|
return formSchema;
|
|
}
|
|
|