255 lines
4.6 KiB
TypeScript
255 lines
4.6 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: '毕业年份',
|
|
align: "center",
|
|
dataIndex: 'bynf'
|
|
},
|
|
{
|
|
title: '学院',
|
|
align: "center",
|
|
dataIndex: 'ssyxmc'
|
|
},
|
|
{
|
|
title: '所属校内专业(大类)名称',
|
|
align: "center",
|
|
dataIndex: 'ssxnzymc'
|
|
},
|
|
];
|
|
|
|
//列表数据
|
|
export const columnsCj: BasicColumn[] = [
|
|
{
|
|
title: '学号',
|
|
align: "center",
|
|
dataIndex: 'xsxh',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '学生姓名',
|
|
align: "center",
|
|
dataIndex: 'xsxm',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '毕业年份',
|
|
align: "center",
|
|
dataIndex: 'bynf',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '班级',
|
|
align: "center",
|
|
dataIndex: 'bj',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '毕业论文(设计)题目',
|
|
align: "center",
|
|
dataIndex: 'bylwTm',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '毕业论文(设计)类别',
|
|
align: "center",
|
|
dataIndex: 'bylwLb',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '毕业论文(设计)成绩',
|
|
align: "center",
|
|
dataIndex: 'bylwCj',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '指导教师姓名',
|
|
align: "center",
|
|
dataIndex: 'zdjsxm',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '指导教师职称',
|
|
align: "center",
|
|
dataIndex: 'zdjszc',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '所属院系名称',
|
|
align: "center",
|
|
dataIndex: 'ssyxmc',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '所属校内专业(大类)名称',
|
|
align: "center",
|
|
dataIndex: 'ssxnzymc',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '是否电子化管理',
|
|
align: "center",
|
|
dataIndex: 'sfsxdzhgl',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '关键词',
|
|
align: "center",
|
|
dataIndex: 'gjc',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '查重结果',
|
|
align: "center",
|
|
dataIndex: 'ccjg',
|
|
width:120,
|
|
slots: { customRender: 'ccjg' },
|
|
}
|
|
];
|
|
|
|
|
|
//列表数据
|
|
export const columnsXq: BasicColumn[] = [
|
|
{
|
|
title: '学生学号',
|
|
align: "center",
|
|
dataIndex: 'xsxh',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '学生姓名',
|
|
align: "center",
|
|
dataIndex: 'xsxm',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '毕业年份',
|
|
align: "center",
|
|
dataIndex: 'bynf',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '班级',
|
|
align: "center",
|
|
dataIndex: 'bj',
|
|
width:120,
|
|
},
|
|
{
|
|
title: '毕业论文(设计)题目',
|
|
align: "center",
|
|
dataIndex: 'bylwTm',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '毕业论文(设计)类别',
|
|
align: "center",
|
|
dataIndex: 'bylwLb',
|
|
width:220,
|
|
},
|
|
{
|
|
title: '开题报告',
|
|
align: "center",
|
|
dataIndex: 'ktbg',
|
|
width:200,
|
|
children: [
|
|
{
|
|
title: '预览',
|
|
dataIndex: 'ktbg',
|
|
width: 100,
|
|
slots: { customRender: 'ktbg_yl' },
|
|
},
|
|
{
|
|
title: '下载',
|
|
dataIndex: 'ktbg',
|
|
width: 100,
|
|
slots: { customRender: 'ktbg_xz' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '开题报告审核意见',
|
|
align: "center",
|
|
dataIndex: 'ktbgshyj',
|
|
width:200,
|
|
children: [
|
|
{
|
|
title: '预览',
|
|
dataIndex: 'ktbgshyj',
|
|
width: 100,
|
|
slots: { customRender: 'ktbgshyj_yl' },
|
|
},
|
|
{
|
|
title: '下载',
|
|
dataIndex: 'ktbgshyj',
|
|
width: 100,
|
|
slots: { customRender: 'ktbgshyj_xz' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '中期检查',
|
|
align: "center",
|
|
dataIndex: 'zqjc',
|
|
width:200,
|
|
children: [
|
|
{
|
|
title: '预览',
|
|
dataIndex: 'zqjc',
|
|
width: 100,
|
|
slots: { customRender: 'zqjc_yl' },
|
|
},
|
|
{
|
|
title: '下载',
|
|
dataIndex: 'zqjc',
|
|
width: 100,
|
|
slots: { customRender: 'zqjc_xz' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '论文终稿',
|
|
align: "center",
|
|
dataIndex: 'lwzg',
|
|
width:200,
|
|
children: [
|
|
{
|
|
title: '预览',
|
|
dataIndex: 'lwzg',
|
|
width: 100,
|
|
slots: { customRender: 'lwzg_yl' },
|
|
},
|
|
{
|
|
title: '下载',
|
|
dataIndex: 'lwzg',
|
|
width: 100,
|
|
slots: { customRender: 'lwzg_xz' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '检测报告等材料',
|
|
align: "center",
|
|
dataIndex: 'jcbgdcl',
|
|
width:200,
|
|
children: [
|
|
{
|
|
title: '预览',
|
|
dataIndex: 'jcbgdcl',
|
|
width: 100,
|
|
slots: { customRender: 'jcbgdcl_yl' },
|
|
},
|
|
{
|
|
title: '下载',
|
|
dataIndex: 'jcbgdcl',
|
|
width: 100,
|
|
slots: { customRender: 'jcbgdcl_xz' },
|
|
},
|
|
],
|
|
|
|
},
|
|
];
|