yitisheng-web-manage/src/views/school/college/SchoolCollege.data.ts

62 lines
1.1 KiB
TypeScript

import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
export const columns: BasicColumn[] = [
{
title: 'ID',
align: 'center',
dataIndex: 'id',
},
{
title: '学校ID',
align: 'center',
dataIndex: 'schoolId',
},
{
title: '学院名称',
align: 'center',
dataIndex: 'collegeName',
},
];
export const searchFormSchema: FormSchema[] = [
{
label: '学校ID',
field: 'schoolId',
component: 'InputNumber',
colProps: { span: 6 },
},
{
label: '学院名称',
field: 'collegeName',
component: 'Input',
colProps: { span: 6 },
},
];
export const formSchema: FormSchema[] = [
{
label: '学校ID',
field: 'schoolId',
component: 'InputNumber',
required: true,
},
{
label: '学院名称',
field: 'collegeName',
component: 'Input',
required: true,
},
{
label: '',
field: 'id',
component: 'Input',
show: false,
},
];
export function getBpmFormSchema(_formData): FormSchema[] {
return formSchema;
}