28169 преди 1 година
родител
ревизия
e2d627b5c6
променени са 25 файла, в които са добавени 782 реда и са изтрити 1088 реда
  1. 3 0
      src/xt_pages/dialysis/PatientBox.vue
  2. 1 1
      src/xt_pages/dialysis/batch_print/batch_print_order_thirteen.vue
  3. 16 4
      src/xt_pages/dialysis/batch_print/batch_print_order_twentyEight.vue
  4. 15 0
      src/xt_pages/dialysis/details/NavIgation.vue
  5. 53 4
      src/xt_pages/dialysis/details/consumable/dialysisDrug.vue
  6. 53 4
      src/xt_pages/dialysis/details/consumable/dialysisDrugPrint.vue
  7. 6 0
      src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue
  8. 51 23
      src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue
  9. 2 2
      src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue
  10. 9 3
      src/xt_pages/dialysis/details/index.vue
  11. 2 0
      src/xt_pages/dialysis/dialysisPrintOrder.vue
  12. 3 2
      src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue
  13. 1 1
      src/xt_pages/dialysis/template/DialysisPrintOrderThirteen.vue
  14. 3 1
      src/xt_pages/dialysis/template/DialysisPrintOrderTwentyEight.vue
  15. 49 0
      src/xt_pages/hospitalStation/components/deskPrescription.vue
  16. 4 0
      src/xt_pages/management/components/UserForm.vue
  17. 2 7
      src/xt_pages/outpatientCharges/components/registerDialog.vue
  18. 61 36
      src/xt_pages/outpatientCharges/outpatientChargesManagement.vue
  19. 348 348
      src/xt_pages/outpatientCharges/statementTemplate/printTen.vue
  20. 11 15
      src/xt_pages/outpatientDoctorStation/checkTemplate/printOne.vue
  21. 57 2
      src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue
  22. 6 617
      src/xt_pages/user/courseOfDisease.vue
  23. 2 2
      src/xt_pages/workforce/components/nextTableWeeks.vue
  24. 11 3
      src/xt_pages/workforce/remind_print_setting.vue
  25. 13 13
      src/xt_permission.js

+ 3 - 0
src/xt_pages/dialysis/PatientBox.vue Целия файл

@@ -358,6 +358,7 @@ export default {
358 358
       date: "",
359 359
       modedata: 0,
360 360
       stockType: [],
361
+      dryWeightList:[],
361 362
     };
362 363
   },
363 364
   props: {
@@ -594,6 +595,8 @@ export default {
594 595
           this.stockType = stockType;
595 596
           console.log("元单快乐222222", this.stockType);
596 597
 
598
+          this.dryWeightList = resp.data.dryWeightList
599
+
597 600
           this.$refs.prescription.setLastRecord(
598 601
             schedual,
599 602
             lastAssessmentAfterDislysis,

+ 1 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_thirteen.vue Целия файл

@@ -57,7 +57,7 @@
57 57
58 58
                     </div>
59 59
                     <div class="inline_block" style="margin-right:5px;">
60
-                        机器编
60
+                        床位
61 61
                         <div class="inline_block under_line" style="width:80px;">
62 62
                           {{ record.device_zone.name && record.device_number.number ? getNewNumber(record.device_zone.name,record.device_number.number) : '' }}
63 63
                         <!-- {{ record.device_zone.name && record.device_number.number ? record.device_zone.name + record.device_number.number : '' }} -->

+ 16 - 4
src/xt_pages/dialysis/batch_print/batch_print_order_twentyEight.vue Целия файл

@@ -743,8 +743,8 @@
743 743
                       <table class="table-box">
744 744
                         <tbody>
745 745
                           <tr>
746
-                            <td width="70">穿刺方式:</td>
747
-                            <td width="220">
746
+                            <td width="80">穿刺方式:</td>
747
+                            <td width="250">
748 748
                               <div>
749 749
                                 <label-box
750 750
                                   showValue="绳梯"
@@ -782,9 +782,21 @@
782 782
                               </div>
783 783
                             </td>
784 784
                             <td width="60"></td>
785
-                            <td width="60">穿刺针:</td>
786
-                            <td width="200">
785
+                            <td width="70">穿刺针:</td>
786
+                            <td width="290">
787 787
                               <div>
788
+                                <label-box
789
+                                  :isChecked="
790
+                                    record.assessment_before_dislysis
791
+                                      .puncture_needle &&
792
+                                    record.assessment_before_dislysis.puncture_needle.indexOf(
793
+                                      '15G'
794
+                                    ) > -1
795
+                                      ? true
796
+                                      : false
797
+                                  "
798
+                                  showValue="15G"
799
+                                ></label-box>
788 800
                                 &nbsp;
789 801
                                 <label-box
790 802
                                   :isChecked="

+ 15 - 0
src/xt_pages/dialysis/details/NavIgation.vue Целия файл

@@ -122,6 +122,8 @@
122 122
       :dry_weight="last_dryWeight_dislysis"
123 123
       :lastAssessment="lastAssessment"
124 124
        :prescription="prescription"
125
+       :dryWeightList="dryWeightList"
126
+       :docList="docList"
125 127
     ></assessment-before-dislysis-dialog>
126 128
 
127 129
     <treatment-summary-dialog
@@ -185,6 +187,7 @@
185 187
       :prescription="prescription"
186 188
       :predialysis_evaluation="predialysis_evaluation"
187 189
       :dialysis_order="dialysis_order"
190
+    
188 191
     ></assessment-after-dislysis>
189 192
   </div>
190 193
 </template>
@@ -565,6 +568,18 @@ export default {
565 568
         return { id: 0 };
566 569
       }
567 570
     },
571
+    dryWeightList:{
572
+      type:Array,
573
+      default:()=>{
574
+        return [];
575
+      } 
576
+    },
577
+    docList:{
578
+      type:Array,
579
+      default:()=>{
580
+        return [];
581
+      } 
582
+    }
568 583
   },
569 584
   methods: {
570 585
     getUnReadNum: function() {

+ 53 - 4
src/xt_pages/dialysis/details/consumable/dialysisDrug.vue Целия файл

@@ -192,7 +192,7 @@
192 192
   import { GetAllZone,getDialysisAdviceTemplateList,getDialysisAdviceSchedudeList } from '@/api/dialysis'
193 193
 
194 194
   import { uParseTime } from "@/utils/tools";
195
-
195
+  const moment = require('moment')
196 196
   export default {
197 197
     components: {
198 198
       
@@ -661,13 +661,62 @@
661 661
             }
662 662
           }
663 663
         }
664
-        if(newArr!=null && newArr.length > 0){
665
-          for(let i=0;i<newArr.length;i++){
666
-            his_str += newArr[i].advice_name +' '+newArr[i].advice_desc  +newArr[i].drug_spec_unit +' ' +newArr[i].prescribing_number  +newArr[i].prescribing_number_unit + "。"
664
+
665
+        if(this.$store.getters.xt_user.org_id == 10469 || this.$store.getters.xt_user.org_id == 0){
666
+            var newArrList = []
667
+            var total_day = ""
668
+            if(moment().weekday() == 1){
669
+              total_day ="周一"
670
+            }
671
+            if(moment().weekday() == 2){
672
+              total_day ="周二"
673
+            }
674
+            if(moment().weekday() == 3){
675
+              total_day ="周三"
676
+            }
677
+            if(moment().weekday() == 4){
678
+              total_day ="周四"
679
+            }
680
+            if(moment().weekday() == 5){
681
+              total_day ="周五"
682
+            }
683
+            if(moment().weekday() == 6){
684
+              total_day ="周六"
685
+            }
686
+            if(moment().weekday() == 7){
687
+              total_day ="周日"
688
+            }
689
+          if(newArr!=null && newArr.length >0){
690
+            for(let i=0;i<newArr.length;i++){
691
+              if((newArr[i].frequency_type == 1) || (newArr[i].frequency_type == 3 && newArr[i].week_day.indexOf(total_day)!=-1)){
692
+                console.log("药品名称",newArr[i].advice_name)
693
+                 newArrList.push(newArr[i])
694
+              }
695
+              newArrList = this.unique(newArrList)
696
+              
697
+            }
698
+            if(newArrList!=null && newArrList.length > 0){
699
+              for(let i=0;i<newArrList.length;i++){
700
+                his_str += newArrList[i].advice_name +' '+newArrList[i].advice_desc  +newArrList[i].drug_spec_unit +' ' +newArrList[i].prescribing_number  +newArrList[i].prescribing_number_unit + "。"
701
+              }
702
+            }
667 703
           }
668 704
         }
705
+        if(this.$store.getters.xt_user.org_id != 10469 && this.$store.getters.xt_user.org_id != 0){
706
+         
707
+          if(newArr!=null && newArr.length > 0){
708
+            for(let i=0;i<newArr.length;i++){
709
+              his_str += newArr[i].advice_name +' '+newArr[i].advice_desc  +newArr[i].drug_spec_unit +' ' +newArr[i].prescribing_number  +newArr[i].prescribing_number_unit + "。"
710
+            }
711
+          }
712
+        }
713
+      
669 714
         return his_str
670 715
       },
716
+      unique (arr) {
717
+        const res = new Map()
718
+        return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
719
+      },
671 720
       getHisAdviceContent(patient_id){
672 721
         var arr = []
673 722
         for(let i=0;i<this.templateList.length;i++){

+ 53 - 4
src/xt_pages/dialysis/details/consumable/dialysisDrugPrint.vue Целия файл

@@ -57,6 +57,7 @@
57 57
 </template>
58 58
 
59 59
 <script>
60
+ const moment = require('moment')
60 61
  import { getDialysisAdviceTemplateList } from '@/api/dialysis'
61 62
   import { parseTime } from '@/utils'
62 63
   import { uParseTime } from '@/utils/tools'
@@ -195,11 +196,56 @@
195 196
             }
196 197
           }
197 198
         }
198
-        if(newArr!=null && newArr.length > 0){
199
-          for(let i=0;i<newArr.length;i++){
200
-            his_str += newArr[i].advice_name +' '+newArr[i].advice_desc + newArr[i].drug_spec_unit +' ' +newArr[i].prescribing_number  +newArr[i].prescribing_number_unit + "。"
199
+
200
+        if(this.$store.getters.xt_user.org_id == 10469 || this.$store.getters.xt_user.org_id == 0){
201
+            var newArrList = []
202
+            var total_day = ""
203
+            if(moment().weekday() == 1){
204
+              total_day ="周一"
205
+            }
206
+            if(moment().weekday() == 2){
207
+              total_day ="周二"
208
+            }
209
+            if(moment().weekday() == 3){
210
+              total_day ="周三"
211
+            }
212
+            if(moment().weekday() == 4){
213
+              total_day ="周四"
214
+            }
215
+            if(moment().weekday() == 5){
216
+              total_day ="周五"
217
+            }
218
+            if(moment().weekday() == 6){
219
+              total_day ="周六"
220
+            }
221
+            if(moment().weekday() == 7){
222
+              total_day ="周日"
223
+            }
224
+          if(newArr!=null && newArr.length >0){
225
+            for(let i=0;i<newArr.length;i++){
226
+              if((newArr[i].frequency_type == 1) || (newArr[i].frequency_type == 3 && newArr[i].week_day.indexOf(total_day)!=-1)){
227
+                
228
+                 newArrList.push(newArr[i])
229
+              }
230
+              newArrList = this.unique(newArrList)
231
+              
232
+            }
233
+            if(newArrList!=null && newArrList.length > 0){
234
+              for(let i=0;i<newArrList.length;i++){
235
+                his_str += newArrList[i].advice_name +' '+newArrList[i].advice_desc  +newArrList[i].drug_spec_unit +' ' +newArrList[i].prescribing_number  +newArrList[i].prescribing_number_unit + "。"
236
+              }
237
+            }
238
+          }
239
+        }
240
+        if(this.$store.getters.xt_user.org_id != 10469 && this.$store.getters.xt_user.org_id != 0){
241
+         
242
+          if(newArr!=null && newArr.length > 0){
243
+            for(let i=0;i<newArr.length;i++){
244
+              his_str += newArr[i].advice_name +' '+newArr[i].advice_desc  +newArr[i].drug_spec_unit +' ' +newArr[i].prescribing_number  +newArr[i].prescribing_number_unit + "。"
245
+            }
201 246
           }
202 247
         }
248
+      
203 249
         return his_str
204 250
       },
205 251
       getHisAdviceContent(patient_id){
@@ -217,7 +263,10 @@
217 263
         }
218 264
         return str 
219 265
       },
220
-    
266
+      unique (arr) {
267
+        const res = new Map()
268
+        return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1))
269
+      },
221 270
     }
