|
@@ -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: "提示",
|