数据核对、数据管理表格添加新显示字段,打印card添加新的信息显示
This commit is contained in:
@ -2,10 +2,17 @@ import {Button, Space} from "antd";
|
||||
import CourseTypeTag from "../../../component/Workload/CourseTypeTag";
|
||||
|
||||
const ManageTableColumn = (commonAxios, messageApi, fetchWorkload) => [
|
||||
//{
|
||||
// title: 'ID',
|
||||
// dataIndex: 'id',
|
||||
// key: 'id',
|
||||
// responsive: ['lg'],
|
||||
// render: (text) => <span key={text}>{text}</span>
|
||||
//},
|
||||
{
|
||||
title: 'ID',
|
||||
dataIndex: 'id',
|
||||
key: 'id',
|
||||
title: '学期',
|
||||
dataIndex: 'semesterInfo',
|
||||
key: 'semesterInfo',
|
||||
responsive: ['lg'],
|
||||
render: (text) => <span key={text}>{text}</span>
|
||||
},
|
||||
@ -36,6 +43,20 @@ const ManageTableColumn = (commonAxios, messageApi, fetchWorkload) => [
|
||||
responsive: ['lg'],
|
||||
render: (text) => <span key={text}>{text}</span>
|
||||
},
|
||||
{
|
||||
title: '学生数',
|
||||
dataIndex: 'actualClassSize',
|
||||
key: 'actualClassSize',
|
||||
responsive: ['lg'],
|
||||
render: (text) => <span key={text}>{text}</span>
|
||||
},
|
||||
{
|
||||
title: '授课对象',
|
||||
dataIndex: 'teachingGrade',
|
||||
key: 'teachingGrade',
|
||||
responsive: ['lg'],
|
||||
render: (text) => <span key={text}>{text}</span>
|
||||
},
|
||||
{
|
||||
title: '工作量',
|
||||
dataIndex: 'totalClassHours',
|
||||
|
||||
Reference in New Issue
Block a user