222 271
   }
223 272
 </script>

+ 6 - 0
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue Целия файл

@@ -1304,6 +1304,12 @@
1304 1304
                 return false
1305 1305
               }
1306 1306
 
1307
+              if(msg == 6){
1308
+                this.$message.error("执行失败,请重新执行")
1309
+                this.execTimeDialogVisible = false
1310
+                return false
1311
+              }
1312
+
1307 1313
             }
1308 1314
           })
1309 1315
           .catch(() => {

+ 51 - 23
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue Целия файл

@@ -711,33 +711,31 @@
711 711
         </el-form-item>
712 712
       </el-form>
713 713
       <!-- 六次干体重调整记录 -->
714
-      <!-- <div  style="margin: 10px 50px;"><span style="font-weight: bold;">近六次干体重调整记录</span></div>
714
+      <div  style="margin: 10px 50px;"><span style="font-weight: bold;">近六次干体重调整记录</span></div>
715 715
       <div class="gantizhong">
716
-        <el-table
717
-          :data="tableData"
718
-          stripe
719
-          style="width: 100%">
720
-          <el-table-column
721
-            prop=""
722
-            label="时间"
723
-            width="180">
716
+        <el-table :data="dryWeightList" stripe style="width: 100%">
717
+          <el-table-column prop="" label="时间"  width="180">
718
+            <template slot-scope="scope">
719
+                {{ getTime(scope.row.ctime) }}
720
+            </template>
724 721
           </el-table-column>
725
-          <el-table-column
726
-            prop=""
727
-            label="干体重"
728
-            width="180">
722
+          <el-table-column prop="" label="干体重" width="180">
723
+            <template slot-scope="scope">
724
+              {{scope.row.dry_weight }}
725
+            </template>
729 726
           </el-table-column>
730
-          <el-table-column
731
-            prop=""
732
-            label="医生"
733
-            width="180">
727
+          <el-table-column  prop=""  label="医生"  width="180">
728
+            <template slot-scope="scope">
729
+              {{getUserName(scope.row.creator) }}
730
+            </template>
734 731
           </el-table-column>
735
-          <el-table-column
736
-            prop=""
737
-            label="备注">
732
+          <el-table-column prop="" label="备注">
733
+            <template slot-scope="scope">
734
+              {{scope.row.remakes }}
735
+            </template>
738 736
           </el-table-column>
739 737
         </el-table>
740
-      </div> -->
738
+      </div>
741 739
       <div slot="footer" class="dialog-footer">
742 740
         <el-button @click="cancleDryWeight()">取 消</el-button>
743 741
         <el-button type="primary" @click="submitDryWeight()">保 存</el-button>
@@ -895,6 +893,7 @@
895 893
         thrombuShow:false,
896 894
         body_weight_before:"",
897 895
         point_punctures:[],
896
+       
898 897
       }
899 898
     },
900 899
     props: {
@@ -931,6 +930,18 @@
931 930
           return { id: 0 }
932 931
         }
933 932
       },
933
+      dryWeightList:{
934
+        type:Array,
935
+        default:()=>{
936
+          return [];
937
+        } 
938
+       },
939
+      docList:{
940
+        type:Array,
941
+        default:()=>{
942
+          return [];
943
+        } 
944
+       }
934 945
 
935 946
     },
936 947
     methods: {
@@ -987,6 +998,8 @@
987 998
       },
988 999
 
989 1000
       show(assessment, lastDryWeightDislysis,last_predialysis_evaluation) {
1001
+        console.log("dryWeightList",this.dryWeightList)
1002
+        console.log("doclist",this.docList)
990 1003
         let filedList = store.getters.xt_user.fileds;
991 1004
         console.log(filedList,'filedList')
992 1005
         this.lastPredialysisEvaluation = last_predialysis_evaluation
@@ -1531,12 +1544,27 @@
1531 1544
         if(val == 2){
1532 1545
          this.thrombuShow = false
1533 1546
         }
1534
-      }
1547
+      },
1535 1548
 
1549
+      getTime(value, temp) {
1550
+        if (value != undefined) {
1551
+          return uParseTime(value, temp)
1552
+        }
1553
+        return ''
1554
+      },
1555
+      getUserName(admin_user_id){
1556
+        var user_name = ""
1557
+        for(let i=0;i<this.docList.length;i++){
1558
+          if(admin_user_id == this.docList[i].admin_user_id){
1559
+            user_name = this.docList[i].user_name
1560
+          }
1561
+        }
1562
+        return user_name
1563
+      }
1536 1564
       
1537 1565
     },
