Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 4 years ago
parent
commit
34c6ebf2ee

+ 4 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -328,7 +328,6 @@
328 328
         addtions_charge: [],
329 329
         treatVisible: false,
330 330
         orderObj:{
331
-          order_id:0
332 331
         },
333 332
         paramsObj: {
334 333
         },
@@ -789,6 +788,10 @@
789 788
 
790 789
         } else if (index == 9){
791 790
           this.statementVisible = true
791
+          let obj = {
792
+            order_id:this.order.id
793
+          }
794
+          this.orderObj = obj
792 795
           // this.$refs.print.getInfo(this.order.id)
793 796
 
794 797
 

+ 15 - 7
src/xt_pages/outpatientCharges/statementPrint.vue View File

@@ -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

+ 8 - 3
src/xt_pages/outpatientCharges/statementTemplate/printOne.vue View File

@@ -230,9 +230,14 @@
230 230
 </template>
231 231
 <script>
232 232
   export default {
233
-    props:{
234
-      info:Object
235
-    },
233
+    props: {
234
+      info: {
235
+        type: Object,
236
+        default: function () {
237
+          return {};
238
+        }
239
+      },
240
+    }
236 241
   }
237 242
 
238 243