see999 3 years ago
parent
commit
c929cfcf8b

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyNine.vue View File

@@ -246,7 +246,7 @@
246 246
                         <td width="30"></td>
247 247
                         <td width='70'>体重增加:</td>
248 248
                         <td width="50">
249
-                            <div class="under-line">&nbsp;{{ afterdialysis.weight_after ? afterdialysis.weight_after : "" }}</div>
249
+                            <div class="under-line">&nbsp;{{ (predialysis.weight_before - assessmentafter.weight_after).toFixed(1) }}</div>
250 250
                         </td>
251 251
                         <td width="10">Kg</td>
252 252
                         <td width="30"></td>

+ 3 - 1
src/xt_pages/outpatientCharges/newTreatTemplate/printTwo.vue View File

@@ -102,7 +102,8 @@
102 102
       }
103 103
     },
104 104
     props: {
105
-      paramsObj: Object
105
+      paramsObj: Object,
106
+      info: Object
106 107
     },
107 108
     methods: {
108 109
       getName(list) {
@@ -315,6 +316,7 @@
315 316
     mounted() {
316 317
       this.org_id = this.$store.getters.xt_user.org_id
317 318
       if (this.org_id == 9504 || this.org_id == 10028 || this.org_id == 10138) {
319
+        var xtuser = this.$store.getters.xt_user
318 320
         this.orgname = xtuser.org.org_name
319 321
         var form = {
320 322
           'order_id': this.paramsObj.order_id,

+ 187 - 176
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -150,99 +150,103 @@
150 150
                         <el-tab-pane label="日结" name="first">
151 151
                             <div style="display:flex;height:100%;">
152 152
                                 <div class="centerLeft">
153
+                                  <div>
153 154
                                     <div class="tabsBox" v-for="items,index in big_prescriptions" :key="index">
155
+                                      <div style="height: calc(100% - 60px);">
154 156
 
155 157
 
156 158
 
157 159
 
158
-                                        <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"
159
-                                                 @tab-click="tabclickEvent">
160
-                                            <!--<el-radio-group v-model="med_radio">-->
161
-                                            <el-tab-pane
162
-                                                    v-for="(item, index) in items.prescriptions"
163
-                                                    :key="index"
164
-                                                    :label="item.name"
165
-                                                    :name="item.name"
166
-                                            >
167
-                                            </el-tab-pane>
160
+                                          <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"
161
+                                                  @tab-click="tabclickEvent">
162
+                                              <!--<el-radio-group v-model="med_radio">-->
163
+                                              <el-tab-pane
164
+                                                      v-for="(item, index) in items.prescriptions"
165
+                                                      :key="index"
166
+                                                      :label="item.name"
167
+                                                      :name="item.name"
168
+                                              >
169
+                                              </el-tab-pane>
168 170
 
169
-                                            <div style="margin-bottom:10px;float: right">
170
-                                                <el-button
171
-                                                        v-if="(hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0) "
171
+                                              <div style="margin-bottom:10px;float: right">
172
+                                                  <el-button
173
+                                                          v-if="(hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0) "
172 174
 
173
-                                                        size="small"
174
-                                                        @click="sz_open(8,items.med_type,items.prescriptions[0].order)"
175
-                                                        type="primary"
176
-                                                >预结算
177
-                                                </el-button>
175
+                                                          size="small"
176
+                                                          @click="sz_open(8,items.med_type,items.prescriptions[0].order)"
177
+                                                          type="primary"
178
+                                                  >预结算
179
+                                                  </el-button>
178 180
 
179
-                                                <el-button
180
-                                                        v-if="order.order_status == 1"
181
-                                                        size="small"
182
-                                                        @click="sz_open(7,items.med_type,items.prescriptions[0].order,items.prescriptions)"
183
-                                                        type="primary"
184
-                                                >撤销明细
185
-                                                </el-button>
181
+                                                  <el-button
182
+                                                          v-if="order.order_status == 1"
183
+                                                          size="small"
184
+                                                          @click="sz_open(7,items.med_type,items.prescriptions[0].order,items.prescriptions)"
185
+                                                          type="primary"
186
+                                                  >撤销明细
187
+                                                  </el-button>
186 188
 
187
-                                                <el-button
188
-                                                        v-if="(hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0) || items.prescriptions[0].order.order_status == 1"
189
-                                                        size="small"
190
-                                                        @click="sz_open(3,items.med_type,items.prescriptions[0].order,items.prescriptions)"
191
-                                                        type="primary">收费
192
-                                                </el-button>
189
+                                                  <el-button
190
+                                                          v-if="(hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0) || items.prescriptions[0].order.order_status == 1"
191
+                                                          size="small"
192
+                                                          @click="sz_open(3,items.med_type,items.prescriptions[0].order,items.prescriptions)"
193
+                                                          type="primary">收费
194
+                                                  </el-button>
193 195
 
194 196
 
195
-                                                <div v-if="org_id == 9504 || org_id == 10028 || org_id == 10138">
197
+                                                  <div v-if="org_id == 9504 || org_id == 10028 || org_id == 10138">
196 198
 
197 199
 
198 200
 
199
-                                                </div>
200
-                                                <div v-if="org_id != 9504 && org_id != 10028 &&org_id != 10138">
201
+                                                  </div>
202
+                                                  <div v-if="org_id != 9504 && org_id != 10028 &&org_id != 10138">
201 203
 
202
-                                                    <!--<el-button-->
203
-                                                            <!--v-if="(hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0) "-->
204
+                                                      <!--<el-button-->
205
+                                                              <!--v-if="(hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0) "-->
204 206
 
205
-                                                            <!--size="small"-->
206
-                                                            <!--@click="open(8,items.med_type,items.prescriptions[0].order)"-->
207
-                                                            <!--type="primary"-->
208
-                                                    <!--&gt;预结算-->
209
-                                                    <!--</el-button>-->
207
+                                                              <!--size="small"-->
208
+                                                              <!--@click="open(8,items.med_type,items.prescriptions[0].order)"-->
209
+                                                              <!--type="primary"-->
210
+                                                      <!--&gt;预结算-->
211
+                                                      <!--</el-button>-->
210 212
 
211 213
 
212
-                                                    <!--<el-button v-loading="loadingtwo"-->
213
-                                                               <!--v-if="(hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0) || items.prescriptions[0].order.order_status == 1 ||  items.prescriptions[0].order.order_status == 3"-->
214
-                                                               <!--size="small"-->
215
-                                                               <!--@click="open(4,items.med_type,items.prescriptions[0].order,items.prescriptions)"-->
216
-                                                               <!--type="primary">收费-->
217
-                                                    <!--</el-button>-->
214
+                                                      <!--<el-button v-loading="loadingtwo"-->
215
+                                                                <!--v-if="(hisPatientInfo.id > 0 && items.prescriptions[0].order.id == 0) || items.prescriptions[0].order.order_status == 1 ||  items.prescriptions[0].order.order_status == 3"-->
216
+                                                                <!--size="small"-->
217
+                                                                <!--@click="open(4,items.med_type,items.prescriptions[0].order,items.prescriptions)"-->
218
+                                                                <!--type="primary">收费-->
219
+                                                      <!--</el-button>-->
218 220
 
219 221
 
220
-                                                    <!--<el-button-->
221
-                                                    <!--v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919  || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674   || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990"-->
222
-                                                    <!--size="small" @click="open(11)" type="primary"-->
223
-                                                    <!--&gt;撤销明细-->
224
-                                                    <!--</el-button>-->
222
+                                                      <!--<el-button-->
223
+                                                      <!--v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919  || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674   || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990"-->
224
+                                                      <!--size="small" @click="open(11)" type="primary"-->
225
+                                                      <!--&gt;撤销明细-->
226
+                                                      <!--</el-button>-->
225 227
 
226
-                                                </div>
227
-                                            </div>
228
+                                                  </div>
229
+                                              </div>
228 230
 
229
-                                            <prescription-table ref="prescription_tables"
230
-                                                                :prescription="items.curPrescriptions"></prescription-table>
231
-                                            <!--</el-radio-group>-->
232
-                                        </el-tabs>
231
+                                              <prescription-table ref="prescription_tables"
232
+                                                                  :prescription="items.curPrescriptions"></prescription-table>
233
+                                              <!--</el-radio-group>-->
234
+                                          </el-tabs>
233 235
 
234
-                                        <div class="costBox">
235
-                                            <span>当前处方总费用:<span style="color:red;">{{items.total}}元</span></span>
236
-                                            <span>总费用:<span style="color:red;">{{ items.curPrescriptions.order.medfee_sumamt ?  items.curPrescriptions.order.medfee_sumamt:getTotalFour(items.prescriptions)?getTotalFour(items.prescriptions):'' }}元</span></span>
237
-                                            <span>基金支付:<span style="color:red;">{{ items.curPrescriptions.order.fund_pay_sumamt?items.curPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
238
-                                            <span>个人支付:<span style="color:red;">{{ items.curPrescriptions.order.psn_cash_pay?items.curPrescriptions.order.psn_cash_pay:''}}元</span></span>
239
-
240
-                                            <span v-if="items.curPrescriptions.order_status  == 1">待结算</span>
241
-                                            <span v-if="items.curPrescriptions.order_status  == 2">已结算</span>
242
-                                            <span v-if="items.curPrescriptions.order_status  == 3">已退费</span>
243
-                                        </div>
244
-                                    </div>
236
+                                          
237
+                                      </div>
238
+                                      <div class="costBox">
239
+                                        <span>当前处方总费用:<span style="color:red;">{{items.total}}元</span></span>
240
+                                        <span>总费用:<span style="color:red;">{{ items.curPrescriptions.order.medfee_sumamt ?  items.curPrescriptions.order.medfee_sumamt:getTotalFour(items.prescriptions)?getTotalFour(items.prescriptions):'' }}元</span></span>
241
+                                        <span>基金支付:<span style="color:red;">{{ items.curPrescriptions.order.fund_pay_sumamt?items.curPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
242
+                                        <span>个人支付:<span style="color:red;">{{ items.curPrescriptions.order.psn_cash_pay?items.curPrescriptions.order.psn_cash_pay:''}}元</span></span>
245 243
 
244
+                                        <span v-if="items.curPrescriptions.order_status  == 1">待结算</span>
245
+                                        <span v-if="items.curPrescriptions.order_status  == 2">已结算</span>
246
+                                        <span v-if="items.curPrescriptions.order_status  == 3">已退费</span>
247
+                                      </div>
248
+                                    </div>
249
+                                  </div>
246 250
 
247 251
                                 </div>
248 252
                                 <div class="centerRight">
@@ -359,120 +363,125 @@
359 363
                                                 value-format="yyyy-MM-dd">
360 364
                                         </el-date-picker>
361 365
                                     </div>
362
-                                    <div class="tabsBox" v-for="items, index in big_month_prescriptions">
363
-
364
-                                        <!--<el-radio v-model="month_check" label="11" style="margin:10px 0;"-->
365
-                                        <!--v-if="items.med_type == 11">{{'普通门诊处方'}}-->
366
-                                        <!--</el-radio>-->
367
-                                        <!--<el-radio v-model="month_check" label="12" style="margin:10px 0;"-->
368
-                                        <!--v-if="items.med_type == 12">{{'门诊挂号'}}-->
369
-                                        <!--</el-radio>-->
370
-                                        <!--<el-radio v-model="month_check" label="13" style="margin:10px 0;"-->
371
-                                        <!--v-if="items.med_type == 13">{{'急诊'}}-->
372
-                                        <!--</el-radio>-->
373
-                                        <!--<el-radio v-model="month_check" label="14" style="margin:10px 0;"-->
374
-                                        <!--v-if="items.med_type == 14">{{'门诊特殊病'}}-->
375
-                                        <!--</el-radio>-->
376
-                                        <!--<el-radio v-model="month_check" label="15" style="margin:10px 0;"-->
377
-                                        <!--v-if="items.med_type == 15">{{'门诊统筹'}}-->
378
-                                        <!--</el-radio>-->
379
-                                        <!--<el-radio v-model="month_check" label="16" style="margin:10px 0;"-->
380
-                                        <!--v-if="items.med_type == 16">{{'门诊慢性病'}}-->
381
-                                        <!--</el-radio>-->
382
-                                        <!--<el-radio v-model="month_check" label="21" style="margin:10px 0;"-->
383
-                                        <!--v-if="items.med_type == 21">{{'普通住院'}}-->
384
-                                        <!--</el-radio>-->
385
-
386
-                                        <!-- <el-button type="text" class="addTab" @click="addCharges" icon="el-icon-circle-plus">附加收费</el-button> -->
387
-                                        <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"
388
-                                                 @tab-click="tabclickEventTwo">
389
-
390
-                                            <el-tab-pane
391
-                                                    v-for="(item, index) in items.month_prescriptions"
392
-                                                    :key="index"
393
-                                                    :label="item.name"
394
-                                                    :name="item.name">
395
-
396
-
397
-                                            </el-tab-pane>
398
-                                            <div style="margin-bottom:10px;float: right">
399
-                                                <div v-if="org_id == 9504 || org_id == 10028 || org_id == 10138">
400
-
401
-                                                    <!--<el-button-->
402
-                                                            <!--v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) "-->
403
-
404
-                                                            <!--size="small"-->
405
-                                                            <!--@click="sz_open(8,items.med_type,items.curMonthPrescriptions.order)"-->
406
-                                                            <!--type="primary"-->
407
-                                                    <!--&gt;预结算-->
408
-                                                    <!--</el-button>-->
409
-
410
-                                                    <el-button
411
-                                                            v-if="order.order_status == 1"
412
-                                                            size="small"
413
-                                                            @click="sz_open(7,items.med_type,items.curMonthPrescriptions.order, items.month_prescriptions)"
414
-                                                            type="primary"
415
-                                                    >撤销明细
416
-                                                    </el-button>
417
-
418
-                                                    <el-button
419
-                                                            v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) || items.curMonthPrescriptions.order.order_status == 1"
420
-                                                            size="small"
421
-                                                            @click="sz_open(3,items.med_type,items.curMonthPrescriptions.order, items.month_prescriptions)"
422
-                                                            type="primary">收费
423
-                                                    </el-button>
424
-
425
-
426
-                                                </div>
427
-                                                <div v-if="org_id != 9504 && org_id != 10028 &&org_id != 10138">
428
-
429
-                                                    <!--<el-button-->
430
-                                                            <!--v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) "-->
431
-                                                            <!--size="small"-->
432
-                                                            <!--@click="open(8,items.med_type,items.curMonthPrescriptions.order)"-->
433
-                                                            <!--type="primary"-->
434
-                                                    <!--&gt;预结算-->
435
-                                                    <!--</el-button>-->
436
-
437
-
438
-                                                    <el-button v-loading="loadingtwo"
439
-                                                               v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) || items.curMonthPrescriptions.order.order_status == 1 ||  items.curMonthPrescriptions.order.order_status == 3"
440
-                                                               size="small"
441
-                                                               @click="open(4,items.med_type,items.curMonthPrescriptions.order,items.month_prescriptions)"
442
-                                                               type="primary">收费
443
-                                                    </el-button>
444
-
445
-
446
-                                                    <!--<el-button-->
447
-                                                    <!--v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919  || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674   || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990"-->
448
-                                                    <!--size="small" @click="open(11)" type="primary"-->
449
-                                                    <!--&gt;撤销明细-->
450
-                                                    <!--</el-button>-->
451
-
366
+                                    <div>
367
+                                      <div class="tabsBox" v-for="items, index in big_month_prescriptions">
368
+                                        <div  style="height: calc(100% - 60px);">
369
+
370
+                                            <!--<el-radio v-model="month_check" label="11" style="margin:10px 0;"-->
371
+                                            <!--v-if="items.med_type == 11">{{'普通门诊处方'}}-->
372
+                                            <!--</el-radio>-->
373
+                                            <!--<el-radio v-model="month_check" label="12" style="margin:10px 0;"-->
374
+                                            <!--v-if="items.med_type == 12">{{'门诊挂号'}}-->
375
+                                            <!--</el-radio>-->
376
+                                            <!--<el-radio v-model="month_check" label="13" style="margin:10px 0;"-->
377
+                                            <!--v-if="items.med_type == 13">{{'急诊'}}-->
378
+                                            <!--</el-radio>-->
379
+                                            <!--<el-radio v-model="month_check" label="14" style="margin:10px 0;"-->
380
+                                            <!--v-if="items.med_type == 14">{{'门诊特殊病'}}-->
381
+                                            <!--</el-radio>-->
382
+                                            <!--<el-radio v-model="month_check" label="15" style="margin:10px 0;"-->
383
+                                            <!--v-if="items.med_type == 15">{{'门诊统筹'}}-->
384
+                                            <!--</el-radio>-->
385
+                                            <!--<el-radio v-model="month_check" label="16" style="margin:10px 0;"-->
386
+                                            <!--v-if="items.med_type == 16">{{'门诊慢性病'}}-->
387
+                                            <!--</el-radio>-->
388
+                                            <!--<el-radio v-model="month_check" label="21" style="margin:10px 0;"-->
389
+                                            <!--v-if="items.med_type == 21">{{'普通住院'}}-->
390
+                                            <!--</el-radio>-->
391
+
392
+                                            <!-- <el-button type="text" class="addTab" @click="addCharges" icon="el-icon-circle-plus">附加收费</el-button> -->
393
+                                            <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"
394
+                                                    @tab-click="tabclickEventTwo">
395
+
396
+                                                <el-tab-pane
397
+                                                        v-for="(item, index) in items.month_prescriptions"
398
+                                                        :key="index"
399
+                                                        :label="item.name"
400
+                                                        :name="item.name">
401
+
402
+
403
+                                                </el-tab-pane>
404
+                                                <div style="margin-bottom:10px;float: right">
405
+                                                    <div v-if="org_id == 9504 || org_id == 10028 || org_id == 10138">
406
+
407
+                                                        <!--<el-button-->
408
+                                                                <!--v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) "-->
409
+
410
+                                                                <!--size="small"-->
411
+                                                                <!--@click="sz_open(8,items.med_type,items.curMonthPrescriptions.order)"-->
412
+                                                                <!--type="primary"-->
413
+                                                        <!--&gt;预结算-->
414
+                                                        <!--</el-button>-->
415
+
416
+                                                        <el-button
417
+                                                                v-if="order.order_status == 1"
418
+                                                                size="small"
419
+                                                                @click="sz_open(7,items.med_type,items.curMonthPrescriptions.order, items.month_prescriptions)"
420
+                                                                type="primary"
421
+                                                        >撤销明细
422
+                                                        </el-button>
423
+
424
+                                                        <el-button
425
+                                                                v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) || items.curMonthPrescriptions.order.order_status == 1"
426
+                                                                size="small"
427
+                                                                @click="sz_open(3,items.med_type,items.curMonthPrescriptions.order, items.month_prescriptions)"
428
+                                                                type="primary">收费
429
+                                                        </el-button>
430
+
431
+
432
+                                                    </div>
433
+                                                    <div v-if="org_id != 9504 && org_id != 10028 &&org_id != 10138">
434
+
435
+                                                        <!--<el-button-->
436
+                                                                <!--v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) "-->
437
+                                                                <!--size="small"-->
438
+                                                                <!--@click="open(8,items.med_type,items.curMonthPrescriptions.order)"-->
439
+                                                                <!--type="primary"-->
440
+                                                        <!--&gt;预结算-->
441
+                                                        <!--</el-button>-->
442
+
443
+
444
+                                                        <el-button v-loading="loadingtwo"
445
+                                                                  v-if="(hisPatientInfo.id > 0 && items.curMonthPrescriptions.order.id == 0) || items.curMonthPrescriptions.order.order_status == 1 ||  items.curMonthPrescriptions.order.order_status == 3"
446
+                                                                  size="small"
447
+                                                                  @click="open(4,items.med_type,items.curMonthPrescriptions.order,items.month_prescriptions)"
448
+                                                                  type="primary">收费
449
+                                                        </el-button>
450
+
451
+
452
+                                                        <!--<el-button-->
453
+                                                        <!--v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919  || this.$store.getters.xt_user.org_id == 9671 || this.$store.getters.xt_user.org_id == 9674   || this.$store.getters.xt_user.org_id == 10106 || this.$store.getters.xt_user.org_id == 9990"-->
454
+                                                        <!--size="small" @click="open(11)" type="primary"-->
455
+                                                        <!--&gt;撤销明细-->
456
+                                                        <!--</el-button>-->
457
+
458
+                                                    </div>
452 459
                                                 </div>
453
-                                            </div>
454 460
 
455
-                                            <!--<prescription-table :preTableData='preTableData'></prescription-table>-->
456
-                                            <!--<month-prescription-table ref="prescription_tables"-->
457
-                                            <!--:activeType="activeType"  :prescription="curMonthPrescriptions"></month-prescription-table>-->
458
-                                            <charge-month-prescription-table
459
-                                                    :prescription="items.curMonthPrescriptions"></charge-month-prescription-table>
461
+                                                <!--<prescription-table :preTableData='preTableData'></prescription-table>-->
462
+                                                <!--<month-prescription-table ref="prescription_tables"-->
463
+                                                <!--:activeType="activeType"  :prescription="curMonthPrescriptions"></month-prescription-table>-->
464
+                                                <charge-month-prescription-table
465
+                                                        :prescription="items.curMonthPrescriptions"></charge-month-prescription-table>
460 466
 
461 467
 
462
-                                            <div class="costBox">
463
-                                                <span>当前处方总费用:<span
464
-                                                        style="color:red;">{{ items.month_total }}元</span></span>
468
+                                                
465 469
 
466
-                                                <span>总费用:<span style="color:red;">{{ items.curMonthPrescriptions.order.medfee_sumamt ?  items.curMonthPrescriptions.order.medfee_sumamt:getTotalFour(items.month_prescriptions)?getTotalFour(items.month_prescriptions):'' }}元</span></span>
467
-                                                <span>基金支付:<span style="color:red;">{{ items.curMonthPrescriptions.order.fund_pay_sumamt?items.curMonthPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
468
-                                                <span>个人支付:<span style="color:red;">{{ items.curMonthPrescriptions.order.psn_cash_pay?items.curMonthPrescriptions.order.psn_cash_pay:''}}元</span></span>
470
+                                            </el-tabs>
469 471
 
470
-                                                <!--<span>{{ state }}</span>-->
471
-                                            </div>
472 472
 
473
-                                        </el-tabs>
473
+                                        </div>
474
+                                        <div class="costBox">
475
+                                          <span>当前处方总费用:<span
476
+                                                  style="color:red;">{{ items.month_total }}元</span></span>
474 477
 
478
+                                          <span>总费用:<span style="color:red;">{{ items.curMonthPrescriptions.order.medfee_sumamt ?  items.curMonthPrescriptions.order.medfee_sumamt:getTotalFour(items.month_prescriptions)?getTotalFour(items.month_prescriptions):'' }}元</span></span>
479
+                                          <span>基金支付:<span style="color:red;">{{ items.curMonthPrescriptions.order.fund_pay_sumamt?items.curMonthPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
480
+                                          <span>个人支付:<span style="color:red;">{{ items.curMonthPrescriptions.order.psn_cash_pay?items.curMonthPrescriptions.order.psn_cash_pay:''}}元</span></span>
475 481
 
482
+                                          <!--<span>{{ state }}</span>-->
483
+                                        </div>
484
+                                      </div>
476 485
                                     </div>
477 486
 
478 487
                                 </div>
@@ -4442,9 +4451,10 @@
4442 4451
     }
4443 4452
     .tabsBox {
4444 4453
         position: relative;
4445
-        height: 90%;
4454
+        // height: 90%;
4446 4455
         overflow-y: auto;
4447
-        margin-bottom: 60px;
4456
+        height: 350px;
4457
+        // margin-bottom: 60px;
4448 4458
 
4449 4459
     .el-tabs__item {
4450 4460
         padding: 0 10px;
@@ -4480,6 +4490,7 @@
4480 4490
         display: flex;
4481 4491
         flex-direction: column;
4482 4492
         position: relative;
4493
+        overflow-y: auto;
4483 4494
     }
4484 4495
 
4485 4496
     .preTabs {