|
@@ -334,6 +334,13 @@ export default {
|
|
|
this.$message.warning("请勾选需要学时信息推送的学员");
|
|
|
return;
|
|
|
}
|
|
|
+ let stu = this.$refs.tableList.allCheckData.some((item) => {
|
|
|
+ return item.periodStatus === -1;
|
|
|
+ });
|
|
|
+ if (stu) {
|
|
|
+ this.$message.warning("所勾选学员的学时审批状态不允许为不可审核状态");
|
|
|
+ return;
|
|
|
+ }
|
|
|
let arr = this.$refs.tableList.allCheckData.map((item) => {
|
|
|
return {
|
|
|
userId: item.userId,
|