1538 1566
     created() {
1539
-  
1567
+      
1540 1568
       this.last_dialysis_after = getDataConfig('hemodialysis', 'last_dialysis_after')
1541 1569
       this.dialysis_interphase = getDataConfig('hemodialysis', 'dialysis_duration')
1542 1570
       this.symptom_before_dialysis = getDataConfig('hemodialysis', 'dialysis_before')

+ 2 - 2
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Целия файл

@@ -2597,8 +2597,8 @@ mu
2597 2597
         if(moment().weekday() == 6){
2598 2598
            total_day ="周六"
2599 2599
         }
2600
-        if(moment().weekday() == 6){
2601
-           total_day ="周"
2600
+        if(moment().weekday() == 7){
2601
+           total_day ="周"
2602 2602
         }
2603 2603
         console.log("---------",this.targetAdvices)
2604 2604
         if(this.targetAdvices!=null && this.targetAdvices.length >0){

+ 9 - 3
src/xt_pages/dialysis/details/index.vue Целия файл

@@ -623,6 +623,8 @@
623 623
         :stockType="stockType"
624 624
         :his_doctor_advices="his_doctor_advices"
625 625
         :lastOrder="lastOrder"
626
+        :dryWeightList="dryWeightList"
627
+        :docList="docList"
626 628
       >
627 629
       </nav-igation>
628 630
 
@@ -1049,6 +1051,8 @@ export default {
1049 1051
       printDate:'',
1050 1052
       assessmentAfterDislysis:{},
1051 1053
       lastOrder:{},
1054
+      dryWeightList:[],
1055
+      docList:[],
1052 1056
     }
1053 1057
   },
1054 1058
   created() {
@@ -1537,8 +1541,10 @@ export default {
1537 1541
 
1538 1542
           var stockType =  resp.data.stockType
1539 1543
           this.stockType = stockType
1540
-
1541
-
1544
+          
1545
+          this.dryWeightList = resp.data.dryWeightList
1546
+          this.docList = resp.data.docList
1547
+          console.log("doclist-----",this.docList)
1542 1548
           var prepare = resp.data.prepare
1543 1549
           if(prepare!=null){
1544 1550
             this.preparestock = prepare
@@ -1605,7 +1611,7 @@ export default {
1605 1611
     printOrder() {
1606 1612
       var xtdate = parseTime(this.date, '{y}-{m}-{d}')
1607 1613
       this.$router.push(
1608
-        '/dialysis/print?xtdate=' + xtdate + '&xtno=' + this.patient.dialysis_no
1614
+        '/dialysis/print?xtdate=' + xtdate + '&xtno=' + this.patient.dialysis_no +"&patient_id="+this.patient.id
1609 1615
       )
1610 1616
     },
1611 1617
     printOrderOne(){

+ 2 - 0
src/xt_pages/dialysis/dialysisPrintOrder.vue Целия файл

@@ -2861,6 +2861,7 @@ export default {
2861 2861
 
2862 2862
     const xtdate = this.$route.query && this.$route.query.xtdate;
2863 2863
     const xtno = this.$route.query && this.$route.query.xtno;
2864
+    const patient_id = this.$route.query && this.$route.query.patient_id;
2864 2865
     if (
2865 2866
       typeof xtdate === "string" &&
2866 2867
       xtdate.length > 0 &&
@@ -2869,6 +2870,7 @@ export default {
2869 2870
     ) {
2870 2871
       this.queryParams.xtdate = xtdate;
2871 2872
       this.queryParams.xtno = xtno;
2873
+      this.queryParams.patient_id = patient_id
2872 2874
       this.getDialysisRecord();
2873 2875
     } else {
2874 2876
       this.$message.error("参数不齐");

+ 3 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Целия файл

@@ -3053,6 +3053,7 @@ export default {
3053 3053
       queryParams: {
3054 3054
         xtdate: "",
3055 3055
         xtno: "",
3056
+        patient_id:""
3056 3057
       },
3057 3058
       patientInfo: {
3058 3059
         birth: "",
@@ -3744,7 +3745,7 @@ export default {
3744 3745
         for (let index = 0; index < this.doctor_advices.length; index++) {
3745 3746
           this.doctor_advices[index]["isShow"] = 2;
3746 3747
         }
3747
-       console.log("total--------------------------",this.doctor_advices)
3748
+    
3748 3749
         // if (this.doctor_advices.length > 0) {
3749 3750
         //   var group = this.newAdviceGroupObject()
3750 3751
         //   var initGroupBlock = function(group, advice) {
@@ -3977,7 +3978,7 @@ export default {
3977 3978
       "vascular_access_desc"
3978 3979
     );
3979 3980
     this.org_id = this.$store.getters.xt_user.org.id;
3980
-    console.log("org_id-----------------------------------------",this.org_id)
3981
+   
3981 3982
     // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
3982 3983
 
3983 3984
     var bloodAccessParOpera = getDataConfig(

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderThirteen.vue Целия файл

@@ -47,7 +47,7 @@
47 47
48 48
           </div>
49 49
           <div class="inline_block" style="margin-right:5px;">
50
-              机器编
50
+              床位
51 51
               <div class="inline_block under_line" style="width:80px;">
52 52
               {{ getNumber() }}
53 53
               </div>

+ 3 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyEight.vue Целия файл

@@ -378,8 +378,10 @@
378 378
                   </td>
379 379
                   <td width='20'></td>
380 380
                   <td width="70">穿刺针:</td>
381
-                  <td width="260" style="text-align:left;">
381
+                  <td width="300" style="text-align:left;">
382 382
                     <div>
383
+                      <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('15G') > -1 ? true : false" showValue="15G"></label-box>
384
+                      &nbsp;
383 385
                       <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('16G') > -1 ? true : false" showValue="16G"></label-box>
384 386
                       &nbsp;
385 387
                       <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('17G') > -1 ? true : false" showValue="17G"></label-box>

+ 49 - 0
src/xt_pages/hospitalStation/components/deskPrescription.vue Целия файл

@@ -2430,6 +2430,7 @@ export default {
2430 2430
               if (num == 0) {
2431 2431
                   var arr = []//新增处方
2432 2432
                   var arr_one = []
2433
+                  var arr_Two = []
2433 2434
                 for(let i=0;i<this.prescriptions.length;i++){
2434 2435
                   if(this.prescriptions[i].id == 0){
2435 2436
 
@@ -2440,6 +2441,7 @@ export default {
2440 2441
                     if(arr.length > 0){
2441 2442
                       let objInfo = {};
2442 2443
                       arr.forEach((item, index) => {
2444
+                    
2443 2445
                       let { id } = item.id;
2444 2446
                       if (!objInfo[id]) {
2445 2447
                           objInfo[id] = {
@@ -2502,6 +2504,7 @@ export default {
2502 2504
                      if(arr_one.length > 0){
2503 2505
                       let objInfo = {};
2504 2506
                       arr_one.forEach((item, index) => {
2507
+                     
2505 2508
                       let { id } = item.id;
2506 2509
                       if (!objInfo[id]) {
2507 2510
                           objInfo[id] = {
@@ -2565,6 +2568,52 @@ export default {
2565 2568
                     }
2566 2569
                   }
2567 2570
 
2571
+                if(arr.length > 0){
2572
+                  for(let i =0;i<arr.length;i++){
2573
+                    if(arr[i].drug!=null){
2574
+                      if(arr[i].drug.is_user == 2){
2575
+                        if(arr[i].prescribing_number_unit != arr[i].drug.max_unit && arr[i].prescribing_number_unit!=arr[i].drug.min_unit){
2576
+                          this.$message.error(arr[i].drug.drug_name + " " +arr[i].drug.dose + arr[i].drug.dose_unit + "*" + arr[i].drug.min_number + arr[i].drug.min_unit+"/"+arr[i].drug.max_unit +" "+ "总量单位不匹配,保存失败!")
2577
+                          isLoading = false
2578
+                          this.$emit('editKeepLoad', false)
2579
+                          return
2580
+                        }
2581
+                      }
2582
+                    }
2583
+                  }
2584
+                }
2585
+
2586
+
2587
+                if(arr_one.length > 0){
2588
+                  for(let i =0;i<arr_one.length;i++){
2589
+                    if(arr_one[i].drug!=null){
2590
+                      if(arr_one[i].drug.is_user == 2){
2591
+                        if(arr_one[i].prescribing_number_unit != arr_one[i].drug.max_unit && arr_one[i].prescribing_number_unit!=arr_one[i].drug.min_unit){
2592
+                          this.$message.error(arr_one[i].drug.drug_name + " " +arr_one[i].drug.dose + arr_one[i].drug.dose_unit + "*" + arr_one[i].drug.min_number + arr_one[i].drug.min_unit+"/"+arr_one[i].drug.max_unit +" "+ "总量单位不匹配,保存失败!")
2593
+                          isLoading = false
2594
+                          this.$emit('editKeepLoad', false)
2595
+                          return
2596
+                        }
2597
+                      }
2598
+                    }
2599
+                  }
2600
+                }
2601
+
2602
+                if(arr_Two.length > 0){
2603
+                  for(let i =0;i<arr_Two.length;i++){
2604
+                    if(arr_Two[i].drug!=null){
2605
+                      if(arr_Two[i].drug.is_user == 2){
2606
+                        if(arr_Two[i].prescribing_number_unit != arr_Two[i].drug.max_unit && arr_Two[i].prescribing_number_unit!=arr_Two[i].drug.min_unit){
2607
+                          this.$message.error(arr_Two[i].drug.drug_name + " " +arr_Two[i].drug.dose + arr_Two[i].drug.dose_unit + "*" + arr_Two[i].drug.min_number + arr_Two[i].drug.min_unit+"/"+arr_Two[i].drug.max_unit +" "+ "总量单位不匹配,保存失败!")
2608
+                          isLoading = false
2609
+                          this.$emit('editKeepLoad', false)
2610
+                          return
2611
+                        }
2612
+                      }
2613
+                    }
2614
+                  }
2615
+                }
2616
+
2568 2617
 
2569 2618
               if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 9679){
2570 2619
                   var project_arr = []

+ 4 - 0
src/xt_pages/management/components/UserForm.vue Целия файл

@@ -948,6 +948,10 @@
948 948
                 <td style="text-align:center;font-size:15px;height:30px">
949 949
                   {{ item.disinfectant }}
950 950
                 </td>
951
+                <td style="text-align:center;font-size:15px;height:30px">
952
+                  {{ getTimesTwo(item.disinfec_startime) }}
953
+                </td>
954
+               
951 955
                 <td style="text-align:center;font-size:15px;height:30px">
952 956
                   {{ item.long_time }}
953 957
                 </td>

+ 2 - 7
src/xt_pages/outpatientCharges/components/registerDialog.vue Целия файл

@@ -262,7 +262,7 @@
262 262
           cost: '',
263 263
           phone: '',
264 264
           social_type: ''
265
-        }, 
265
+        },
266 266
         IDCardTypes: [{
267 267
           value: 1,
268 268
           label: '社保卡'
@@ -739,10 +739,8 @@
739 739
       hide: function () {
740 740
         this.visibility = false
741 741
         this.$refs['formValue'].resetFields()
742
-      },
743
-       cancel: function(formName) {
742
+      }, cancel: function(formName) {
744 743
         this.$emit('cancel', this.getValue())
745
-        this.visibility=false
746 744
         this.$refs['formValue'].resetFields()
747 745
       },
748 746
       confirm: function(formName) {
@@ -751,9 +749,6 @@
751 749
             let value = {}
752 750
             value = this.getValue()
753 751
             this.$emit('confirm', value)
754
-            this.visibility=false
755
-            this.$refs['formValue'].resetFields()
756
-            this.$parent.loadingone=false
757 752
           }
758 753
         })
759 754
       },

+ 61 - 36
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Целия файл

@@ -125,12 +125,12 @@
125 125
 
126 126
 
127 127
 
128
-            <el-button  size="small"  v-if="org_id == 10138 || org_id == 10278"
128
+            <el-button  size="small"  v-if="(org_id == 10138 && this.order.is_upload_diagnose == 0 && this.order.order_status == 2) || (org_id == 10278 && this.order.is_upload_diagnose == 0 && this.order.order_status == 2)"
129 129
                        @click="openZF(1)"
130 130
                        type="primary">自费门诊就医上传(4205)
131 131
             </el-button>
132 132
 
133
-            <el-button  size="small" v-if="org_id == 10138  || org_id == 10278"
133
+            <el-button  size="small" v-if="(org_id == 10138  && this.order.is_upload_success == 0 && this.order.order_status == 2) || (org_id == 10278  && this.order.is_upload_success == 0 && this.order.order_status == 2) "
134 134
                         @click="openZF(2)"
135 135
                         type="primary">自费上传确认(4203)
136 136
             </el-button>
@@ -857,6 +857,19 @@
857 857
         </div>
858 858
       </div>
859 859
     </div>
860
+    <el-dialog
861
+      title="发票号码"
862
+      :visible.sync="fapiaoCodeDialogVisible"
863
+      width="30%"
864
+    >
865
+      <el-input placeholder="请输入发票号码" v-model="fapiao_code"></el-input>
866
+
867
+      <span slot="footer" class="dialog-footer">
868
+                <el-button @click="fapiaoCodeDialogVisible = false">取 消</el-button>
869
+                <el-button type="primary" @click="comfirmFaPiaoCode">确 定</el-button>
870
+             </span>
871
+    </el-dialog>
872
+
860 873
     <el-dialog
861 874
         title="提示"
862 875
         :visible.sync="dialogVisible"
@@ -1008,6 +1021,8 @@ export default {
1008 1021
   },
1009 1022
   data() {
1010 1023
     return {
1024
+      fapiaoCodeDialogVisible:false,
1025
+      fapiao_code:"",
1011 1026
       monthChargePatientTableData: [],
1012 1027
       invoiceVisible: false,
1013 1028
       invoiceParams: null,
@@ -1221,6 +1236,45 @@ export default {
1221 1236
     this.getPatientList()
1222 1237
   },
1223 1238
   methods: {
1239
+    comfirmFaPiaoCode(){
1240
+      var  that = this
1241
+      let params = {
1242
+        'order_id': this.order.id,
1243
+        'admin_user_id': this.$store.getters.xt_user.user.id,
1244
+        'fapiao_code':this.fapiao_code,
1245
+      }
1246
+      axios.get('http://127.0.0.1:9532/api/4205', {
1247
+        params: params
1248
+      }).then(function(response) {
1249
+        if (response.data.state == 0) {
1250
+          that.$message.error(response.data.msg)
1251
+          that.fapiaoCodeDialogVisible = false
1252
+          return false
1253
+        } else {
1254
+          that.fapiaoCodeDialogVisible = false
1255
+          if (response.data.data.failed_code == -10) {
1256
+            that.$confirm(response.data.data.msg, '医保错误信息', {
1257
+              confirmButtonText: '确 定',
1258
+              type: 'warning'
1259
+            }).then(() => {
1260
+
1261
+            }).catch(() => {
1262
+
1263
+            })
1264
+
1265
+          } else {
1266
+            that.$message({ message: '上传成功', type: 'success', duration: 5000 })
1267
+            that.order.is_upload_diagnose = 1
1268
+          }
1269
+
1270
+        }
1271
+      })
1272
+        .catch(function(error) {
1273
+
1274
+        })
1275
+
1276
+
1277
+    },
1224 1278
     fetchAllAdminUsers() {
1225 1279
       fetchAllAdminUsers().then(response => {
1226 1280
         if (response.data.state == 1) {
@@ -1691,15 +1745,9 @@ export default {
1691 1745
       }
1692 1746
     },
1693 1747
     confirm(forms) {
1694
-      var time = Math.round(new Date().getTime() / 1000).toString()
1695
-      var param = '_api_access_key=' + '1781ce9fb73a478289326c16ba8bf2c4' + '&_api_name=' + 'hssServives' + '&_api_timestamp=' + time + '&_api_version=' + '1.0.0'
1696
-      var signature = cryptoJs.enc.Base64.stringify(cryptoJs.HmacSHA1(param, '+b5DPOGjc08DAAMJ8FP31pwwNHKo='))
1697
-      console.log(Math.round(new Date().getTime() / 1000).toString())
1698 1748
       forms['record_time'] = this.record_date
1699 1749
       forms['admin_user_id'] = this.$store.getters.xt_user.user.id
1700 1750
       forms['org_id'] = this.$store.getters.xt_user.org_id
1701
-      forms['key'] = signature
1702
-      forms['time_stamp'] = time
1703 1751
       this.loadingone = true
1704 1752
       var that = this
1705 1753
       if (forms.settlement_value == 2) {
@@ -3030,6 +3078,8 @@ export default {
3030 3078
 
3031 3079
       }
3032 3080
     },openZF(index){
3081
+
3082
+
3033 3083
       var  that = this
3034 3084
       let params = {
3035 3085
         'order_id': this.order.id,
@@ -3038,33 +3088,7 @@ export default {
3038 3088
       }
3039 3089
       switch (index){
3040 3090
         case 1:
3041
-          axios.get('http://127.0.0.1:9532/api/4205', {
3042
-            params: params
3043
-          }).then(function(response) {
3044
-            if (response.data.state == 0) {
3045
-              that.$message.error(response.data.msg)
3046
-
3047
-              return false
3048
-            } else {
3049
-              if (response.data.data.failed_code == -10) {
3050
-                that.$confirm(response.data.data.msg, '医保错误信息', {
3051
-                  confirmButtonText: '确 定',
3052
-                  type: 'warning'
3053
-                }).then(() => {
3054
-
3055
-                }).catch(() => {
3056
-                })
3057
-
3058
-              } else {
3059
-                that.$message({ message: '上传成功', type: 'success', duration: 5000 })
3060
-
3061
-              }
3062
-
3063
-            }
3064
-          })
3065
-            .catch(function(error) {
3066
-
3067
-            })
3091
+          this.fapiaoCodeDialogVisible = true
3068 3092
           break
3069 3093
         case 2:
3070 3094
 
@@ -3087,7 +3111,8 @@ export default {
3087 3111
 
3088 3112
               } else {
3089 3113
                 that.$message({ message: '确认成功', type: 'success', duration: 5000 })
3090
-
3114
+                // that.changeRadioAndPatient(2)
3115
+                that.order.is_upload_success = 1
3091 3116
               }
3092 3117
 
3093 3118
             }

+ 348 - 348
src/xt_pages/outpatientCharges/statementTemplate/printTen.vue Целия файл

@@ -1,378 +1,378 @@
1 1
 <template>
2
-    <div  id="statement-print" class="statement-print"
3
-         style="position: relative;">
4
-      <div class="print-content">
5
-        <div class="print-title">
6
-          <h1 style="text-align: center;">江西省医疗保障定点机构医疗费用结算单</h1>
7
-        </div>
2
+  <div  id="statement-print" class="statement-print"
3
+       style="position: relative;">
4
+    <div class="print-content">
5
+      <div class="print-title">
6
+        <h1 style="text-align: center;">江西省医疗保障定点机构医疗费用结算单</h1>
7
+      </div>
8 8
 
9
-        <div class="print-tab" style="margin: 0px auto; text-align: center;">
10
-          <div class="hospital" style="margin:0px 112px ;width: 70%;">
11
-            <!-- style="display: inline-block;margin: 10px 80px 10px 0px ;" -->
12
-            <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
13
-                          <span>医疗机构名称:</span>
14
-                          <span>{{info.fixmedins_name}}</span>
15
-                      </span>
16
-            <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
17
-                          <span>医疗机构编码:</span>
18
-                          <span>{{info.fixmedins_code}}</span>
19
-                      </span>
20
-            <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
21
-                          <span>医院等级:</span>
22
-                          <span  v-if="info.hosp_lv == '1'">三级特等</span>
23
-                          <span  v-else-if="info.hosp_lv == '2'">三级甲等</span>
24
-                          <span v-else-if="info.hosp_lv == '3'">三级乙等</span>
25
-                          <span v-else-if="info.hosp_lv == '4'">三级丙等</span>
26
-                          <span v-else-if="info.hosp_lv == '5'">二级甲等</span>
27
-                          <span v-else-if="info.hosp_lv == '6'">二级乙等</span>
28
-                          <span v-else-if="info.hosp_lv == '7'">二级丙等</span>
29
-                          <span  v-else-if="info.hosp_lv == '8'">一级甲等</span>
30
-                          <span v-else-if="info.hosp_lv == '9'">一级乙等</span>
31
-                          <span v-else-if="info.hosp_lv == '10'">一级丙等</span>
32
-                          <span  v-else-if="info.hosp_lv == '11'">无等级</span>
33
-                          <span  v-else></span>
34
-            </span>
35
-          </div>
36
-          <table class="jiesuan" style="border-collapse: collapse;margin: auto;">
37
-            <tr>
38
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">姓名</td>
39
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.psn_name}}</td>
40
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">性别</td>
41
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.gend == '1'">男</td>
42
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.gend == '2'">女</td>
43
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else></td>
44
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">人员类别</td>
45
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.psn_type == '11'">在职</td>
46
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1101'">职工在职</td>
47
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1102'">公务员在职</td>
48
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1103'">灵活就业人员在职</td>
49
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1160'">地方其他扩展人员</td>
50
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '12'">退休人员</td>
51
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1201'">职工退休</td>
52
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1202'">公务员退休</td>
53
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1203'">灵活就业人员退休</td>
54
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1260'">地方其他扩展人员</td>
55
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '13'">离休</td>
56
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1300'">离休人员</td>
57
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1360'">地方其他扩展人员</td>
58
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '14'">居民(未成年)</td>
59
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1401'">新生儿</td>
60
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1402'">学龄前儿童</td>
61
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1403'">中小学生</td>
62
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1404'">大学生</td>
63
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1405'">未成年(未入学)</td>
64
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '15'">居民(成年)</td>
65
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1501'">普通居民(成年)</td>
66
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1560'">地方其他扩展身份</td>
67
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '16'">居民(老年)</td>
68
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else></td>
69
-            </tr>
70
-            <tr>
71
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">身份证号码</td>
72
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.certno}}</td>
73
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">参保险种</td>
74
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '310'">职工基本医疗保险</td>
75
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '320'">公务员医疗补助</td>
76
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '330'">大额医疗费用补助</td>
77
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '340'">离休人员医疗保障</td>
78
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '390'">城乡居民基本医疗保险</td>
79
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '392'">城乡居民大病医疗保险</td>
80
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '510'">生育保险</td>
81
-
82
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">医疗类别</td>
83
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '11'">普通门诊</td>
84
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '12'">门诊挂号</td>
85
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '13'">急诊</td>
86
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '14'">门诊特殊病</td>
87
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '15'">门诊统筹</td>
88
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '16'">门诊慢性病</td>
89
-              <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '21'">普通住院</td>
90
-
91
-            </tr>
92
-            <tr>
93
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">结算ID</td>
94
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.setl_id}}</td>
95
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">住院号</td>
96
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.number}}</td>
97
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">住院天数</td>
98
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{getDay(info.begndate,info.enddate)}}</td>
99
-            </tr>
100
-            <tr>
101
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">科室</td>
102
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{'血透'}}</td>
103
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">床号</td>
104
-              <td style="border: 1px solid gray;width: 150px;height: 30px;"></td>
105
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">参保区划</td>
106
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.insu_optins}}</td>
107
-            </tr>
108
-            <tr>
109
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">入院日期</td>
110
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.begndate ? info.begndate.split(' ')[0] : ''}}</td>
111
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">出院日期</td>
112
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.enddate ? info.enddate.split(' ')[0] : ''}}</td>
113
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">结算日期</td>
114
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</td>
115
-            </tr>
116
-            <tr>
117
-              <td colspan="6" style="border: 1px solid gray;width: 150px;height: 30px;"> 费用分类情况</td>
118
-            </tr>
119
-            <tr>
120
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">项目名称</td>
121
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">总金额</td>
122
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">符合行政范围</td>
123
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">先行自付</td>
124
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">超限价</td>
125
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">自费</td>
126
-            </tr>
127
-            <tr v-if="info.bed_cost_total > 0">
128
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">床位费</td>
129
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_total}}</td>
130
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bedInscpTotal}}</td>
131
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_part_self_total}}</td>
132
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_self_total}}</td>
133
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bedSelfTotal}}</td>
134
-
135
-            </tr>
136
-
137
-            <tr v-if="info.operation_cost_total > 0">
138
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">手术费</td>
139
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_total}}</td>
140
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operationInscpTotal}}</td>
141
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_part_self_total}}</td>
142
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_self_total}}</td>
143
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operationSelfTotal}}</td>
144
-
145
-            </tr>
146
-
147
-            <tr v-if="info.check_cost_total > 0">
148
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">检查费</td>
149
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_total}}</td>
150
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.checkInscpTotal}}</td>
151
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_part_self_total}}</td>
152
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_self_total}}</td>
153
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.checkSelfTotal}}</td>
154
-
155
-            </tr>
156
-
157
-            <tr v-if="info.treat_cost_total > 0">
158
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">治疗费</td>
159
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_total}}</td>
160
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treatInscpTotal}}</td>
161
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_part_self_total}}</td>
162
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_self_total}}</td>
163
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treatSelfTotal}}</td>
164
-
165
-            </tr>
166
-
167
-            <tr v-if="info.treat_cost_total > 0">
168
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">化验费</td>
169
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_total}}</td>
170
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratoryInscpTotal}}</td>
171
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_part_self_total}}</td>
172
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_self_total}}</td>
173
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratorySelfTotal}}</td>
174
-
175
-            </tr>
176
-
177
-
178
-            <tr v-if="info.western_medicine_cost_total > 0">
179
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">西药费</td>
180
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_total}}</td>
181
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.westernMedicineInscpTotal}}</td>
182
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_part_self_total}}</td>
183
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_self_total}}</td>
184
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.westernMedicineSelfTotal}}</td>
185
-
186
-            </tr>
187
-
188
-            <tr v-if="info.material_cost_total > 0">
189
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">材料费</td>
190
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_total}}</td>
191
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.materialInscpTotal}}</td>
192
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_part_self_total}}</td>
193
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_self_total}}</td>
194
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.materialSelfTotal}}</td>
195
-
196
-            </tr>
197
-            <tr v-if="info.other_cost_total > 0">
198
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">其他费</td>
199
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_total}}</td>
200
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.otherInscpTotal}}</td>
201
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_part_self_total}}</td>
202
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_self_total}}</td>
203
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.otherSelfTotal}}</td>
204
-            </tr>
205
-
206
-            <tr v-if="info.chinese_traditional_medicine_cost_total > 0">
207
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">中成药</td>
208
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_total}}</td>
209
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chineseTraditionalInscpTotal}}</td>
210
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_part_self_total}}</td>
211
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_self_total}}</td>
212
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chineseTraditionalSelfTotal}}</td>
213
-            </tr>
214
-
215
-            <tr>
216
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">金额合计</td>
217
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_total) +
218
-                parseFloat(info.operation_cost_total) + parseFloat(info.other_cost_total) +
219
-                parseFloat(info.material_cost_total) + parseFloat(info.western_medicine_cost_total) +
220
-                parseFloat(info.chinese_traditional_medicine_cost_total) + parseFloat(info.check_cost_total) +
221
-                parseFloat(info.laboratory_cost_total) + parseFloat(info.treat_cost_total)).toFixed(2) }}
222
-              </td>
223
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bedInscpTotal) +
224
-                parseFloat(info.operationInscpTotal) + parseFloat(info.checkInscpTotal) +
225
-                parseFloat(info.treatInscpTotal) + parseFloat(info.laboratoryInscpTotal) +
226
-                parseFloat(info.westernMedicineInscpTotal) + parseFloat(info.materialInscpTotal) +
227
-                parseFloat(info.otherInscpTotal) + parseFloat(info.chineseTraditionalInscpTotal)).toFixed(2) }}
228
-              </td>
229
-
230
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_part_self_total) +
231
-                parseFloat(info.operation_cost_part_self_total) + parseFloat(info.other_cost_part_self_total) +
232
-                parseFloat(info.material_cost_part_self_total) + parseFloat(info.western_medicine_cost_part_self_total) +
233
-                parseFloat(info.chinese_traditional_medicine_cost_part_self_total) +
234
-                parseFloat(info.check_cost_part_self_total) + parseFloat(info.laboratory_cost_part_self_total) +
235
-                parseFloat(info.treat_cost_part_self_total)).toFixed(2)}}
236
-              </td>
237
-
238
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_self_total )+
239
-                parseFloat(info.operation_cost_self_total) + parseFloat(info.other_cost_self_total) +
240
-                parseFloat(info.material_cost_self_total) + parseFloat(info.western_medicine_cost_self_total) +
241
-                parseFloat(info.chinese_traditional_medicine_cost_self_total) + parseFloat(info.check_cost_self_total) +
242
-                parseFloat(info.laboratory_cost_self_total) + parseFloat(info.treat_cost_self_total)).toFixed(2)}}
243
-              </td>
244
-
245
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bedSelfTotal) +
246
-                parseFloat(info.operationSelfTotal) + parseFloat(info.checkSelfTotal) +
247
-                parseFloat(info.treatSelfTotal) + parseFloat(info.laboratorySelfTotal) +
248
-                parseFloat(info.westernMedicineSelfTotal) + parseFloat(info.materialSelfTotal) +
249
-                parseFloat(info.otherSelfTotal) + parseFloat(info.chineseTraditionalSelfTotal)).toFixed(2) }}
250
-              </td>
251
-
252
-            </tr>
253
-
254
-            <tr>
255
-              <td colspan="6" style="border: 1px solid gray;width: 150px;height: 30px;"> 费用结算情况</td>
256
-            </tr>
257
-            <tr>
258
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">费用总额</td>
259
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.medfee_sumamt}}</td>
260
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">统筹基金支付</td>
261
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.hifp_pay}}</td>
262
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">大病保险支付</td>
263
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.hifmi_pay}}</td>
264
-            </tr>
265
-            <tr>
266
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">医疗救助支付</td>
267
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.maf_pay}}</td>
268
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">公务员补充支付</td>
269
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.cvlserv_pay}}</td>
270
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">离休保健专项</td>
271
-              <td style="border: 1px solid gray;width: 150px;height: 30px;"></td>
272
-            </tr>
273
-            <tr>
274
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">个人账户支付</td>
275
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.acct_pay}}</td>
276
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">个人现金支付</td>
277
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.psn_cash_pay}}</td>
278
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">其他基金支付</td>
279
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.oth_pay}}</td>
280
-            </tr>
281
-            <tr>
282
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">起付线</td>
283
-              <td colspan="2" style="border: 1px solid gray;width: 150px;height: 30px;">{{info.act_pay_dedc}}</td>
284
-              <td style="border: 1px solid gray;width: 150px;height: 30px;">医院垫付金额</td>
285
-              <td colspan="2" style="border: 1px solid gray;width: 150px;height: 30px;">{{info.hosp_part_amt}}</td>
286
-            </tr>
287
-          </table>
288
-          <div style="width: 51%; margin: 5px 100px; text-align: center;">
289
-           <span style="display: inline-block;"> 备注:其它包含军转、财政、慈善、其他商报等支付来源</span>
290
-          </div>
9
+      <div class="print-tab" style="margin: 0px auto; text-align: center;">
10
+        <div class="hospital" style="margin:0px 112px ;width: 70%;">
11
+          <!-- style="display: inline-block;margin: 10px 80px 10px 0px ;" -->
12
+          <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
13
+                        <span>医疗机构名称:</span>
14
+                        <span>{{info.fixmedins_name}}</span>
15
+                    </span>
16
+          <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
17
+                        <span>医疗机构编码:</span>
18
+                        <span>{{info.fixmedins_code}}</span>
19
+                    </span>
20
+          <span class="yiliao" style="display: inline-block;margin: 10px 80px 10px 0px ;">
21
+                        <span>医院等级:</span>
22
+                        <span  v-if="info.hosp_lv == '1'">三级特等</span>
23
+                        <span  v-else-if="info.hosp_lv == '2'">三级甲等</span>
24
+                        <span v-else-if="info.hosp_lv == '3'">三级乙等</span>
25
+                        <span v-else-if="info.hosp_lv == '4'">三级丙等</span>
26
+                        <span v-else-if="info.hosp_lv == '5'">二级甲等</span>
27
+                        <span v-else-if="info.hosp_lv == '6'">二级乙等</span>
28
+                        <span v-else-if="info.hosp_lv == '7'">二级丙等</span>
29
+                        <span  v-else-if="info.hosp_lv == '8'">一级甲等</span>
30
+                        <span v-else-if="info.hosp_lv == '9'">一级乙等</span>
31
+                        <span v-else-if="info.hosp_lv == '10'">一级丙等</span>
32
+                        <span  v-else-if="info.hosp_lv == '11'">无等级</span>
33
+                        <span  v-else></span>
34
+          </span>
35
+        </div>
36
+        <table class="jiesuan" style="border-collapse: collapse;margin: auto;">
37
+          <tr>
38
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">姓名</td>
39
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.psn_name}}</td>
40
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">性别</td>
41
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.gend == '1'">男</td>
42
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.gend == '2'">女</td>
43
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else></td>
44
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">人员类别</td>
45
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.psn_type == '11'">在职</td>
46
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1101'">职工在职</td>
47
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1102'">公务员在职</td>
48
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1103'">灵活就业人员在职</td>
49
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1160'">地方其他扩展人员</td>
50
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '12'">退休人员</td>
51
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1201'">职工退休</td>
52
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1202'">公务员退休</td>
53
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1203'">灵活就业人员退休</td>
54
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1260'">地方其他扩展人员</td>
55
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '13'">离休</td>
56
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1300'">离休人员</td>
57
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1360'">地方其他扩展人员</td>
58
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '14'">居民(未成年)</td>
59
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1401'">新生儿</td>
60
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1402'">学龄前儿童</td>
61
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1403'">中小学生</td>
62
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1404'">大学生</td>
63
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1405'">未成年(未入学)</td>
64
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '15'">居民(成年)</td>
65
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1501'">普通居民(成年)</td>
66
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '1560'">地方其他扩展身份</td>
67
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else-if="info.psn_type == '16'">居民(老年)</td>
68
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-else></td>
69
+          </tr>
70
+          <tr>
71
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">身份证号码</td>
72
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.certno}}</td>
73
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">参保险种</td>
74
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '310'">职工基本医疗保险</td>
75
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '320'">公务员医疗补助</td>
76
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '330'">大额医疗费用补助</td>
77
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '340'">离休人员医疗保障</td>
78
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '390'">城乡居民基本医疗保险</td>
79
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '392'">城乡居民大病医疗保险</td>
80
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.insutype == '510'">生育保险</td>
81
+
82
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">医疗类别</td>
83
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '11'">普通门诊</td>
84
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '12'">门诊挂号</td>
85
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '13'">急诊</td>
86
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '14'">门诊特殊病</td>
87
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '15'">门诊统筹</td>
88
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '16'">门诊慢性病</td>
89
+            <td style="border: 1px solid gray;width: 150px;height: 30px;" v-if="info.med_type == '21'">普通住院</td>
90
+
91
+          </tr>
92
+          <tr>
93
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">结算ID</td>
94
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.setl_id}}</td>
95
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">住院号</td>
96
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.number}}</td>
97
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">住院天数</td>
98
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{getDay(info.begndate,info.enddate)}}</td>
99
+          </tr>
100
+          <tr>
101
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">科室</td>
102
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{'血透'}}</td>
103
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">床号</td>
104
+            <td style="border: 1px solid gray;width: 150px;height: 30px;"></td>
105
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">参保区划</td>
106
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.insu_optins}}</td>
107
+          </tr>
108
+          <tr>
109
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">入院日期</td>
110
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.begndate ? info.begndate.split(' ')[0] : ''}}</td>
111
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">出院日期</td>
112
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.enddate ? info.enddate.split(' ')[0] : ''}}</td>
113
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">结算日期</td>
114
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.setl_time ? info.setl_time.split(' ')[0] : ''}}</td>
115
+          </tr>
116
+          <tr>
117
+            <td colspan="6" style="border: 1px solid gray;width: 150px;height: 30px;"> 费用分类情况</td>
118
+          </tr>
119
+          <tr>
120
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">项目名称</td>
121
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">总金额</td>
122
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">符合政策范围</td>
123
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">先行自付</td>
124
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">超限价</td>
125
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">自费</td>
126
+          </tr>
127
+          <tr v-if="info.bed_cost_total > 0">
128
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">床位费</td>
129
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_total}}</td>
130
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bedInscpTotal}}</td>
131
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_part_self_total}}</td>
132
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bed_cost_self_total}}</td>
133
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.bedSelfTotal}}</td>
134
+
135
+          </tr>
136
+
137
+          <tr v-if="info.operation_cost_total > 0">
138
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">手术费</td>
139
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_total}}</td>
140
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operationInscpTotal}}</td>
141
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_part_self_total}}</td>
142
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operation_cost_self_total}}</td>
143
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.operationSelfTotal}}</td>
144
+
145
+          </tr>
146
+
147
+          <tr v-if="info.check_cost_total > 0">
148
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">检查费</td>
149
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_total}}</td>
150
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.checkInscpTotal}}</td>
151
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_part_self_total}}</td>
152
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.check_cost_self_total}}</td>
153
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.checkSelfTotal}}</td>
154
+
155
+          </tr>
156
+
157
+          <tr v-if="info.treat_cost_total > 0">
158
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">治疗费</td>
159
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_total}}</td>
160
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treatInscpTotal}}</td>
161
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_part_self_total}}</td>
162
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treat_cost_self_total}}</td>
163
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.treatSelfTotal}}</td>
164
+
165
+          </tr>
166
+
167
+          <tr v-if="info.treat_cost_total > 0">
168
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">化验费</td>
169
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_total}}</td>
170
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratoryInscpTotal}}</td>
171
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_part_self_total}}</td>
172
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratory_cost_self_total}}</td>
173
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.laboratorySelfTotal}}</td>
174
+
175
+          </tr>
176
+
177
+
178
+          <tr v-if="info.western_medicine_cost_total > 0">
179
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">西药费</td>
180
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_total}}</td>
181
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.westernMedicineInscpTotal}}</td>
182
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_part_self_total}}</td>
183
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.western_medicine_cost_self_total}}</td>
184
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.westernMedicineSelfTotal}}</td>
185
+
186
+          </tr>
187
+
188
+          <tr v-if="info.material_cost_total > 0">
189
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">材料费</td>
190
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_total}}</td>
191
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.materialInscpTotal}}</td>
192
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_part_self_total}}</td>
193
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.material_cost_self_total}}</td>
194
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.materialSelfTotal}}</td>
195
+
196
+          </tr>
197
+          <tr v-if="info.other_cost_total > 0">
198
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">其他费</td>
199
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_total}}</td>
200
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.otherInscpTotal}}</td>
201
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_part_self_total}}</td>
202
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.other_cost_self_total}}</td>
203
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.otherSelfTotal}}</td>
204
+          </tr>
205
+
206
+          <tr v-if="info.chinese_traditional_medicine_cost_total > 0">
207
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">中成药</td>
208
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_total}}</td>
209
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chineseTraditionalInscpTotal}}</td>
210
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_part_self_total}}</td>
211
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chinese_traditional_medicine_cost_self_total}}</td>
212
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.chineseTraditionalSelfTotal}}</td>
213
+          </tr>
214
+
215
+          <tr>
216
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">金额合计</td>
217
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_total) +
218
+              parseFloat(info.operation_cost_total) + parseFloat(info.other_cost_total) +
219
+              parseFloat(info.material_cost_total) + parseFloat(info.western_medicine_cost_total) +
220
+              parseFloat(info.chinese_traditional_medicine_cost_total) + parseFloat(info.check_cost_total) +
221
+              parseFloat(info.laboratory_cost_total) + parseFloat(info.treat_cost_total)).toFixed(2) }}
222
+            </td>
223
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bedInscpTotal) +
224
+              parseFloat(info.operationInscpTotal) + parseFloat(info.checkInscpTotal) +
225
+              parseFloat(info.treatInscpTotal) + parseFloat(info.laboratoryInscpTotal) +
226
+              parseFloat(info.westernMedicineInscpTotal) + parseFloat(info.materialInscpTotal) +
227
+              parseFloat(info.otherInscpTotal) + parseFloat(info.chineseTraditionalInscpTotal)).toFixed(2) }}
228
+            </td>
229
+
230
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_part_self_total) +
231
+              parseFloat(info.operation_cost_part_self_total) + parseFloat(info.other_cost_part_self_total) +
232
+              parseFloat(info.material_cost_part_self_total) + parseFloat(info.western_medicine_cost_part_self_total) +
233
+              parseFloat(info.chinese_traditional_medicine_cost_part_self_total) +
234
+              parseFloat(info.check_cost_part_self_total) + parseFloat(info.laboratory_cost_part_self_total) +
235
+              parseFloat(info.treat_cost_part_self_total)).toFixed(2)}}
236
+            </td>
237
+
238
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bed_cost_self_total )+
239
+              parseFloat(info.operation_cost_self_total) + parseFloat(info.other_cost_self_total) +
240
+              parseFloat(info.material_cost_self_total) + parseFloat(info.western_medicine_cost_self_total) +
241
+              parseFloat(info.chinese_traditional_medicine_cost_self_total) + parseFloat(info.check_cost_self_total) +
242
+              parseFloat(info.laboratory_cost_self_total) + parseFloat(info.treat_cost_self_total)).toFixed(2)}}
243
+            </td>
244
+
245
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{(parseFloat(info.bedSelfTotal) +
246
+              parseFloat(info.operationSelfTotal) + parseFloat(info.checkSelfTotal) +
247
+              parseFloat(info.treatSelfTotal) + parseFloat(info.laboratorySelfTotal) +
248
+              parseFloat(info.westernMedicineSelfTotal) + parseFloat(info.materialSelfTotal) +
249
+              parseFloat(info.otherSelfTotal) + parseFloat(info.chineseTraditionalSelfTotal)).toFixed(2) }}
250
+            </td>
251
+
252
+          </tr>
253
+
254
+          <tr>
255
+            <td colspan="6" style="border: 1px solid gray;width: 150px;height: 30px;"> 费用结算情况</td>
256
+          </tr>
257
+          <tr>
258
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">费用总额</td>
259
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.medfee_sumamt}}</td>
260
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">统筹基金支付</td>
261
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.hifp_pay}}</td>
262
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">大病保险支付</td>
263
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.hifmi_pay}}</td>
264
+          </tr>
265
+          <tr>
266
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">医疗救助支付</td>
267
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.maf_pay}}</td>
268
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">公务员补充支付</td>
269
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.cvlserv_pay}}</td>
270
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">离休保健专项</td>
271
+            <td style="border: 1px solid gray;width: 150px;height: 30px;"></td>
272
+          </tr>
273
+          <tr>
274
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">个人账户支付</td>
275
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.acct_pay}}</td>
276
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">个人现金支付</td>
277
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.psn_cash_pay}}</td>
278
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">其他基金支付</td>
279
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.oth_pay}}</td>
280
+          </tr>
281
+          <tr>
282
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">起付线</td>
283
+            <td colspan="2" style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.act_pay_dedc}}</td>
284
+            <td style="border: 1px solid gray;width: 150px;height: 30px;">医院垫付金额</td>
285
+            <td colspan="2" style="border: 1px solid gray;width: 150px;height: 30px;">{{info.new_order.hosp_part_amt}}</td>
286
+          </tr>
287
+        </table>
288
+        <div style="width: 51%; margin: 5px 100px; text-align: center;">
289
+         <span style="display: inline-block;"> 备注:其它包含军转、财政、慈善、其他商报等支付来源</span>
291 290
         </div>
