Browse Source

新分支

28169 1 year ago
parent
commit
0e97684811

+ 37 - 3
src/xt_pages/dialysis/batch_print/batch_print_order_sixtyseven.vue View File

@@ -529,10 +529,44 @@
529 529
                 </td>
530 530
               </tr>
531 531
               <tr>
532
-                <td colspan="4">
532
+                <td colspan="2">
533 533
                   <span style="width: 14%;">通路评估:</span>
534
-                  <span style="width: 14%;">震颤:</span>
535
-                  <span style="width: 14%;">外观:</span>
534
+                  <span style="width: 14%;">内瘘:
535
+                    {{
536
+                      record.assessment_after_dislysis.internal_fistula
537
+                        ? record.assessment_after_dislysis.internal_fistula
538
+                        : ""
539
+                     }}
540
+                  </span>
541
+                  <span style="width: 14%;">导管:
542
+                    {{
543
+                      record.assessment_after_dislysis.catheter
544
+                        ? record.assessment_after_dislysis.catheter
545
+                        : ""
546
+                     }}
547
+                  </span>
548
+                </td>
549
+                <td >
550
+                  <span style="width: 14%;">透析器凝血:
551
+                    {{
552
+                      record.assessment_after_dislysis &&
553
+                      record.assessment_after_dislysis
554
+                        ?  record.assessment_after_dislysis.cruor
555
+                        : "/"
556
+                     }}
557
+                  </span>
558
+                
559
+                </td>
560
+                <td>
561
+                  <span style="width: 14%;">实际置换量:
562
+                    {{
563
+                      record.assessment_after_dislysis.actual_ultrafiltration
564
+                        ? record.assessment_after_dislysis.actual_ultrafiltration
565
+                        : ""
566
+                     }}L
567
+
568
+                  </span>
569
+                 
536 570
                 </td>
537 571
               </tr>
538 572
             </table>

+ 16 - 7
src/xt_pages/dialysis/batch_print/batch_print_order_twentySeven.vue View File

@@ -1551,11 +1551,11 @@
1551 1551
                               <td width="70">抗凝方式:</td>
1552 1552
                               <td width="120">
1553 1553
                                 <label-box
1554
-                                  :isChecked="(record.prescription.anticoagulant == 6 || record.prescription.anticoagulant == 7 || record.prescription.anticoagulant == 3)
1554
+                                  :isChecked="(record.prescription.anticoagulant == 8)
1555 1555
                                       ? true
1556 1556
                                       : false
1557 1557
                                   "
1558
-                                  showValue="低分子肝素"
1558
+                                  showValue="依诺肝素"
1559 1559
                                 ></label-box>
1560 1560
                               </td>
1561 1561
 
@@ -1564,12 +1564,9 @@
1564 1564
                                   &nbsp;
1565 1565
                                   <span
1566 1566
                                     v-if="
1567
-                                      record.prescription.anticoagulant == 6 || record.prescription.anticoagulant == 7 || record.prescription.anticoagulant == 3
1567
+                                      record.prescription.anticoagulant == 8
1568 1568
                                     "
1569
-                                    >{{
1570
-                                      record.prescription
1571
-                                        .anticoagulant_zongliang
1572
-                                    }}</span
1569
+                                    >{{record.prescription.anticoagulant_zongliang}}</span
1573 1570
                                   >
1574 1571
                                 </div>
1575 1572
                               </td>
@@ -1603,6 +1600,10 @@
1603 1600
                                   v-if="record.prescription.anticoagulant == 7"
1604 1601
                                   >iu</span
1605 1602
                                 >
1603
+                                <span
1604
+                                  v-if="record.prescription.anticoagulant == 8"
1605
+                                  >iu</span
1606
+                                >
1606 1607
                               </td>
1607 1608
                               <td width="120">
1608 1609
                                 <label-box
@@ -1648,6 +1649,10 @@
1648 1649
                                   v-if="record.prescription.anticoagulant == 7"
1649 1650
                                   >iu</span
1650 1651
                                 >
1652
+                                <span
1653
+                                  v-if="record.prescription.anticoagulant == 8"
1654
+                                  >iu</span
1655
+                                >
1651 1656
                                 <span
1652 1657
                                   v-if="record.prescription.anticoagulant == 5"
1653 1658
                                   >mg</span
@@ -1692,6 +1697,10 @@
1692 1697
                                   v-if="record.prescription.anticoagulant == 7"
1693 1698
                                   >iu/h</span
1694 1699
                                 >
1700
+                                <span
1701
+                                  v-if="record.prescription.anticoagulant == 8"
1702
+                                  >iu/h</span
1703
+                                >
1695 1704
                                 <span
