seimin 1 year ago
parent
commit
02ab34ca93
1 changed files with 7 additions and 2 deletions
  1. 7 2
      pages/receipt_infopage/receipt_infopage.vue

+ 7 - 2
pages/receipt_infopage/receipt_infopage.vue

@@ -582,12 +582,17 @@
582 582
               content,
583 583
             })
584 584
             .then((result) => {
585
-              this.patientHandoverCode = JSON.parse(result.code);
585
+              try{
586
+                this.patientHandoverCode = JSON.parse(result.code);
587
+              }catch(e){
588
+                this.patientHandoverCode = '';
589
+              }
590
+              
586 591
               this.SMFlag = true;
587 592
               // 200检测通过,201没有有效期也通过。
588 593
               if (result.state == 200 || result.state == 201) {
589 594
                 uni.hideLoading();
590
-                if(Object.prototype.toString(this.patientHandoverCode) === '[object Object]' && this.patientHandoverCode.name){
595
+                if(Object.prototype.toString.call(this.patientHandoverCode) === '[object Object]' && this.patientHandoverCode.name){
591 596
                   this.models2 = {
592 597
                     disjunctor: true,
593 598
                     title: "提示",