|
@@ -13,7 +13,7 @@
|
13
|
13
|
</template>
|
14
|
14
|
|
15
|
15
|
<div class='dialysisPage' style="padding-top:40px;">
|
16
|
|
- <printOne v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id" :info="info"></printOne>
|
|
16
|
+ <printOne :info="info"></printOne>
|
17
|
17
|
</div>
|
18
|
18
|
</div>
|
19
|
19
|
</template>
|
|
@@ -56,7 +56,7 @@ export default {
|
56
|
56
|
patient_id:0,
|
57
|
57
|
prescription_id:0,
|
58
|
58
|
ids:'',
|
59
|
|
- info:{}
|
|
59
|
+ info:null,
|
60
|
60
|
};
|
61
|
61
|
},
|
62
|
62
|
methods:{
|
|
@@ -149,10 +149,12 @@ export default {
|
149
|
149
|
searchAction(){
|
150
|
150
|
|
151
|
151
|
},
|
152
|
|
- getInfo(order_id){
|
|
152
|
+ getInfo(order_id) {
|
|
153
|
+ if (this.$store.getters.xt_user.org_id == 4) {
|
|
154
|
+
|
153
|
155
|
axios.get('http://127.0.0.1:9532/api/settle/query', {
|
154
|
156
|
params: {
|
155
|
|
- order_id:order_id,
|
|
157
|
+ order_id: order_id,
|
156
|
158
|
}
|
157
|
159
|
})
|
158
|
160
|
.then(function (response) {
|
|
@@ -160,7 +162,12 @@ export default {
|
160
|
162
|
this.$message.error(response.data.msg)
|
161
|
163
|
return false
|
162
|
164
|
} else {
|
|
165
|
+ console.log("logloglog")
|
|
166
|
+
|
|
167
|
+ console.log(response.data.data.info)
|
|
168
|
+
|
163
|
169
|
this.info = response.data.data.info
|
|
170
|
+ console.log(this.info)
|
164
|
171
|
|
165
|
172
|
this.info['bed_cost_total'] = response.data.data.bedCostTotal
|
166
|
173
|
this.info['bed_cost_self_total'] = response.data.data.bedCostSelfTotal
|
|
@@ -199,24 +206,25 @@ export default {
|
199
|
206
|
this.info['treat_cost_total'] = response.data.data.treatCostTotal
|
200
|
207
|
this.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal
|
201
|
208
|
this.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal
|
|
209
|
+ console.log(this.info)
|
202
|
210
|
}
|
203
|
211
|
})
|
204
|
212
|
.catch(function (error) {
|
205
|
213
|
|
206
|
214
|
});
|
207
|
215
|
}
|
|
216
|
+ }
|
208
|
217
|
|
209
|
218
|
},
|
210
|
219
|
|
211
|
220
|
created() {
|
212
|
|
-
|
|
221
|
+ this.getInfo(this.paramsObj.order_id)
|
213
|
222
|
},
|
214
|
223
|
watch:{
|
215
|
224
|
paramsObj:{//深度监听,可监听到对象、数组的变化
|
216
|
225
|
handler(val, oldVal){
|
217
|
|
- console.log("~~~~~")
|
218
|
|
- console.log("~~~~~")
|
219
|
226
|
this.paramsObj = val
|
|
227
|
+ this.getInfo(this.paramsObj.order_id)
|
220
|
228
|
|
221
|
229
|
},
|
222
|
230
|
deep:true
|