|
@@ -693,13 +693,16 @@ export default {
|
|
|
if (!cs) return;
|
|
|
this.compareResult = cs;
|
|
|
// 后台的计算需要通过resultJson来判断: isPass isStranger existsSystemError
|
|
|
- this.finalResult.verifySteps[0].result = this.compareResult.isPass;
|
|
|
+ this.finalResult.verifySteps[0].result =
|
|
|
+ this.compareResult.isPass;
|
|
|
this.finalResult.verifySteps[0].resourceType = "PIC";
|
|
|
- this.finalResult.verifySteps[0].resourceUrl = this.compareResult.fileUrl;
|
|
|
+ this.finalResult.verifySteps[0].resourceUrl =
|
|
|
+ this.compareResult.fileUrl;
|
|
|
this.finalResult.verifySteps[0].resultJson = JSON.stringify(
|
|
|
this.compareResult
|
|
|
);
|
|
|
- this.finalResult.verifySteps[0].errorMsg = this.compareResult.errorMsg;
|
|
|
+ this.finalResult.verifySteps[0].errorMsg =
|
|
|
+ this.compareResult.errorMsg;
|
|
|
this.pauseDetecting = false;
|
|
|
this.doneCompare = true;
|
|
|
if (this.compareResult.isPass && !this.compareResult.isStranger) {
|