增加一个日志

This commit is contained in:
q4speed 2020-06-16 10:42:59 +08:00
parent 6e53fcd95b
commit 8bd1a34131
1 changed files with 6 additions and 1 deletions

View File

@ -63,7 +63,12 @@
this.$get(url, response => {
this.report = response.data || {};
if (this.isNotRunning) {
this.content = JSON.parse(this.report.content);
try {
this.content = JSON.parse(this.report.content);
} catch (e) {
console.log(this.report.content)
throw e;
}
this.getFails();
this.loading = false;
} else {