292 291
       </div>
293
-
294 292
     </div>
293
+
294
+  </div>
295 295
 </template>
296 296
 <script>
297 297
 import { getChargePrint } from '@/api/project/project'
298 298
 import { uParseTime } from '@/utils/tools'
299 299
 
300 300
 export default {
301
-  data() {
302
-    return {
303
-      list: {},
304
-      prescription: [],
305
-      patient: {},
306
-      orgname: '',
307
-
308
-      result: {},
309
-      org_code: '',
310
-      patient_name: '',
311
-      doctor_code: '',
312
-      doctor_name: '',
313
-
314
-      name_arr: [],
315
-      spec_arr: [],
316
-      count_arr: [],
317
-      price_arr: [],
318
-      total_arr: []
301
+data() {
302
+  return {
303
+    list: {},
304
+    prescription: [],
305
+    patient: {},
306
+    orgname: '',
307
+
308
+    result: {},
309
+    org_code: '',
310
+    patient_name: '',
311
+    doctor_code: '',
312
+    doctor_name: '',
313
+
314
+    name_arr: [],
315
+    spec_arr: [],
316
+    count_arr: [],
317
+    price_arr: [],
318
+    total_arr: []
319 319
 
320
+  }
321
+},
322
+props: {
323
+  paramsObj: Object,
324
+  info: {
325
+    type: Object,
326
+    default: function() {
327
+      return {}
320 328
     }
321 329
   },
322
-  props: {
323
-    paramsObj: Object,
324
-    info: {
325
-      type: Object,
326
-      default: function() {
327
-        return {}
328
-      }
329
-    },
330
-    balanceAccounts: Object
331
-  },
332
-  methods: {
333
-    getDay(dateString1,dateString2){
334
-      var  startDate = Date.parse(dateString1);
335
-      var  endDate = Date.parse(dateString2);
336
-      if (startDate>endDate){
337
-        return 0;
338
-      }
339
-      if (startDate==endDate){
340
-        return 1;
341
-      }
342
-      var days=(endDate - startDate)/(1*24*60*60*1000);
343
-      return  days;
344
-    },
345
-    getTime(value, temp) {
346
-      if (value != undefined) {
347
-        return uParseTime(value, temp)
348
-      }
349
-      return ''
330
+  balanceAccounts: Object
331
+},
332
+methods: {
333
+  getDay(dateString1,dateString2){
334
+    var  startDate = Date.parse(dateString1);
335
+    var  endDate = Date.parse(dateString2);
336
+    if (startDate>endDate){
337
+      return 0;
338
+    }
339
+    if (startDate==endDate){
340
+      return 1;
350 341
     }
342
+    var days=(endDate - startDate)/(1*24*60*60*1000);
343
+    return  days;
351 344
   },
352
-  mounted() {
345
+  getTime(value, temp) {
346
+    if (value != undefined) {
347
+      return uParseTime(value, temp)
348
+    }
349
+    return ''
350
+  }
351
+},
352
+mounted() {
353 353
 
354 354
 
355
-  },
356
-  watch: {
357
-    paramsObj: {//深度监听,可监听到对象、数组的变化
358
-      handler(val, oldVal) {
355
+},
356
+watch: {
357
+  paramsObj: {//深度监听,可监听到对象、数组的变化
358
+    handler(val, oldVal) {
359 359
 
360 360
 
361
-      },
362
-      deep: true
363
-    }
361
+    },
362
+    deep: true
364 363
   }
365 364
 }
365
+}
366 366
 </script>
367 367
 
368 368
 
369 369
 <style lang="scss" scoped>
370 370
 .prescription-print {
371
-  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
372
-  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
373
-  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
374
-  margin-bottom: 20px;
375
-  padding: 20px 10px;
371
+-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
372
+-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
373
+box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
374
+margin-bottom: 20px;
375
+padding: 20px 10px;
376 376
 }
377 377
 
378 378
 </style>

+ 11 - 15
src/xt_pages/outpatientDoctorStation/checkTemplate/printOne.vue Целия файл

@@ -191,21 +191,17 @@ export default {
191 191
   },
192 192
   methods: {
193 193
     getAge(patient){
194
-      var thisLen = patient.id_card_no.length
195
-      var birth = ''
196
-      if (thisLen == 15) {
197
-        birth = '19' + patient.id_card_no.substr(6, 6)
198
-      } else {
199
-        birth = patient.id_card_no.substr(6, 8)
200
-      }
201
-      var births =
202
-        birth.substr(0, 4) +
203
-        '-' +
204
-        birth.substr(4, 2) +
205
-        '-' +
206
-        birth.substr(6, 2)
207
-      return jsGetAge(births, '-')
208
-
194
+      // 将时间戳转换为 Date 对象
195
+      const birthday = new Date(patient.birthday* 1000);
196
+
197
+      // 获取当前日期
198
+      const now = new Date();
199
+      // 计算年龄差
200
+      const ageDiffMs = now - birthday;
201
+      const ageDate = new Date(ageDiffMs); // 不需要减掉 1970 年的时间戳
202
+      // 提取年份
203
+      const age = ageDate.getUTCFullYear() - 1970;
204
+      return age
209 205
     },
210 206
     getPatientCaseHistory() {
211 207
       const params = {

+ 57 - 2
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Целия файл

@@ -2431,6 +2431,7 @@
2431 2431
               if (num == 0) {
2432 2432
                 var arr = []//新增处方
2433 2433
                 var arr_one = []
2434
+                var arr_Two = []
2434 2435
 
2435 2436
                 console.log("ooo233323233232323232",this.prescriptions)
2436 2437
 
@@ -2444,6 +2445,7 @@
2444 2445
                     if(arr.length > 0){
2445 2446
                       let objInfo = {};
2446 2447
                       arr.forEach((item, index) => {
2448
+                      
2447 2449
                       let { id } = item.id;
2448 2450
                       if (!objInfo[id]) {
2449 2451
                           objInfo[id] = {
@@ -2504,8 +2506,9 @@
2504 2506
                         }
2505 2507
                       }
2506 2508
                       console.log("newArr",newArr )
2507
-                    }
2509
+                    }  
2508 2510
                   }
2511
+                  
2509 2512
 
2510 2513
                   if(this.prescriptions[i].id > 0){ //修改处方
2511 2514
 
@@ -2513,11 +2516,16 @@
2513 2516
                        if(this.prescriptions[i].advices[j].advice_id == 0){ //新增列
2514 2517
                          arr_one.push(this.prescriptions[i].advices[j])
2515 2518
                        }
2519
+                       if(this.prescriptions[i].advices[j].advice_id >0){
2520
+                         arr_Two.push(this.prescriptions[i].advices[j])
2521
+                       }
2516 2522
                      }
2517
-                     console.log("ara23322323233232",arr)
2523
+                     console.log("编辑处方",arr_one)
2518 2524
                      if(arr_one.length > 0){
2525
+
2519 2526
                       let objInfo = {};
2520 2527
                       arr_one.forEach((item, index) => {
2528
+                     
2521 2529
                       let { id } = item.id;
2522 2530
                       if (!objInfo[id]) {
2523 2531
                           objInfo[id] = {
@@ -2569,6 +2577,53 @@
2569 2577
                     }
2570 2578
                   }
2571 2579
                 }
2580
+                 
2581
+               
2582
+                if(arr.length > 0){
2583
+                  for(let i =0;i<arr.length;i++){
2584
+                    if(arr[i].drug!=null){
2585
+                      if(arr[i].drug.is_user == 2){
2586
+                        if(arr[i].prescribing_number_unit != arr[i].drug.max_unit && arr[i].prescribing_number_unit!=arr[i].drug.min_unit){
2587
+                          this.$message.error(arr[i].drug.drug_name + " " +arr[i].drug.dose + arr[i].drug.dose_unit + "*" + arr[i].drug.min_number + arr[i].drug.min_unit+"/"+arr[i].drug.max_unit +" "+ "总量单位不统一,保存失败!")
2588
+                          isLoading = false
2589
+                          this.$emit('editKeepLoad', false)
2590
+                          return
2591
+                        }
2592
+                      }
2593
+                    }
2594
+                  }
2595
+                }
2596
+
2597
+
2598
+                if(arr_one.length > 0){
2599
+                  for(let i =0;i<arr_one.length;i++){
2600
+                    if(arr_one[i].drug!=null){
2601
+                      if(arr_one[i].drug.is_user == 2){
2602
+                        if(arr_one[i].prescribing_number_unit != arr_one[i].drug.max_unit && arr_one[i].prescribing_number_unit!=arr_one[i].drug.min_unit){
2603
+                          this.$message.error(arr_one[i].drug.drug_name + " " +arr_one[i].drug.dose + arr_one[i].drug.dose_unit + "*" + arr_one[i].drug.min_number + arr_one[i].drug.min_unit+"/"+arr_one[i].drug.max_unit +" "+ "总量单位不匹配,保存失败!")
2604
+                          isLoading = false
2605
+                          this.$emit('editKeepLoad', false)
2606
+                          return
2607
+                        }
2608
+                      }
2609
+                    }
2610
+                  }
2611
+                }
2612
+
2613
+                if(arr_Two.length > 0){
2614
+                  for(let i =0;i<arr_Two.length;i++){
2615
+                    if(arr_Two[i].drug!=null){
2616
+                      if(arr_Two[i].drug.is_user == 2){
2617
+                        if(arr_Two[i].prescribing_number_unit != arr_Two[i].drug.max_unit && arr_Two[i].prescribing_number_unit!=arr_Two[i].drug.min_unit){
2618
+                          this.$message.error(arr_Two[i].drug.drug_name + " " +arr_Two[i].drug.dose + arr_Two[i].drug.dose_unit + "*" + arr_Two[i].drug.min_number + arr_Two[i].drug.min_unit+"/"+arr_Two[i].drug.max_unit +" "+ "总量单位不匹配,保存失败!")
2619
+                          isLoading = false
2620
+                          this.$emit('editKeepLoad', false)
2621
+                          return
2622
+                        }
2623
+                      }
2624
+                    }
2625
+                  }
2626
+                }
2572 2627
 
2573 2628
                if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 9679){
2574 2629
                   var project_arr = []

+ 6 - 617
src/xt_pages/user/courseOfDisease.vue Целия файл

@@ -37,7 +37,7 @@
37 37
         </div>
38 38
         <div class="record">
39 39
           <el-row :gutter="15">
40
-            <el-col :span="9">
40
+            <el-col :span="10">
41 41
               <el-table :header-cell-style="{
42 42
                   backgroundColor: 'rgb(245, 247, 250)',
43 43
                   color: '#606266'
@@ -48,10 +48,7 @@
48 48
                         :row-class-name="tableRow"
49 49
                         @row-click="onRowClick"
50 50
               >
51
-                <el-table-column
52
-                  type="selection"
53
-                  width="55">
54
-                </el-table-column>
51
+                <el-table-column type="selection" width="40" align="center"></el-table-column>
55 52
                 <el-table-column label="病程标题" align="center">
56 53
                   <template slot-scope="scope">
57 54
                     {{ scope.row.title}}
@@ -69,609 +66,13 @@
69 66
                 </el-table-column>
70 67
               </el-table>
71 68
             </el-col>
72
-            <el-col :span="15">
69
+            <el-col :span="14">
73 70
               <div class="record_content_panel">
74 71
                 <div style="background-color:rgb(245, 247, 250)" class="title">病程内容</div>
75
-                <!--v-html="current_select_record.content"-->
76
-                <!-- <div class="content">
77
-                  <span v-if="current_select_record" >{{current_select_record.content }}</span>
72
+                <div class="content">
73
+                  <span v-if="current_select_record" v-html="current_select_record.content">{{current_select_record.content }}</span>
78 74
                   <span v-else></span>
79
-                </div> -->
80
-                <!-- <el-form>
81
-                  <el-row style="margin-top: 20px;">
82
-                    <el-col :span="6" style="margin-left: 20px;">
83
-                      <el-form-item label="日期:">
84
-                        <el-date-picker
85
-                          v-model="start_time"
86
-                          type="date"
87
-                          placeholder="选择日期"
88
-                          style="width: 145px;">
89
-                        </el-date-picker>
90
-                      </el-form-item>
91
-                    </el-col>
92
-                    <el-col :span="6" >
93
-                      <el-form-item label="医生:">
94
-                        
95
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 145px;">
96
-                          <el-option
97
-                            v-for="item in options"
98
-                            :key="item.value"
99
-                            :label="item.label"
100
-                            :value="item.value">
101
-                          </el-option>
102
-                        </el-select>
103
-                      </el-form-item>
104
-                    </el-col>
105
-                  </el-row>
106
-
107
-                  <el-row >
108
-                    <el-col :span="5" style="margin-left: 20px;">
109
-                      <el-form-item label="T:">
110
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
111
-                        <span >ºC</span>
112
-                      </el-form-item>
113
-                    </el-col>
114
-                    <el-col :span="5" >
115
-                      <el-form-item label="P:">
116
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
117
-                        <span >次/分</span>
118
-                      </el-form-item>
119
-                    </el-col>
120
-                    <el-col :span="5" >
121
-                      <el-form-item label="R:">
122
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
123
-                        <span >次/分</span>
124
-                      </el-form-item>
125
-                    </el-col>
126
-                    <el-col :span="8" >
127
-                      <el-form-item label="BP:">
128
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
129
-                        <span >/</span>
130
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 65px;"></el-input>
131
-                        <span >mmHg</span>
132
-                      </el-form-item>
133
-                    </el-col>
134
-                  </el-row>
135
-
136
-                  <el-row >
137
-                    <el-col :span="6" style="margin-left: 20px;">
138
-                      <el-form-item label="贫血容貌:">
139
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
140
-                          <el-option
141
-                            v-for="item in options"
142
-                            :key="item.value"
143
-                            :label="item.label"
144
-                            :value="item.value">
145
-                          </el-option>
146
-                        </el-select>
147
-                      </el-form-item>
148
-                     
149
-                    </el-col>
150
-                    <el-col :span="5" >
151
-                      <el-form-item label="体位:">
152
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
153
-                          <el-option
154
-                            v-for="item in options"
155
-                            :key="item.value"
156
-                            :label="item.label"
157
-                            :value="item.value">
158
-                          </el-option>
159
-                        </el-select>
160
-                      </el-form-item>
161
-                    </el-col>
162
-                    <el-col :span="5" >
163
-                      <el-form-item label="浮肿:">
164
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
165
-                          <el-option
166
-                            v-for="item in options"
167
-                            :key="item.value"
168
-                            :label="item.label"
169
-                            :value="item.value">
170
-                          </el-option>
171
-                        </el-select>
172
-                      </el-form-item>
173
-                     
174
-                    </el-col>
175
-                    <el-col :span="7" >
176
-                      <el-form-item label="出血点/瘀斑/血肿:">
177
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
178
-                          <el-option
179
-                            v-for="item in options"
180
-                            :key="item.value"
181
-                            :label="item.label"
182
-                            :value="item.value">
183
-                          </el-option>
184
-                        </el-select>
185
-                      </el-form-item>
186
-                      
187
-                    </el-col>
188
-                  </el-row>
189
-
190
-                  <el-row >
191
-                    <el-col :span="6" style="margin-left: 20px;">
192
-                      <el-form-item label="发育:">
193
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
194
-                          <el-option
195
-                            v-for="item in options"
196
-                            :key="item.value"
197
-                            :label="item.label"
198
-                            :value="item.value">
199
-                          </el-option>
200
-                        </el-select>
201
-                      </el-form-item>
202
-                     
203
-                    </el-col>
204
-                    <el-col :span="5" >
205
-                      <el-form-item label="营养:">
206
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
207
-                          <el-option
208
-                            v-for="item in options"
209
-                            :key="item.value"
210
-                            :label="item.label"
211
-                            :value="item.value">
212
-                          </el-option>
213
-                        </el-select>
214
-                      </el-form-item>
215
-                    </el-col>
216
-                    <el-col :span="5" >
217
-                      <el-form-item label="神志:">
218
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 90px;">
219
-                          <el-option
220
-                            v-for="item in options"
221
-                            :key="item.value"
222
-                            :label="item.label"
223
-                            :value="item.value">
224
-                          </el-option>
225
-                        </el-select>
226
-                      </el-form-item>     
227
-                    </el-col>
228
-                  </el-row>
229
-
230
-                  <el-row>
231
-                    <el-col style="text-align: center;">
232
-                      <span style="">-------------------------------------------------------------------------------</span>
233
-                      <span style="color: aqua;">皮肤黏膜</span>
234
-                      <span style="">-------------------------------------------------------------------------------</span>
235
-                    </el-col>
236
-                  </el-row>
237
-
238
-                  <el-row >
239
-                    <el-col :span="6" style="margin-left: 20px;">
240
-                      <el-form-item label="皮肤黏膜:">
241
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
242
-                          <el-option
243
-                            v-for="item in options"
244
-                            :key="item.value"
245
-                            :label="item.label"
246
-                            :value="item.value">
247
-                          </el-option>
248
-                        </el-select>
249
-                      </el-form-item>
250
-                     
251
-                    </el-col>
252
-                    <el-col :span="5" >
253
-                      <el-form-item label="部位:">
254
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
255
-                      </el-form-item>
256
-                    </el-col>
257
-                    <el-col :span="5" >
258
-                      <el-form-item label="程度:">
259
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
260
-                      </el-form-item>
261
-                     
262
-                    </el-col>
263
-                    <el-col :span="7" >
264
-                      <el-form-item label="皮下出血点:">
265
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
266
-                          <el-option
267
-                            v-for="item in options"
268
-                            :key="item.value"
269
-                            :label="item.label"
270
-                            :value="item.value">
271
-                          </el-option>
272
-                        </el-select>
273
-                      </el-form-item>
274
-                    </el-col>
275
-                  </el-row>
276
-
277
-                  <el-row >
278
-                    <el-col :span="6" style="margin-left: 20px;">
279
-                      <el-form-item label="紫癜:">
280
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
281
-                          <el-option
282
-                            v-for="item in options"
283
-                            :key="item.value"
284
-                            :label="item.label"
285
-                            :value="item.value">
286
-                          </el-option>
287
-                        </el-select>
288
-                      </el-form-item>
289
-                     
290
-                    </el-col>
291
-                    <el-col :span="6" >
292
-                      <el-form-item label="皮肤温度:">
293
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
294
-                          <el-option
295
-                            v-for="item in options"
296
-                            :key="item.value"
297
-                            :label="item.label"
298
-                            :value="item.value">
299
-                          </el-option>
300
-                        </el-select>
301
-                      </el-form-item>
302
-                    </el-col>
303
-                    <el-col :span="9" >
304
-                      <el-form-item label="其它:">
305
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 210px;"></el-input>
306
-                      </el-form-item>     
307
-                    </el-col>
308
-                  </el-row>
309
-                  
310
-                  <el-row>
311
-                    <el-col style="text-align: center;">
312
-                      <span style="">-------------------------------------------------------------------------------</span>
313
-                      <span style="color: aqua;">淋巴结</span>
314
-                      <span style="">-------------------------------------------------------------------------------</span>
315
-                    </el-col>
316
-                  </el-row>
317
-
318
-                  <el-row >
319
-                    <el-col :span="8"  style="margin-left: 20px;">
320
-                      <el-form-item label="浅表淋巴肿大:">
321
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
322
-                          <el-option
323
-                            v-for="item in options"
324
-                            :key="item.value"
325
-                            :label="item.label"
326
-                            :value="item.value">
327
-                          </el-option>
328
-                        </el-select>
329
-                      </el-form-item>
330
-                    </el-col>
331
-                    <el-col :span="12" >
332
-                      <el-form-item label="其它:">
333
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 210px;"></el-input>
334
-                      </el-form-item>     
335
-                    </el-col>
336
-                  </el-row>
337
-                   
338
-                  <el-row>
339
-                    <el-col style="text-align: center;">
340
-                      <span style="">-------------------------------------------------------------------------------</span>
341
-                      <span style="color: aqua;">头部</span>
342
-                      <span style="">-------------------------------------------------------------------------------</span>
343
-                    </el-col>
344
-                  </el-row>
345
-
346
-                  <el-row >
347
-                    <el-col :span="6" style="margin-left: 20px;">
348
-                      <el-form-item label="眼睑:">
349
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
350
-                          <el-option
351
-                            v-for="item in options"
352
-                            :key="item.value"
353
-                            :label="item.label"
354
-                            :value="item.value">
355
-                          </el-option>
356
-                        </el-select>
357
-                      </el-form-item>
358
-                     
359
-                    </el-col>
360
-                    <el-col :span="6" >
361
-                      <el-form-item label="瞳孔(等大等圆):">
362
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
363
-                          <el-option
364
-                            v-for="item in options"
365
-                            :key="item.value"
366
-                            :label="item.label"
367
-                            :value="item.value">
368
-                          </el-option>
369
-                        </el-select>
370
-                      </el-form-item>
371
-                      
372
-                    </el-col>
373
-                    <el-col :span="5" >
374
-                      <el-form-item label="左(mm):">
375
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
376
-                      </el-form-item>
377
-                     
378
-                    </el-col>
379
-                    <el-col :span="5" >
380
-                      <el-form-item label="右(mm):">
381
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
382
-                      </el-form-item>
383
-                    </el-col>
384
-                  </el-row>
385
-
386
-                  <el-row >
387
-                    <el-col :span="6" style="margin-left: 20px;">
388
-                      <el-form-item label="对光反射:">
389
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
390
-                      </el-form-item>
391
-                     
392
-                    </el-col>
393
-                    <el-col :span="6" >
394
-                      <el-form-item label="扁桃体:">
395
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
396
-                      </el-form-item>
397
-                    </el-col>
398
-                    <el-col :span="9" >
399
-                      <el-form-item label="咽部:">
400
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
401
-                      </el-form-item>     
402
-                    </el-col>
403
-                  </el-row>
404
-
405
-                  <el-row>
406
-                    <el-col style="margin-left: 20px;">
407
-                      <el-form-item label="其它:">
408
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
409
-                      </el-form-item>    
410
-                    </el-col>
411
-                  </el-row>
412
-
413
-                  
414
-                  <el-row>
415
-                    <el-col style="text-align: center;">
416
-                      <span style="">-------------------------------------------------------------------------------</span>
417
-                      <span style="color: aqua;">肺脏</span>
418
-                      <span style="">-------------------------------------------------------------------------------</span>
419
-                    </el-col>
420
-                  </el-row>
421
-
422
-                  <el-row >
423
-                    <el-col :span="7" style="margin-left: 20px;">
424
-                      <el-form-item label="呼吸音:">
425
-                        <el-input v-model="input" placeholder="请输入内容" style="width: 100px;"></el-input>
426
-                      </el-form-item>
427
-                     
428
-                    </el-col>
429
-                    <el-col :span="6" >
430
-                      <el-form-item label="胸膜摩擦音:">
431
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
432
-                          <el-option
433
-                            v-for="item in options"
434
-                            :key="item.value"
435
-                            :label="item.label"
436
-                            :value="item.value">
437
-                          </el-option>
438
-                        </el-select>
439
-                      </el-form-item>
440
-                      
441
-                    </el-col>
442
-                    <el-col :span="5" >
443
-                      <el-form-item label="部位:">
444
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
445
-                          <el-option
446
-                            v-for="item in options"
447
-                            :key="item.value"
448
-                            :label="item.label"
449
-                            :value="item.value">
450
-                          </el-option>
451
-                        </el-select>
452
-                      </el-form-item>
453
-                     
454
-                    </el-col>
455
-                    <el-col :span="5" >
456
-                      <el-form-item label="啰音:">
457
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
458
-                          <el-option
459
-                            v-for="item in options"
460
-                            :key="item.value"
461
-                            :label="item.label"
462
-                            :value="item.value">
463
-                          </el-option>
464
-                        </el-select>
465
-                      </el-form-item>
466
-                    </el-col>
467
-                  </el-row>
468
-
469
-                  <el-row>
470
-                      <el-col style="margin-left: 20px;">
471
-                      <el-form-item label="描述:">
472
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
473
-                      </el-form-item>     
474
-                    </el-col>
475
-                  </el-row>
476
-                  
477
-                   <el-row>
478
-                    <el-col style="text-align: center;">
479
-                      <span style="">-------------------------------------------------------------------------------</span>
480
-                      <span style="color: aqua;">心脏</span>
481
-                      <span style="">-------------------------------------------------------------------------------</span>
482
-                    </el-col>
483
-                  </el-row>
484
-
485
-                  <el-row >
486
-                    <el-col :span="6" style="margin-left: 20px;">
487
-                      <el-form-item label="心脏大小:">
488
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
489
-                          <el-option
490
-                            v-for="item in options"
491
-                            :key="item.value"
492
-                            :label="item.label"
493
-                            :value="item.value">
494
-                          </el-option>
495
-                        </el-select>
496
-                      </el-form-item>
497
-                     
498
-                    </el-col>
499
-                    <el-col :span="6" >
500
-                      <el-form-item label="心律:">
501
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
502
-                          <el-option
503
-                            v-for="item in options"
504
-                            :key="item.value"
505
-                            :label="item.label"
506
-                            :value="item.value">
507
-                          </el-option>
508
-                        </el-select>
509
-                      </el-form-item>
510
-                      
511
-                    </el-col>
512
-                    <el-col :span="6" >
513
-                      <el-form-item label="心包摩擦声:">
514
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
515
-                          <el-option
516
-                            v-for="item in options"
517
-                            :key="item.value"
518
-                            :label="item.label"
519
-                            :value="item.value">
520
-                          </el-option>
521
-                        </el-select>
522
-                      </el-form-item>
523
-                    </el-col>
524
-                  </el-row>
525
-
526
-                  <el-row >
527
-                    <el-col :span="6" style="margin-left: 20px;">
528
-                      <el-form-item label="杂音:">
529
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
530
-                          <el-option
531
-                            v-for="item in options"
532
-                            :key="item.value"
533
-                            :label="item.label"
534
-                            :value="item.value">
535
-                          </el-option>
536
-                        </el-select>
537
-                      </el-form-item>
538
-                    </el-col>
539
-                    <el-col :span="6" >
540
-                      <el-form-item label="附加音:">
541
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
542
-                          <el-option
543
-                            v-for="item in options"
544
-                            :key="item.value"
545
-                            :label="item.label"
546
-                            :value="item.value">
547
-                          </el-option>
548
-                        </el-select>
549
-                      </el-form-item>
550
-                    </el-col>
551
-                  </el-row>
552
-                  <el-row>
553
-                      <el-col style="margin-left: 20px;">
554
-                      <el-form-item label="描述:">
555
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
556
-                      </el-form-item>     
557
-                    </el-col>
558
-                  </el-row>
559
-
560
-                  
561
-                  <el-row>
562
-                    <el-col style="text-align: center;">
563
-                      <span style="">-------------------------------------------------------------------------------</span>
564
-                      <span style="color: aqua;">腹部</span>
565
-                      <span style="">-------------------------------------------------------------------------------</span>
566
-                    </el-col>
567
-                  </el-row>
568
-
569
-                  <el-row >
570
-                    <el-col :span="6" style="margin-left: 20px;">
571
-                      <el-form-item label="腹水征:">
572
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
573
-                          <el-option
574
-                            v-for="item in options"
575
-                            :key="item.value"
576
-                            :label="item.label"
577
-                            :value="item.value">
578
-                          </el-option>
579
-                        </el-select>
580
-                      </el-form-item>
581
-                    </el-col>
582
-                    <el-col :span="12" >
583
-                      <el-form-item label="肝颈静脉返流征:">
584
-                        <el-input type="textarea" v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
585
-                      </el-form-item>
586
-                    </el-col>
587
-                  </el-row>
588
-
589
-                  <el-row >
590
-                    <el-col :span="10" style="margin-left: 20px;">
591
-                      <el-form-item label="肝脏:">
592
-                        <span>压痛</span>
593
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
594
-                          <el-option
595
-                            v-for="item in options"
596
-                            :key="item.value"
597
-                            :label="item.label"
598
-                            :value="item.value">
599
-                          </el-option>
600
-                        </el-select>
601
-                        <span>叩痛</span>
602
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
603
-                          <el-option
604
-                            v-for="item in options"
605
-                            :key="item.value"
606
-                            :label="item.label"
607
-                            :value="item.value">
608
-                          </el-option>
609
-                        </el-select>
610
-                      </el-form-item>
611
-                    </el-col>
612
-                    <el-col :span="10" >
613
-                      <el-form-item label="脾脏:">
614
-                        <span>压痛</span>
615
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
616
-                          <el-option
617
-                            v-for="item in options"
618
-                            :key="item.value"
619
-                            :label="item.label"
620
-                            :value="item.value">
621
-                          </el-option>
622
-                        </el-select>
623
-                        <span>叩痛</span>
624
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
625
-                          <el-option
626
-                            v-for="item in options"
627
-                            :key="item.value"
628
-                            :label="item.label"
629
-                            :value="item.value">
630
-                          </el-option>
631
-                        </el-select>
632
-                      </el-form-item>
633
-                    </el-col>
634
-                  </el-row>
635
-
636
-                  <el-row >
637
-                    <el-col :span="10" style="margin-left: 20px;">
638
-                      <el-form-item label="肾脏:">
639
-                        <span>压痛</span>
640
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
641
-                          <el-option
642
-                            v-for="item in options"
643
-                            :key="item.value"
644
-                            :label="item.label"
645
-                            :value="item.value">
646
-                          </el-option>
647
-                        </el-select>
648
-                        <span>叩痛</span>
649
-                        <el-select v-model="doctor" placeholder="请选择" style="width: 100px;">
650
-                          <el-option
651
-                            v-for="item in options"
652
-                            :key="item.value"
653
-                            :label="item.label"
654
-                            :value="item.value">
655
-                          </el-option>
656
-                        </el-select>
657
-                      </el-form-item>
658
-                    </el-col>
659
-                  </el-row>
660
-
661
-                  <el-row>
662
-                      <el-col style="margin-left: 20px;">
663
-                      <el-form-item label="描述:">
664
-                        <el-input type="textarea" autosize v-model="input" placeholder="请输入内容" style="width: 300px;"></el-input>
665
-                      </el-form-item>     
666
-                    </el-col>
667
-                  </el-row>
668
-
669
-                  <div style="background-color:aquamarine" class="title">其他</div>
670
-                  <div>
671
-                    双下肢无水肿
672
-                  </div>
673
-                </el-form> -->
674
-
75
+                </div>
675 76
               </div>
676 77
             </el-col>
677 78
           </el-row>
@@ -796,7 +197,6 @@
796 197
     },
797 198
     data() {
798 199
       return {
799
-        input:'',
800 200
         loading: false,
801 201
         title: '',
802 202
         patient_id: 0,
@@ -1112,14 +512,3 @@
1112 512
   background-color: #d0d3da;
1113 513
 }
1114 514
 </style>
1115
-<style lang="scss" scoped>
1116
-  .record_content_panel{
1117
-    .el-row{
1118
-      margin-bottom: 10px;
1119
-      }
1120
-    .el-input__inner{
1121
-      padding: 0px 0px !important;
1122
-    }
1123
-    
1124
-  }
1125
-</style>

+ 2 - 2
src/xt_pages/workforce/components/nextTableWeeks.vue Целия файл

@@ -665,7 +665,7 @@ export default {
665 665
     },
666 666
     signPrint() {
667 667
         
668
-        if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340 || this.org_id == 0){
668
+        if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
669 669
          var zone = this.zone
670 670
           var newArr = []
671 671
           for(let i=0;i<this.zoneList.length;i++){
@@ -683,7 +683,7 @@ export default {
683 683
             path: '/schedule/remind/print/setting/one?week_type=' + this.week_type + '&week_time=' + this.week_time + '&zone=' + str + '&prestatus=' + this.pre_status+"&type="+2
684 684
           })
685 685
           }
686
-        if(this.org_id!=9671 && this.org_id!=9675 && this.org_id!=10340 && this.org_id!=0){
686
+        if(this.org_id!=9671 && this.org_id!=9675 && this.org_id!=10340){
687 687
           var zone = this.zone
688 688
         var newArr = []
689 689
         for(let i=0;i<this.zoneList.length;i++){

+ 11 - 3
src/xt_pages/workforce/remind_print_setting.vue Целия файл

@@ -121,7 +121,7 @@
121 121
                 <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">干体重:{{main_collection.assessmentbefor.dry_weight}}</div>
122 122
                 <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">透前体重:{{main_collection.assessmentbefor.weight_before}}</div>
123 123
                 <div v-if="org_id == 10188 || org_id == 10217 || org_id == 10340 || org_id == 9671 || org_id == 9675">体重增加:{{(main_collection.assessmentbefor.weight_before - main_collection.assessmentbefor.dry_weight).toFixed(2)}}</div>
124
-                <div>用法:静脉注射</div>
124
+                <div v-if="org_id!=10278">用法:静脉注射</div>
125 125
                 <!-- 透析器灌流器 -->
126 126
                
127 127
                  <div>
@@ -138,7 +138,15 @@
138 138
                 </div>
139 139
                 
140 140
                
141
-                <div v-if="org_id!=10440&&org_id!=0">打印时间:{{currentDate}}</div>
141
+                <div v-if="org_id!=10440">打印时间:
142
+                     {{getTime(main_collection.schedule_date)}}   
143
+                     <span v-if="main_collection.schedule_week ==1">星期一</span>
144
+                     <span v-if="main_collection.schedule_week ==2">星期二</span>
145
+                     <span v-if="main_collection.schedule_week ==3">星期三</span>
146
+                     <span v-if="main_collection.schedule_week ==4">星期四</span>
147
+                     <span v-if="main_collection.schedule_week ==5">星期五</span>
148
+                     <span v-if="main_collection.schedule_week ==6">星期六</span>
149
+                     <span v-if="main_collection.schedule_week ==7">星期日</span></div>
142 150
               </div>
143 151
 
144 152
               <div class="signPrint" style="font-size:16px;" v-else>
@@ -326,7 +334,7 @@
326 334
      this.org_id = this.$store.getters.xt_user.org.id
327 335
      console.log("机构ID",this.org_id)
328 336
      this.currentDate = this.getCurrentDate()
329
-
337
+     console.log("打印时间----------------------------",this.currentDate)
330 338
     this.printDate = moment().format("YYYY-MM-DD HH:mm:ss")
331 339
     this.modeOptions = this.$store.getters.treatment_mode
332 340
     this.anticoagulants_confit = this.$store.getters.anticoagulants_confit

+ 13 - 13
src/xt_permission.js Целия файл

@@ -12,19 +12,19 @@ const permissionWhiteList = loginWhiteList.concat(['/']) // 权限验证白名
12 12
 
13 13
 router.beforeEach((to, from, next) => {
14 14
   // 线上注释
15
-  // if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
-  //   store.dispatch('VerifyConfigList', []).then(() => {
17
-  //     next()
18
-  //   })
19
-  // }
20
-  // if (store.getters.permission_routers === undefined) {
21
-  //   store.dispatch('xt_GenerateRoutes', []).then(() => {
22
-  //     next()
23
-  //   })
24
-  // } else {
25
-  //   next()
26
-  // }
27
-  // return
15
+  if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
+    store.dispatch('VerifyConfigList', []).then(() => {
17
+      next()
18
+    })
19
+  }
20
+  if (store.getters.permission_routers === undefined) {
21
+    store.dispatch('xt_GenerateRoutes', []).then(() => {
22
+      next()
23
+    })
24
+  } else {
25
+    next()
26
+  }
27
+  return
28 28
   // 线上注释
29 29
   NProgress.start()
30 30
   // console.log(store.getters.current_role_urls.indexOf(to.path))