|
@@ -240,6 +240,7 @@ class TrainplanService extends CrudService {
|
|
|
const trainplandName = trainplan.title;
|
|
|
// 在计划中找到这个学生在哪期以及哪期下的哪批次
|
|
|
for (const student of studentList) {
|
|
|
+ student.isComming = utils.getIsNot(student.isComming);
|
|
|
student.trainplandName = trainplandName;
|
|
|
// 期次
|
|
|
const term = trainplan.termnum.filter(term => {
|
|
@@ -287,6 +288,7 @@ class TrainplanService extends CrudService {
|
|
|
// { key: 'selfscore', title: '个人分' },
|
|
|
// { key: 'score', title: '总分' },
|
|
|
// { key: 'diy', title: '自定义' },
|
|
|
+ { key: 'isComming', title: '是否签到' },
|
|
|
];
|
|
|
|
|
|
// 需要打出的列表
|