|
@@ -68,6 +68,7 @@ Vue.mixin({
|
|
|
if (resAfter.data.code === "S-101000") {
|
|
|
continue;
|
|
|
} else if (resAfter.data.code === "000000") {
|
|
|
+ window._hmt.push(["_trackEvent", "交卷处理延迟次数", i + 1]);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -78,13 +79,16 @@ Vue.mixin({
|
|
|
});
|
|
|
this.$Spin.hide();
|
|
|
} else {
|
|
|
+ window._hmt.push(["_trackEvent", "断点续考处理异常", "交卷失败"]);
|
|
|
this.$Message.error({
|
|
|
content: "交卷失败",
|
|
|
duration: 15,
|
|
|
closable: true,
|
|
|
});
|
|
|
+ throw "交卷失败";
|
|
|
}
|
|
|
- throw "交卷失败";
|
|
|
+
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
if (examingRes) {
|
|
@@ -103,8 +107,9 @@ Vue.mixin({
|
|
|
return true;
|
|
|
}
|
|
|
} catch (error) {
|
|
|
+ window._hmt.push(["_trackEvent", "断点续考处理异常"]);
|
|
|
this.$Message.error({
|
|
|
- content: "获取断点续考信息异常",
|
|
|
+ content: "断点续考处理异常",
|
|
|
duration: 15,
|
|
|
closable: true,
|
|
|
});
|