1696 1705
                                   v-if="record.prescription.anticoagulant == 6"
1697 1706
                                   >iu/h</span

+ 1 - 1
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

@@ -23,7 +23,7 @@
23 23
          <li v-if="isShow('置换速度')&& this.$store.getters.xt_user.template_info.org_id!=10375">
24 24
           <label>置换速度 : </label>
25 25
           <span class="content">{{displace_speed }}</span>
26
-            <span class="unit">ml/min</span>
26
+            <span class="unit">L/h</span>
27 27
         </li>
28 28
 
29 29
         <li v-if="isShow('置换速度') && this.$store.getters.xt_user.template_info.org_id == 10375">

+ 12 - 8
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

@@ -244,7 +244,8 @@
244 244
                 org_id == 10495 ||
245 245
                 org_id == 10375 ||
246 246
                 org_id == 10485 ||
247
-                org_id == 10375) &&
247
+                org_id == 10375 ||
248
+                org_id == 10480) &&
248 249
                 org_id!=10387
249 250
             "
250 251
           >
@@ -314,7 +315,8 @@
314 315
               org_id != 9555
315 316
               && org_id!=10432 && org_id!=10445
316 317
               && org_id!=10410 && org_id!=10495 &&
317
-               org_id!=10485 && org_id!=10395 && org_id!=10375 )
318
+               org_id!=10485 && org_id!=10395 && org_id!=10375
319
+               && org_id!=10480 )
318 320
               || org_id == 10387
319 321
             "
320 322
           >
@@ -370,7 +372,7 @@
370 372
                 org_id == 10410 ||
371 373
                 org_id == 10495  ||
372 374
                 org_id == 10395
373
-                || org_id == 10485 || org_id == 10375)
375
+                || org_id == 10485 || org_id == 10375 || org_id ==10480)
374 376
                 && org_id!=10387
375 377
             "
376 378
           >
@@ -423,7 +425,7 @@
423 425
               org_id!=10432 &&
424 426
               org_id!=10445 &&
425 427
               org_id!=10410 && org_id!=10495
426
-              && org_id!=10485 && org_id!=10395 && org_id!=10375) ||
428
+              && org_id!=10485 && org_id!=10395 && org_id!=10375 && org_id!=10480) ||
427 429
               org_id == 10387
428 430
             "
429 431
           >
@@ -1151,7 +1153,7 @@
1151 1153
                 org_id== 10432 ||
1152 1154
                 org_id== 10445 ||
1153 1155
                 org_id== 10410 ||
1154
-                org_id == 10485 || org_id == 10375) &&
1156
+                org_id == 10485 || org_id == 10375 || org_id == 10480) &&
1155 1157
                 org_id!=10387
1156 1158
             "
1157 1159
           >
@@ -1199,7 +1201,7 @@
1199 1201
               org_id!=10445 &&
1200 1202
               org_id!=10410 &&
1201 1203
               org_id!=10485 &&
1202
-              org_id!=10375)
1204
+              org_id!=10375 &&  org_id!=10480)
1203 1205
               || org_id == 10387
1204 1206
             "
1205 1207
           >
@@ -1258,7 +1260,8 @@
1258 1260
                 org_id == 10495 ||
1259 1261
                 org_id == 10485 ||
1260 1262
                 org_id == 10395 ||
1261
-                org_id == 10375)
1263
+                org_id == 10375 ||
1264
+                org_id == 10480)
1262 1265
                 && org_id!=10387
1263 1266
             "
1264 1267
           >
@@ -1317,7 +1320,8 @@
1317 1320
               org_id!=10495 &&
1318 1321
               org_id!=10485 &&
1319 1322
               org_id!=10395 &&
1320
-              org_id!=10375
1323
+              org_id!=10375 &&
1324
+              org_id!=10480
1321 1325
               )
1322 1326
               || org_id == 10387
1323 1327
             "

+ 4 - 4
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

