49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import {BasicColumn} from '/@/components/Table';
|
|
import {FormSchema} from '/@/components/Table';
|
|
import { rules} from '/@/utils/helper/validator';
|
|
import { render } from '/@/utils/common/renderUtils';
|
|
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '实践计划id',
|
|
align: "center",
|
|
dataIndex: 'planId'
|
|
},
|
|
{
|
|
title: '实践计划名称',
|
|
align: "center",
|
|
dataIndex: 'planName'
|
|
},
|
|
{
|
|
title: '学院id',
|
|
align: "center",
|
|
dataIndex: 'orgId'
|
|
},
|
|
{
|
|
title: '学院名称',
|
|
align: "center",
|
|
dataIndex: 'orgName'
|
|
},
|
|
{
|
|
title: '学生id',
|
|
align: "center",
|
|
dataIndex: 'studentId'
|
|
},
|
|
{
|
|
title: '学生姓名',
|
|
align: "center",
|
|
dataIndex: 'studentName'
|
|
},
|
|
];
|
|
|
|
// 高级查询数据
|
|
export const superQuerySchema = {
|
|
planId: {title: '实践计划id',order: 0,view: 'text', type: 'string',},
|
|
planName: {title: '实践计划名称',order: 1,view: 'text', type: 'string',},
|
|
orgId: {title: '学院id',order: 2,view: 'number', type: 'number',},
|
|
orgName: {title: '学院名称',order: 3,view: 'text', type: 'string',},
|
|
studentId: {title: '学生id',order: 4,view: 'number', type: 'number',},
|
|
studentName: {title: '学生姓名',order: 5,view: 'text', type: 'string',},
|
|
};
|