|
@@ -752,7 +752,10 @@ export default {
|
|
|
return true;
|
|
|
} catch (error) {
|
|
|
console.log(error);
|
|
|
- this.logger({ action: "提交答案失败", detail: error });
|
|
|
+ this.logger({
|
|
|
+ action: "提交答案失败",
|
|
|
+ detail: JSON.stringify(error),
|
|
|
+ });
|
|
|
this.$Message.error({
|
|
|
content: "提交答案失败",
|
|
|
duration: 15,
|
|
@@ -903,7 +906,7 @@ export default {
|
|
|
closable: true,
|
|
|
});
|
|
|
console.log(e);
|
|
|
- this.logger({ action: "交卷失败", detail: e });
|
|
|
+ this.logger({ action: "交卷失败", detail: JSON.stringify(e) });
|
|
|
}
|
|
|
this.submitLock = false;
|
|
|
this.$Spin.hide();
|