@@ -14,10 +14,10 @@
14 14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
15 15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
16 16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
17
-          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 39 || template_id == 40  || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || this.$store.getters.xt_user.template_info.org_id == 10340  || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485 || this.$store.getters.xt_user.template_info.org_id == 10375) &&this.$store.getters.xt_user.template_info.org_id!=10387 " width="76px" > 超滤量(ml)</th>
18
-          <th v-if=" isShow('超滤量') && (template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id != 39 && template_id != 40  && template_id != 41 && template_id != 43 && template_id != 44 && template_id != 46  && template_id != 47 && template_id != 48 && template_id != 53  && template_id != 54  && template_id != 56  && template_id != 60 && template_id != 65 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 && this.$store.getters.xt_user.template_info.org_id!=10485  && this.$store.getters.xt_user.template_info.org_id!=10375) || this.$store.getters.xt_user.template_info.org_id == 10387"  width="76px"> 超滤量(L) </th>
19
-          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 65 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47  || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485 || this.$store.getters.xt_user.template_info.org_id == 10375) && this.$store.getters.xt_user.template_info.org_id!=10387" width="50px"> 超滤率 <br />(ml/h) </th>
20
-          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=65 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38  && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 &&  template_id !=48 &&  template_id !=53 &&  template_id !=54 &&  template_id !=56 &&  template_id !=60 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 &&this.$store.getters.xt_user.template_info.org_id!=10485 &&this.$store.getters.xt_user.template_info.org_id!=10375 ) || this.$store.getters.xt_user.template_info.org_id==10387" width="50px"> 超滤率 <br />(L/h) </th>
17
+          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 39 || template_id == 40  || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47 || template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || template_id == 53 || template_id == 54 || template_id == 56 || template_id == 60 || template_id == 65 || this.$store.getters.xt_user.template_info.org_id == 10340  || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485 || this.$store.getters.xt_user.template_info.org_id == 10375 || this.$store.getters.xt_user.template_info.org_id == 10480) &&this.$store.getters.xt_user.template_info.org_id!=10387 " width="76px" > 超滤量(ml)</th>
18
+          <th v-if=" isShow('超滤量') && (template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id != 39 && template_id != 40  && template_id != 41 && template_id != 43 && template_id != 44 && template_id != 46  && template_id != 47 && template_id != 48 && template_id != 53  && template_id != 54  && template_id != 56  && template_id != 60 && template_id != 65 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 && this.$store.getters.xt_user.template_info.org_id!=10485  && this.$store.getters.xt_user.template_info.org_id!=10375 && this.$store.getters.xt_user.template_info.org_id!=10480) || this.$store.getters.xt_user.template_info.org_id == 10387"  width="76px"> 超滤量(L) </th>
19
+          <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 65 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38 || template_id == 41 || template_id == 43 || template_id == 44 || template_id == 46 || template_id == 47  || template_id == 48  || template_id == 53 || template_id == 54 || template_id == 56  || template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 || this.$store.getters.xt_user.template_info.org_id == 10485 || this.$store.getters.xt_user.template_info.org_id == 10375 || this.$store.getters.xt_user.template_info.org_id == 10480) && this.$store.getters.xt_user.template_info.org_id!=10387" width="50px"> 超滤率 <br />(ml/h) </th>
20
+          <th v-if="isShow('超滤率') && (template_id !=6 && template_id !=65 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38  && template_id !=41 && template_id !=43 && template_id !=44 && template_id !=46 && template_id !=47 &&  template_id !=48 &&  template_id !=53 &&  template_id !=54 &&  template_id !=56 &&  template_id !=60 && this.$store.getters.xt_user.template_info.org_id!=10432  && this.$store.getters.xt_user.template_info.org_id!=10445 && this.$store.getters.xt_user.template_info.org_id!=10410 &&this.$store.getters.xt_user.template_info.org_id!=10485 &&this.$store.getters.xt_user.template_info.org_id!=10375 && this.$store.getters.xt_user.template_info.org_id!=10480 ) || this.$store.getters.xt_user.template_info.org_id==10387" width="50px"> 超滤率 <br />(L/h) </th>
21 21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
22 22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23 23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>

+ 5 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderTwentySeven.vue View File

@@ -669,10 +669,10 @@
669 669
                     <tr>
670 670
                       <td width="70">抗凝方式:</td>
671 671
                       <td width="120">
672
-                          <label-box :isChecked="prescription.anticoagulant == '低分子肝素钙' ? true : false" showValue="低分子肝素钙"></label-box>
672
+                          <label-box :isChecked="prescription.anticoagulant == '依诺肝素' ? true : false" showValue="依诺肝素"></label-box>
673 673
                       </td>
674 674
                       <td width="60">
675
-                          <div class="under-line">&nbsp;{{ prescription.anticoagulant == '低分子肝素钙' && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : ""}}</div>
675
+                          <div class="under-line">&nbsp;{{ prescription.anticoagulant == '依诺肝素' && prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : ""}}</div>
676 676
                       </td>
677 677
                       <td width="10">iu</td>
678 678
                       <td width="100">
