|
@@ -109,16 +109,19 @@
|
109
|
109
|
that.info['patient_name'] = response.data.data.patient_name
|
110
|
110
|
that.info['doctor_code'] = response.data.data.doctor_code
|
111
|
111
|
that.info['doctor_name'] = response.data.data.doctor_name
|
112
|
|
- that.info['health_card_no'] = response.data.data.health_card_no_two
|
|
112
|
+ if(response.data.data.health_card_no_two.length == 0){
|
|
113
|
+ that.info['health_card_no'] = response.data.data.health_card_no
|
|
114
|
+ }else{
|
|
115
|
+ that.info['health_card_no'] = response.data.data.health_card_no_two
|
|
116
|
+ }
|
|
117
|
+
|
113
|
118
|
that.info['order_number'] = response.data.data.order_number
|
114
|
119
|
|
115
|
120
|
that.info['department'] = response.data.data.department
|
116
|
121
|
that.info['yiliao_leibie'] = response.data.data.yiliao_leibie
|
117
|
122
|
|
118
|
123
|
that.info['before_money'] = response.data.data.before_money
|
119
|
|
- that.info['after_money'] = response.data.data.after_money
|
120
|
|
-
|
121
|
|
-
|
|
124
|
+ that.info['after_money'] = response.data.data.after_money
|
122
|
125
|
|
123
|
126
|
that.info['org_name'] = that.$store.getters.xt_user.org.org_name
|
124
|
127
|
console.log("~~~~" + that.info)
|