|
@@ -106,6 +106,14 @@
|
|
|
title: '院系',
|
|
title: '院系',
|
|
|
dataIndex: 'collegeTwoIdName'
|
|
dataIndex: 'collegeTwoIdName'
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '客观题练习人数',
|
|
|
|
|
+ dataIndex: 'thereCount'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '主观题练习人数',
|
|
|
|
|
+ dataIndex: 'mainCount'
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
title: '课程类型',
|
|
title: '课程类型',
|
|
|
dataIndex: 'courseTypeName'
|
|
dataIndex: 'courseTypeName'
|
|
@@ -215,6 +223,8 @@
|
|
|
...item,
|
|
...item,
|
|
|
coursesNumber: Math.floor(Math.random() * 10) + 1, // 1-10之间的随机数
|
|
coursesNumber: Math.floor(Math.random() * 10) + 1, // 1-10之间的随机数
|
|
|
NumberCoursesOffered: Math.floor(Math.random() * 5) + 1, // 1-5之间的随机数
|
|
NumberCoursesOffered: Math.floor(Math.random() * 5) + 1, // 1-5之间的随机数
|
|
|
|
|
+ thereCount: Math.floor(Math.random() * 5) + 1, // 1-5之间的随机数
|
|
|
|
|
+ mainCount: Math.floor(Math.random() * 5) + 1, // 1-5之间的随机数
|
|
|
CourseSelectionInformation: `已选${Math.floor(Math.random() * 100)}人/限选${
|
|
CourseSelectionInformation: `已选${Math.floor(Math.random() * 100)}人/限选${
|
|
|
Math.floor(Math.random() * 100) + 50
|
|
Math.floor(Math.random() * 100) + 50
|
|
|
}人`
|
|
}人`
|