@@ -1966,6 +1966,9 @@ export default {
1966 1966
           if (prescription.anticoagulant == 7) {
1967 1967
             prescription.anticoagulant = '低分子肝素钠'
1968 1968
           }
1969
+          if (prescription.anticoagulant == 8) {
1970
+            prescription.anticoagulant = '依诺肝素'
1971
+          }
1969 1972
           if (prescription.blood_access === 1) {
1970 1973
             prescription.blood_access = '正常'
1971 1974
           }

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

@@ -448,7 +448,7 @@
448 448
                 </td>
449 449
               </tr>
450 450
               <tr>
451
-                <td colspan="4">
451
+                <td colspan="2">
452 452
                   <span>通路评估:
453 453
                     内瘘:{{
454 454
                       afterdialysis.internal_fistula
@@ -461,6 +461,31 @@
461 461
                     }}
462 462
                   </span>
463 463
                 </td>
464
+                <td>
465
+                  <span>透析器凝血:
466
+                   
467
+                    {{
468
+                     afterdialysis &&
469
+                     afterdialysis
470
+                        ? afterdialysis.cruor
471
+                        : "/"
472
+                     }}
473
+
474
+                 
475
+                  </span>
476
+                </td>
477
+                <td>
478
+                  <span>实际置换量:
479
+                   
480
+                    {{
481
+                      afterdialysis.actual_ultrafiltration
482
+                        ? afterdialysis.actual_ultrafiltration
483
+                        : ""
484
+                     }}L
485
+
486
+                 
487
+                  </span>
488
+                </td>
464 489
               </tr>
465 490
             </table>
466 491
           </div>

+ 25 - 2
src/xt_pages/stock/drugs/components/drugOutDetail.vue View File

@@ -603,6 +603,7 @@ export default {
603 603
              this.tablePrint[i].total_price =  ((parseInt((this.getCountSix(this.tablePrint[i].drug_id,this.tablePrint[i].child))/this.tablePrint[i].min_number))*this.tablePrint[i].price).toFixed(2)
604 604
              this.tablePrint[i].unit = this.tablePrint[i].dose + this.tablePrint[i].dose_unit + "*" + this.tablePrint[i].min_number +this.tablePrint[i].min_unit +"/"+this.tablePrint[i].max_unit
605 605
              this.tablePrint[i].total = this.getCountSenvenOne(this.tablePrint.drug_id,this.tablePrint[i].child,this.tablePrint[i].price)/this.tablePrint[i].min_number
606
+            
606 607
            }else{
607 608
               this.tablePrint[i].count = this.getCount(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_unit,this.tablePrint[i].min_number)
608 609
               this.tablePrint[i].total_price = this.getTotalPrice(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].min_price)
@@ -614,7 +615,9 @@ export default {
614 615
 
615 616
        import('@/vendor/Export2Excel').then(excel => {
616 617
        const tHeader = ['序号','药品名称', '规格型号','生产厂商','进销商', '单位','数量','单价','总价','出库时间','备注']
617
-       const filterVal = ['index','drug_name', 'unit', 'manufacturer_name','dealer_name','min_unit','count','min_price','total_price','ctime','remark']
618
+       if(this.org_id == 9919){
619
+        const filterVal = ['index','drug_name', 'unit', 'manufacturer_name','dealer_name','max_unit','count','min_price','total_price','ctime','remark']
620
+           
618 621
        let obj = {'index':'合计','total_price':0.00}
619 622
        for(let i=0;i<this.tablePrint.length;i++){
620 623
          obj.total_price += this.tablePrint[i].total
@@ -627,9 +630,29 @@ export default {
627 630
        excel.export_json_to_excel({
628 631
            header: tHeader,
629 632
            data,
630
-           filename: '药品出库明细'
633
+           filename: '药品汇总明细'
634
+         })
635
+          this.downloadLoading = false
636
+       }else{
637
+        const filterVal = ['index','drug_name', 'unit', 'manufacturer_name','dealer_name','min_unit','count','min_price','total_price','ctime','remark']
638
+           
639
+       let obj = {'index':'合计','total_price':0.00}
640
+       for(let i=0;i<this.tablePrint.length;i++){
641
+         obj.total_price += this.tablePrint[i].total
642
+       }
643
+       obj.total_price = obj.total_price.toFixed(2)
644
+       this.tablePrint.push(obj)
645
+       const data = this.formatJson(filterVal, this.tablePrint)
646
+
647
+
648
+       excel.export_json_to_excel({
649
+           header: tHeader,
650
+           data,
651
+           filename: '药品汇总明细'
631 652
          })
632 653
           this.downloadLoading = false
654
+       }
655
+   
633 656
         })
634 657
        },
635 658
 

+ 1 - 1
src/xt_pages/user/vascularAccess.vue View File

@@ -459,7 +459,7 @@
459 459
         <el-button type="primary" @click="updatedVasularAccess('form')">保存</el-button>
460 460
      </span>
461 461
      </el-dialog>
462
-     <!-- <sitemap> </sitemap> -->
462
+     <sitemap> </sitemap>
463 463
     </div>
464 464
 
465 465
      <multi-select-box