|
@@ -75,7 +75,7 @@
|
|
|
<span
|
|
|
style="font-size: 14px; margin: 0px 6px"
|
|
|
v-if="statusShow.indexOf(2) !== -1"
|
|
|
- >已推送:{{gfNum}}/{{total}}</span
|
|
|
+ >已推送:{{ gfNum }}/{{ total }}</span
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -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,
|