28169 1 ano atrás
pai
commit
db60175f93

+ 184 - 16
src/pages/dqc/patientStatistics.vue Ver arquivo

@@ -746,9 +746,177 @@ export default {
746 746
       }
747 747
       getMobileCartogramlist(params).then(response => {
748 748
         if (response.data.state == 1) {
749
-          var total = response.data.data.total
750
-          var standtotal = response.data.data.standtotal
751
-          var standtotalone = response.data.data.standtotalOne
749
+
750
+          var patients = response.data.data.patients
751
+
752
+          this.tablePatients = patients
753
+
754
+          //  let dataInfothree = {}
755
+          //   patients.forEach((item, index) => {
756
+          //     let { inspect_date } = item
757
+          //     if (!dataInfothree[inspect_date]) {
758
+          //       dataInfothree[inspect_date] = {
759
+          //         inspect_date,
760
+          //         name: item.name,
761
+          //         child: [],
762
+          //         patient_id: item.patient_id,
763
+          //       }
764
+          //     }
765
+          //   })
766
+          // let patientlist = Object.values(dataInfothree)
767
+          // console.log("patientlist",patientlist)
768
+
769
+        var total = response.data.data.total
770
+        this.total = total
771
+        var control = response.data.data.control
772
+
773
+        var infectiousControl = response.data.data.infectiousControl
774
+
775
+      infectiousControl.map(item => {
776
+        control.push(item)
777
+      })
778
+
779
+
780
+      //  var newPatinteArr = []
781
+      //  patientlist.map(item=>{
782
+      //    for(let i=0;i<control.length;i++){
783
+      //       if(item.inspect_date == control[i].inspect_date && item.patient_id == control[i].patient_id){
784
+      //            item.child.push(control[i])
785
+      //       }
786
+      //    }
787
+      //  })
788
+      //  console.log("patientlist",patientlist)
789
+
790
+        var newArr = []
791
+        // 分页
792
+        for (let i = 0; i < control.length; i++) {
793
+          for (let j = 0; j < patients.length; j++) {
794
+            if (control[i].patient_id == patients[j].patient_id) {
795
+              newArr.push(control[i])
796
+            }
797
+          }
798
+        }
799
+        console.log(newArr)
800
+
801
+        console.log("newArr")
802
+
803
+
804
+
805
+          let dataInfo = {}
806
+          newArr.forEach((item, index) => {
807
+            let { patient_id } = item
808
+            if (!dataInfo[patient_id]) {
809
+              dataInfo[patient_id] = {
810
+                name: item.name,
811
+                child: [],
812
+                patient_id: item.patient_id,
813
+                range_type: item.range_type
814
+              }
815
+            }
816
+          })
817
+        let list = Object.values(dataInfo)
818
+
819
+
820
+        list.map(item => {
821
+          for (let i = 0; i < newArr.length; i++) {
822
+            if (item.patient_id == newArr[i].patient_id) {
823
+              item.child.push(newArr[i])
824
+            }
825
+          }
826
+        })
827
+
828
+
829
+
830
+          var newarrtwo = []
831
+          list.map(item => {
832
+            item.child.map(it => {
833
+              newarrtwo.push(it)
834
+            })
835
+          })
836
+
837
+          console.log("list")
838
+          console.log(list)
839
+          console.log(newarrtwo)
840
+
841
+
842
+          // 配置的才显示
843
+          var arrthree = []
844
+          for (let i = 0; i < newarrtwo.length; i++) {
845
+            for (let j = 0; j < this.normData.length; j++) {
846
+              if (newarrtwo[i].item_id == this.normData[j].inspection_minor) {
847
+                arrthree.push(newarrtwo[i])
848
+              }
849
+            }
850
+          }
851
+        console.log('arrthree', arrthree)
852
+        var arrfour = this.arrayDate(arrthree, newarrtwo)
853
+        arrfour.map(item => {
854
+          item.item_name = ''
855
+          arrthree.push(item)
856
+        })
857
+
858
+
859
+
860
+          var dd = {}
861
+          for (const index in arrthree) {
862
+            if (!(arrthree[index].patient_id in dd)) {
863
+              dd[arrthree[index].patient_id] = {}
864
+            }
865
+            if (!(arrthree[index].item_name in dd[arrthree[index].patient_id]) && arrthree[index].item_name != 0) {
866
+              dd[arrthree[index].patient_id][arrthree[index].item_name] = arrthree[index]
867
+
868
+            }
869
+          }
870
+
871
+        let dataInfotwo = {}
872
+        newArr.forEach((item, index) => {
873
+          let { patient_id } = item
874
+          if (!dataInfotwo[patient_id]) {
875
+            dataInfotwo[patient_id] = {
876
+              patient_id,
877
+              name: item.name,
878
+              inspect_value: item.inspect_value,
879
+              id: item.id,
880
+            }
881
+          }
882
+        })
883
+        let listtwo = Object.values(dataInfotwo)
884
+
885
+      for (const key in dd) {
886
+        for (const mkey in this.ObjectData) {
887
+          if (!(this.ObjectData[mkey].item_name in dd[key])) {
888
+            dd[key][this.ObjectData[mkey].item_name] = {
889
+              item_name: this.ObjectData[mkey].item_name,
890
+              name: mkey,
891
+              inspect_value: 0,
892
+              range_type: this.ObjectData[mkey].range_type
893
+            }
894
+          }
895
+        }
896
+        this.tableData.push({ name: key, data: dd[key] })
897
+      }
898
+
899
+      listtwo.map(item => {
900
+        this.tableData.map(it => {
901
+          if (item.patient_id == parseInt(it.name)) {
902
+            it.name = item.name
903
+            it.id = item.id
904
+            it.inspect_date = item.inspect_date
905
+          }
906
+        })
907
+      })
908
+
909
+      for (let i = 0; i < this.patientsArr.length; i++) {
910
+        for (let j = 0; j < this.tableData.length; j++) {
911
+          if (this.patientsArr[i].name == this.tableData[j].name) {
912
+            this.tableData[j].dialysis_no = this.patientsArr[i].dialysis_no
913
+            this.tableData[j].patient_id = this.patientsArr[i].id
914
+          }
915
+        }
916
+      }
917
+          // var total = response.data.data.total
918
+          // var standtotal = response.data.data.standtotal
919
+          // var standtotalone = response.data.data.standtotalOne
752 920
           // var cartogramlist = response.data.data.cartogramlist
753 921
           // console.log('cartogramlist', cartogramlist)
754 922
           // var infectiouscontrol = response.data.data.infectiouscontrol
@@ -822,19 +990,19 @@ export default {
822 990
           // })
823 991
           // var totalCount = list.length
824 992
           // console.log('totalCount', totalCount)
825
-          for (let i = 0; i < this.dataCount.length; i++) {
826
-            this.dataCount[0].count = standtotal + standtotalone
827
-            this.dataCount[1].count = total - standtotalone - standtotal
828
-            this.obj.push(this.dataCount[i].count)
829
-          }
830
-          for (let i = 0; i < this.dataName.length; i++) {
831
-            this.modesData.xAxis.push(this.dataName[i].name)
832
-          }
833
-          for (let i = 0; i < this.dataCount.length; i++) {
834
-            this.modesData.series.push(((this.dataCount[i].count / total) * 100).toFixed(1))
835
-          }
836
-          this.options.series[0].data = this.modesData.series
837
-          this.options.xAxis.data = this.modesData.xAxis
993
+          // for (let i = 0; i < this.dataCount.length; i++) {
994
+          //   this.dataCount[0].count = standtotal + standtotalone
995
+          //   this.dataCount[1].count = total - standtotalone - standtotal
996
+          //   this.obj.push(this.dataCount[i].count)
997
+          // }
998
+          // for (let i = 0; i < this.dataName.length; i++) {
999
+          //   this.modesData.xAxis.push(this.dataName[i].name)
1000
+          // }
1001
+          // for (let i = 0; i < this.dataCount.length; i++) {
1002
+          //   this.modesData.series.push(((this.dataCount[i].count / total) * 100).toFixed(1))
1003
+          // }
1004
+          // this.options.series[0].data = this.modesData.series
1005
+          // this.options.xAxis.data = this.modesData.xAxis
838 1006
           // // var cart = []
839 1007
           // for (let i = 0; i < cartogramlist.length; i++) {
840 1008
           //   if (cartogramlist[i].inspect_value != '') {

+ 1 - 1
src/pages/main/PatientBox.vue Ver arquivo

@@ -593,7 +593,7 @@
593 593
             透析上机
594 594
           </div>
595 595
           <div
596
-            v-if="(patient.dobule_check == null  && newIndex == 1) "
596
+            v-if="((patient.dobule_check&&patient.dobule_check.creater == 0 || patient.dobule_check&&patient.dobule_check.modifier == 0)  && newIndex == 1) "
597 597
             class="summary"
598 598
             @click.stop="open11(patient)"
599 599
           >

+ 2 - 2
src/pages/main/dialog/PrescriptionDialog.vue Ver arquivo

@@ -90,10 +90,10 @@
90 90
 
91 91
           <div class="item" v-if="isShow('目标超滤量')">
92 92
             <label class="name"
93
-                   v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22  && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.template_id != 27 && this.$store.getters.user.template_info.template_id != 29 && this.$store.getters.user.template_info.template_id != 30 && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.org_id!=9555  && this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469"
93
+                   v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22  && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.template_id != 27 && this.$store.getters.user.template_info.template_id != 29 && this.$store.getters.user.template_info.template_id != 30 && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.org_id!=9555  && this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469 && this.$store.getters.user.template_info.org_id!=10460"
94 94
                    for="mbcll">目标超滤量(L)</label>
95 95
             <label class="name"
96
-                   v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.template_id == 27 || this.$store.getters.user.template_info.template_id == 29 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32  || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.org_id==10340  || this.$store.getters.user.template_info.org_id==10441 || this.$store.getters.user.template_info.org_id==10445 || this.$store.getters.user.template_info.org_id==10440 || this.$store.getters.user.template_info.org_id==10469"
96
+                   v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.template_id == 27 || this.$store.getters.user.template_info.template_id == 29 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32  || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.org_id==10340  || this.$store.getters.user.template_info.org_id==10441 || this.$store.getters.user.template_info.org_id==10445 || this.$store.getters.user.template_info.org_id==10440 || this.$store.getters.user.template_info.org_id==10469 || this.$store.getters.user.template_info.org_id==10460"
97 97
                    for="mbcll">目标超滤量(ml)</label>
98 98
             <div class="content">
99 99
               <input

+ 6 - 4
src/pages/main/dialog/subMenu/MsgTip.vue Ver arquivo

@@ -47,7 +47,7 @@
47 47
         <div class="content" style="margin-top:5px;margin-left:0;">
48 48
           <span class="text" style="text-align:left;display:block;height:0.8rem;line-height:0.6rem;" id="txms">体重增加:<span style="color:#ec6618;display:inline-block;text-align:center;margin:0 2px;">{{add_weight}}</span>kg=
49 49
           透前称重:<span style="color:#ec6618;display:inline-block;text-align:center;center;margin:0 2px;">{{getBeforeWeight(predialysis)}}</span>kg -
50
-          上次透后称重22:<span style="color:#ec6618;display:inline-block;text-align:center;center;margin:0 2px;">{{getLastAfterWeight(last_record)}}</span>kg
50
+          上次透后称重:<span style="color:#ec6618;display:inline-block;text-align:center;center;margin:0 2px;">{{getLastAfterWeight(last_record)}}</span>kg
51 51
           </span>
52 52
         </div>
53 53
         <br>
@@ -113,9 +113,11 @@ export default {
113 113
   name: 'LongAdviceSubMenu',
114 114
   created () {
115 115
     if (this.predialysis.weight_before > 0 && this.last_record.weight_after > 0) {
116
-      this.add_weight = parseFloat(
117
-        (this.predialysis.weight_before - this.predialysis.additional_weight) - (this.last_record.weight_after - this.last_record.additional_weight)
118
-      ).toFixed(2)
116
+      this.add_weight = parseFloat((this.predialysis.weight_before - this.predialysis.additional_weight) - (this.last_record.weight_after - this.last_record.additional_weight)).toFixed(2)
117
+      console.log("weight_before",this.predialysis.weight_before)
118
+      console.log("additional_weight",this.predialysis.additional_weight)
119
+      console.log("last_weight_after",this.last_record.weight_after)
120
+      console.log("additional_weight",this.last_record.additional_weight)
119 121
     }
120 122
     // var weightbefor = parseFloat(this.predialysis.weight_before - this.predialysis.additional_weight)
121 123
     // console.log('aa', weightbefor)

+ 3 - 3
src/pages/main/newActionBar/assessmentAfter.vue Ver arquivo

@@ -7,8 +7,8 @@
7 7
             <van-cell>
8 8
                 <template #title>
9 9
                     <span style="color:#7b8c9c" v-if="prescription_prop!=null">目标超滤量:{{prescription_prop.target_ultrafiltration}}</span>
10
-                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id != 9 && $store.getters.user.template_info.template_id != 17 && $store.getters.user.template_info.template_id != 20 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 22  && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 24 && $store.getters.user.template_info.template_id != 26 && $store.getters.user.template_info.template_id != 28 && $store.getters.user.template_info.template_id != 27 && $store.getters.user.template_info.template_id != 29 && $store.getters.user.template_info.template_id != 30 && $store.getters.user.template_info.template_id != 31 && $store.getters.user.template_info.template_id != 32 && $store.getters.user.template_info.template_id != 34 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 43 && $store.getters.user.template_info.org_id!=9555 && $store.getters.user.template_info.template_id != 60  && $store.getters.user.template_info.org_id!=10340 && $store.getters.user.template_info.org_id!=10387 && $store.getters.user.template_info.org_id!=10430 && $store.getters.user.template_info.org_id!=10441 && $store.getters.user.template_info.org_id!=10445 && $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469">L</span>
11
-                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id == 9 || $store.getters.user.template_info.template_id == 17 || $store.getters.user.template_info.template_id == 20 || $store.getters.user.template_info.template_id == 21 || $store.getters.user.template_info.template_id == 22 || $store.getters.user.template_info.template_id == 23 || $store.getters.user.template_info.template_id == 24 || $store.getters.user.template_info.template_id == 26 || $store.getters.user.template_info.template_id == 28 || $store.getters.user.template_info.template_id == 27 || $store.getters.user.template_info.template_id == 29 || $store.getters.user.template_info.template_id == 30 || $store.getters.user.template_info.template_id == 31 || $store.getters.user.template_info.template_id == 32 || $store.getters.user.template_info.template_id == 34 || $store.getters.user.template_info.template_id == 38 || $store.getters.user.template_info.template_id == 40 || $store.getters.user.template_info.template_id == 43 || $store.getters.user.template_info.org_id==9555 || $store.getters.user.template_info.template_id==60|| $store.getters.user.template_info.org_id==10340 || $store.getters.user.template_info.org_id==10387 || $store.getters.user.template_info.org_id==10430  || $store.getters.user.template_info.org_id==10441 || $store.getters.user.template_info.org_id==10445 || $store.getters.user.template_info.org_id==9829 ||  $store.getters.user.template_info.org_id==10440 ||  $store.getters.user.template_info.org_id==10469">ml</span>
10
+                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id != 9 && $store.getters.user.template_info.template_id != 17 && $store.getters.user.template_info.template_id != 20 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 22  && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 24 && $store.getters.user.template_info.template_id != 26 && $store.getters.user.template_info.template_id != 28 && $store.getters.user.template_info.template_id != 27 && $store.getters.user.template_info.template_id != 29 && $store.getters.user.template_info.template_id != 30 && $store.getters.user.template_info.template_id != 31 && $store.getters.user.template_info.template_id != 32 && $store.getters.user.template_info.template_id != 34 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 43 && $store.getters.user.template_info.org_id!=9555 && $store.getters.user.template_info.template_id != 60  && $store.getters.user.template_info.org_id!=10340 && $store.getters.user.template_info.org_id!=10387 && $store.getters.user.template_info.org_id!=10430 && $store.getters.user.template_info.org_id!=10441 && $store.getters.user.template_info.org_id!=10445 && $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469 && $store.getters.user.template_info.org_id!=10460">L</span>
11
+                    <span style="color:#7b8c9c"  v-if="$store.getters.user.template_info.template_id == 9 || $store.getters.user.template_info.template_id == 17 || $store.getters.user.template_info.template_id == 20 || $store.getters.user.template_info.template_id == 21 || $store.getters.user.template_info.template_id == 22 || $store.getters.user.template_info.template_id == 23 || $store.getters.user.template_info.template_id == 24 || $store.getters.user.template_info.template_id == 26 || $store.getters.user.template_info.template_id == 28 || $store.getters.user.template_info.template_id == 27 || $store.getters.user.template_info.template_id == 29 || $store.getters.user.template_info.template_id == 30 || $store.getters.user.template_info.template_id == 31 || $store.getters.user.template_info.template_id == 32 || $store.getters.user.template_info.template_id == 34 || $store.getters.user.template_info.template_id == 38 || $store.getters.user.template_info.template_id == 40 || $store.getters.user.template_info.template_id == 43 || $store.getters.user.template_info.org_id==9555 || $store.getters.user.template_info.template_id==60|| $store.getters.user.template_info.org_id==10340 || $store.getters.user.template_info.org_id==10387 || $store.getters.user.template_info.org_id==10430  || $store.getters.user.template_info.org_id==10441 || $store.getters.user.template_info.org_id==10445 || $store.getters.user.template_info.org_id==9829 ||  $store.getters.user.template_info.org_id==10440 ||  $store.getters.user.template_info.org_id==10469 ||  $store.getters.user.template_info.org_id==10460">ml</span>
12 12
                     &nbsp;&nbsp;&nbsp;&nbsp;
13 13
                     <span style="color:#7b8c9c" v-if="prescription_prop!=null && ($store.getters.user.template_info.org_id == 9671 || $store.getters.user.template_info.org_id == 10469)">处方脱水量:{{prescription_prop.prescription_water}}ml</span>
14 14
                     &nbsp;&nbsp;&nbsp;&nbsp;
@@ -21,7 +21,7 @@
21 21
                 <van-field v-model="timeValue" readonly @click="openPicker" @focus="inputFocus" v-if="isShow('实际治疗时长')" :required="isShow_title('实际治疗时长')" label="实际治疗时长" input-align="right"/>
22 22
                 <van-field v-model="formValue.actual_ultrafiltration" @focus="inputFocus" v-if="isShow('实际超滤量')" :required="isShow_title('实际超滤量')" type="number" input-align="right">
23 23
                     <template #label>
24
-                        <span v-if="(template_id == 6 && $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 56 || template_id == 60 || $store.getters.user.template_info.org_id == 9555 || $store.getters.user.template_info.org_id == 10307 || $store.getters.user.template_info.org_id == 10340 || $store.getters.user.template_info.org_id == 10387 || $store.getters.user.template_info.org_id == 10430 || $store.getters.user.template_info.org_id == 10432 || $store.getters.user.template_info.org_id == 10441 || $store.getters.user.template_info.org_id == 10445 || $store.getters.user.template_info.org_id == 10495">实际超滤量(ml)</span>
24
+                        <span v-if="(template_id == 6 && $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 27 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 47 || template_id == 56 || template_id == 60 || $store.getters.user.template_info.org_id == 9555 || $store.getters.user.template_info.org_id == 10307 || $store.getters.user.template_info.org_id == 10340 || $store.getters.user.template_info.org_id == 10387 || $store.getters.user.template_info.org_id == 10430 || $store.getters.user.template_info.org_id == 10432 || $store.getters.user.template_info.org_id == 10441 || $store.getters.user.template_info.org_id == 10445 || $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375">实际超滤量(ml)</span>
25 25
                         <span v-else>实际超滤量(L)</span>
26 26
                     </template>
27 27
                 </van-field>

+ 9 - 1
src/pages/main/newActionBar/assessmentBefore.vue Ver arquivo

@@ -512,6 +512,7 @@ import InforSubMenu from "../dialog/subMenu/InforSubMenu.vue"
512 512
 import {parseTime} from '@/utils'
513 513
 import { Toast } from 'vant'
514 514
 import { Dialog } from "vant";
515
+import { uParseTime } from "@/utils/tools";
515 516
 import { getDataConfig } from '@/utils/data'
516 517
 import checkBoxMenu from './components/checkBoxMenu'
517 518
 import DryWeightMenu from '../dialog/subMenu/dryWeightMenu'
@@ -790,6 +791,10 @@ created () {
790 791
    
791 792
   }
792 793
   console.log('998823323232323232', this.predialysis.id)
794
+  if(this.predialysis!=null && this.predialysis.id ==undefined && this.last_predialysis.id > 0){
795
+    console.log("上次我哦我我", this.last_predialysis.venous_catheterization)
796
+    this.formValue.venous_catheterization = this.last_predialysis.venous_catheterization
797
+  }
793 798
   console.log('last_predialysis2332323232', this.last_predialysis)
794 799
   if (this.predialysis.id == 0 && this.last_predialysis.id != 0) {
795 800
     let vascular_access_desc = getDataConfig(
@@ -804,7 +809,7 @@ created () {
804 809
     }
805 810
     this.formValue.blood_access_part_opera_id = vascular_access_desc_name
806 811
     this.formValue.blood_access_part_id = this.last_predialysis.blood_access_part_id
807
-   
812
+    
808 813
   }
809 814
 },
810 815
 computed: {
@@ -922,6 +927,9 @@ methods: {
922 927
        this.formValue.thromubus_v = ''
923 928
        this.formValue.thrombus_av = ''
924 929
      }
930
+     if(this.formValue.blood_access_noise == ""){
931
+       this.formValue.blood_access_noise = 0
932
+     }
925 933
      this.formValue = arr
926 934
      // 必填弹窗开始
927 935
        let ParamsQuery = this.formValue;

+ 1 - 1
src/pages/main/newActionBar/computer.vue Ver arquivo

@@ -693,7 +693,7 @@ export default {
693 693
       this.puncture_needle = this.last_order.puncture_needle;
694 694
       this.puncture_way = this.last_order.puncture_way;
695 695
       this.dialysis_dialyszers = this.last_order.dialysis_dialyszers;
696
-      this.dialysis_irrigation = this.last_order.dialysis_irrigation;
696
+      // this.dialysis_irrigation = this.last_order.dialysis_irrigation;
697 697
       this.blood_access_part_opera_id = this.last_order.blood_access_id;
698 698
       this.schedule_remark = this.last_order.schedule_remark;
699 699
       this.order_remark = this.last_order.order_remark;

+ 13 - 8
src/pages/main/newActionBar/dialysisPrescription.vue Ver arquivo

@@ -137,7 +137,8 @@
137 137
                 $store.getters.user.template_info.org_id!=10445 &&
138 138
                 $store.getters.user.template_info.org_id!=9829 &&
139 139
                 $store.getters.user.template_info.org_id!=10440 &&
140
-                $store.getters.user.template_info.org_id!=10469
140
+                $store.getters.user.template_info.org_id!=10469 &&
141
+                $store.getters.user.template_info.org_id!=10460 
141 142
               "
142 143
               >目标超滤量(L)</span
143 144
             >
@@ -175,7 +176,8 @@
175 176
                 $store.getters.user.template_info.org_id ==10445 ||
176 177
                 $store.getters.user.template_info.org_id ==9829 ||
177 178
                 $store.getters.user.template_info.org_id ==10440 ||
178
-                $store.getters.user.template_info.org_id == 10469
179
+                $store.getters.user.template_info.org_id == 10469 ||
180
+                $store.getters.user.template_info.org_id == 10460
179 181
               "
180 182
               >目标超滤量(ml)</span
181 183
             >
@@ -377,7 +379,7 @@
377 379
                     dialysisPrescription.anticoagulant != 1 &&
378 380
                     dialysisPrescription.anticoagulant != 12 && isShow_title('首剂')"
379 381
         >
380
-           <template #label v-if="$store.getters.user.template_info.org_id != 10101 && $store.getters.user.template_info.org_id != 10346  && $store.getters.user.template_info.template_id != 45 && $store.getters.user.template_info.template_id != 54  && $store.getters.user.template_info.org_id != 10340  && $store.getters.user.template_info.org_id != 10432 && $store.getters.user.template_info.org_id != 10441  && $store.getters.user.template_info.org_id != 10445 && $store.getters.user.template_info.org_id!=10447&& $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469&& $store.getters.user.template_info.org_id!=10471 && $store.getters.user.template_info.org_id!=10495 && $store.getters.user.template_info.org_id!=10375">
382
+           <template #label v-if="$store.getters.user.template_info.org_id != 10101 && $store.getters.user.template_info.org_id != 10346  && $store.getters.user.template_info.template_id != 45 && $store.getters.user.template_info.template_id != 54  && $store.getters.user.template_info.org_id != 10340  && $store.getters.user.template_info.org_id != 10432 && $store.getters.user.template_info.org_id != 10441  && $store.getters.user.template_info.org_id != 10445 && $store.getters.user.template_info.org_id!=10447&& $store.getters.user.template_info.org_id!=9829 && $store.getters.user.template_info.org_id!=10440 && $store.getters.user.template_info.org_id!=10469&& $store.getters.user.template_info.org_id!=10471 && $store.getters.user.template_info.org_id!=10495 && $store.getters.user.template_info.org_id!=10375 && $store.getters.user.template_info.org_id!=10223">
381 383
                       <span v-if="dialysisPrescription.anticoagulant == 0 || dialysisPrescription.anticoagulant == -2">首剂(mg)</span>
382 384
 
383 385
                       <span v-if="dialysisPrescription.anticoagulant == 2 && $store.getters.user.template_info.template_id != 13 && $store.getters.user.template_info.template_id != 21 && $store.getters.user.template_info.template_id != 23 && $store.getters.user.template_info.template_id != 40 && $store.getters.user.template_info.template_id != 41  && $store.getters.user.template_info.template_id != 6 && $store.getters.user.template_info.template_id != 38 && $store.getters.user.template_info.template_id != 47 && $store.getters.user.template_info.template_id != 54 && $store.getters.user.template_info.org_id != 10234 && $store.getters.user.template_info.org_id !=10495 && $store.getters.user.template_info.org_id !=10375 ||  $store.getters.user.template_info.org_id ==9538 || $store.getters.user.template_info.org_id !=10340 || $store.getters.user.template_info.org_id !=10432  || $store.getters.user.template_info.org_id !=9829   ">首剂
@@ -463,7 +465,8 @@
463 465
                   $store.getters.user.template_info.org_id != 10340 &&
464 466
                   $store.getters.user.template_info.org_id != 10432 &&
465 467
                   $store.getters.user.template_info.org_id != 10495 && 
466
-                  $store.getters.user.template_info.org_id != 10375
468
+                  $store.getters.user.template_info.org_id != 10375 &&
469
+                  $store.getters.user.template_info.org_id != 10223
467 470
                   )
468 471
               "
469 472
             >
@@ -492,7 +495,9 @@
492 495
                   $store.getters.user.template_info.org_id == 10340 ||
493 496
                   $store.getters.user.template_info.org_id == 10432 ||
494 497
                   $store.getters.user.template_info.org_id == 10495 ||
495
-                  $store.getters.user.template_info.org_id == 10375)
498
+                  $store.getters.user.template_info.org_id == 10375 ||
499
+                  $store.getters.user.template_info.org_id == 10223 
500
+                  )
496 501
               "
497 502
               >维持(mg/h)</span
498 503
             >
@@ -538,7 +543,7 @@
538 543
               >
539 544
               <span v-else>维持(iu/h)</span>
540 545
             </span>
541
-            <span v-if="dialysisPrescription.anticoagulant == 11"
546
+            <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13"
542 547
               >维持(iu/h)</span
543 548
             >
544 549
           </template>
@@ -660,7 +665,7 @@
660 665
               >
661 666
               <span v-else>总量(iu)</span>
662 667
             </span>
663
-            <span v-if="dialysisPrescription.anticoagulant == 11"
668
+            <span v-if="dialysisPrescription.anticoagulant == 11 || dialysisPrescription.anticoagulant == 13"
664 669
               >总量(iu)</span
665 670
             >
666 671
           </template>
@@ -1022,7 +1027,7 @@
1022 1027
           v-model="dialysisPrescription.displace_speed"
1023 1028
           @focus="inputFocus"
1024 1029
           v-if="(dialysisPrescription.mode_id==2||dialysisPrescription.mode_id==5||dialysisPrescription.mode_id==12)&&isShow('置换速度')"
1025
-          label="置换速度"
1030
+          label="置换速度(L/h)"
1026 1031
           input-align="right"
1027 1032
           :required="(dialysisPrescription.mode_id==2||dialysisPrescription.mode_id==5||dialysisPrescription.mode_id==12)&&isShow_title('置换速度')"
1028 1033
         />

+ 12 - 3
src/pages/main/newActionBar/monitoring.vue Ver arquivo

@@ -128,6 +128,7 @@
128 128
                   <!-- <th v-if="isShow('血浓量')" width="60px">血浓量</th> -->
129 129
                   <th v-if="isShow('脱水')" width="60px">脱水</th>
130 130
                   <th v-if="isShow('KT/V') && (org_id == 9987|| org_id == 10215 || org_id == 9800)" width="60px">KT/V</th>
131
+                
131 132
                   <th v-if="isShow('病情变化')" width="92px" >病情变化</th>
132 133
                   <th v-if="isShow('处理')" width="92px" >处理</th>
133 134
                   <th v-if="isShow('结果')" width="92px">结果</th>
@@ -183,6 +184,7 @@
183 184
                   <td v-if="isShow('血浓量')" width="60px">{{item.blood_thickness}}</td>
184 185
                   <!-- <td v-if="isShow('血浓量')" width="60px">{{item.blood_monitor}}</td> -->
185 186
                   <td v-if="isShow('脱水')" width="60px">{{item.dehydration}}</td>
187
+
186 188
                   <td v-if="isShow('KT/V') && (org_id == 9987 || org_id ==10215 || org_id == 9800)">{{item.ktv?item.ktv:''}}</td>
187 189
                   <td v-if="isShow('病情变化')">{{item.symptom}}</td>
188 190
                   <td v-if="isShow('处理')">{{item.dispose}}</td>
@@ -268,7 +270,7 @@
268 270
                           <van-field v-model="form.dialysate_temperature" @focus="inputFocus" @keydown='changeFocus' v-if="isShow('透析液温度')" :required="isShow_title('透析液温度')" label="透析液温度(℃)" type="number" input-align="right" />
269 271
                           <van-field v-model="form.replacement_rate" @focus="inputFocus" @keydown='changeFocus' v-if="isShow('置换率')" :required="isShow_title('置换率')" type="number" input-align="right">
270 272
                               <template #label>
271
-                                  <span v-if="template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29  || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || org_id == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10410 || org_id ==10375">置换率(ml/min)</span>
273
+                                  <span v-if="template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29  || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || org_id == 10340 || org_id == 10445 || org_id == 10410 || org_id ==10410">置换率(ml/min)</span>
272 274
                                   <span v-else>置换率(L/h)</span>
273 275
                               </template>
274 276
                           </van-field>
@@ -913,7 +915,7 @@ methods: {
913 915
     var d = newDate.getDate()
914 916
     var record_date = y + '/' + (m < 10 ? '0' + m : m) + '/' + (d < 10 ? '0' + d : d)
915 917
     this.form.monitor_date = new Date(record_date + ' 00:00:00').getTime() / 1000
916
-
918
+   
917 919
     this.getLastRecordTody()
918 920
   },
919 921
   submitAction: function () {
@@ -1591,8 +1593,15 @@ methods: {
1591 1593
       this.today_last_monitor_record = resp.monitor
1592 1594
 
1593 1595
       // this.form.operate_time = Date.parse(new Date())
1594
-      this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
1596
+     
1595 1597
 
1598
+      if(this.org_id == 10510){
1599
+        console.log("wowoowowwo", Date.parse(new Date()))
1600
+        this.form.operate_time = Date.parse(new Date())
1601
+      }else{
1602
+        this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
1603
+      }
1604
+  
1596 1605
       if(this.org_id == 9829){
1597 1606
         this.form.pulse_frequency = 80
1598 1607
       }else{

+ 11 - 5
src/pages/main/newActionBar/plane.vue Ver arquivo

@@ -287,6 +287,8 @@ export default {
287 287
   created() {
288 288
     console.log("lastOrder233223323232", this.last_order);
289 289
     console.log("this.record8888348843834", this.record);
290
+   
291
+  
290 292
     this.teach = getDataConfig("education", "education");
291 293
     this.getPermission();
292 294
     var date = this.$route.query && this.$route.query.date;
@@ -368,10 +370,12 @@ export default {
368 370
       this.formValue.catheter = this.last_order.catheter;
369 371
       this.formValue.puncture_point_haematoma =
370 372
         this.last_order.puncture_point_haematoma;
371
-      this.formValue.internal_fistula =
372
-        this.last_order.blood_access_internal_fistula;
373
+      // this.formValue.internal_fistula = this.last_order.blood_access_internal_fistula
374
+      this.formValue.internal_fistula = "正常"
373 375
       this.formValue.cruor = this.last_order.cruor;
374 376
       this.formValue.mission = this.last_order.mission;
377
+
378
+    
375 379
     }
376 380
   },
377 381
   mounted() {
@@ -393,9 +397,12 @@ export default {
393 397
    if (this.record != null && this.last_order != null && this.record.stage == 1) {
394 398
      this.formValue.catheter = this.last_order.catheter
395 399
      // this.formValue.puncture_point_haematoma = this.last_order.puncture_point_haematoma
396
-     this.formValue.internal_fistula = this.last_order.blood_access_internal_fistula
400
+     this.formValue.internal_fistula = "正常"
397 401
      // this.formValue.cruor = this.last_order.cruor
398 402
      this.formValue.mission = this.last_order.mission
403
+      
404
+     console.log("woowowowowowoowowwoowow",this.formValue.internal_fistula)
405
+     
399 406
     }
400 407
    }
401 408
   },
@@ -510,8 +517,7 @@ export default {
510 517
         ParamsQuery["puncture_point_haematoma"] = parseInt(
511 518
           this.formValue.puncture_point_haematoma
512 519
         );
513
-        ParamsQuery["internal_fistula"] =
514
-          this.formValue.internal_fistula;
520
+        ParamsQuery["internal_fistula"] = this.formValue.internal_fistula;
515 521
         ParamsQuery["catheter"] = this.formValue.catheter;
516 522
         ParamsQuery["cruor"] = this.formValue.cruor;
517 523
         ParamsQuery["mission"] = this.formValue.mission;

+ 14 - 24
src/pages/main/template/DialysisPrintOrderSix.vue Ver arquivo

@@ -31,17 +31,17 @@
31 31
                 <check-box  :checked="patientInfo_source_1 "></check-box>
32 32
             </div>
33 33
         </div>
34
-        <div class="inline_block">
34
+        <div class="inline_block" v-if="org_id!=10510">
35 35
           病区:
36 36
             <div class="under_line" style="width: 50px;text-align: center;">
37 37
                 {{'/'}}
38 38
             </div>
39 39
         </div>
40
-        <div class="inline_block">
40
+        <div class="inline_block" v-if="org_id!=10510">
41 41
           床号:
42 42
             <div class="under_line" style="width: 50px;text-align: center;">
43
-              <span v-if="org_id!=9675 && org_id!=10447"> {{'/'}}</span>
44
-              <span v-if="org_id ==9675 || org_id==10447"> {{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}}</span>
43
+              <span v-if="org_id!=9675 && org_id!=10447 && org_id!=10460"> {{'/'}}</span>
44
+              <span v-if="org_id ==9675 || org_id==10447 || org_id == 10460"> {{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}}</span>
45 45
             </div>
46 46
         </div>
47 47
         <div class="inline_block">
@@ -432,15 +432,15 @@
432 432
                   </div>
433 433
                   <div class="inline_block" style="flex:1;" v-if="org_id!=10469">
434 434
                     计划超滤量:
435
-                    <div class="under_line" style="width: 150px;text-align: center">
435
+                    <div class="under_line" style="width: 100px;text-align: center">
436 436
                       {{prescription.target_ultrafiltration?prescription.target_ultrafiltration:'/'}}
437 437
                     </div>
438
-                    <span v-if="org_id == 9829 || org_id==10440 || org_id==10469 || org_id==10471">ml</span>
439
-                    <span v-if="org_id!= 9829 && org_id!=10440 && org_id!=10469 && org_id!=10471"> L</span>
438
+                    <span v-if="org_id == 9829 || org_id==10440 || org_id==10469 || org_id==10471|| org_id == 10460">ml</span>
439
+                    <span v-if="org_id!= 9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460"> L</span>
440 440
                   </div>
441 441
                   <div class="inline_block" style="flex:1;">
442 442
                     处方脱水量:
443
-                    <div class="under_line" style="width: 150px;text-align: center">
443
+                    <div class="under_line" style="width: 100px;text-align: center">
444 444
                       {{prescription.prescription_water?prescription.prescription_water:'/'}}
445 445
                     </div>
446 446
                    ml
@@ -476,7 +476,7 @@
476 476
                     </div>
477 477
                     mmol/L
478 478
                   </div>
479
-                  <div class="inline_block" style="margin-left:10px;">
479
+                  <div class="inline_block" style="margin-left:10px;" v-if="org_id!=10510">
480 480
                   流量:
481 481
                     <div class="under_line" style="width: 50px;text-align: center;">
482 482
                       {{prescription.dialysate_flow?prescription.dialysate_flow:'/'}}
@@ -737,17 +737,6 @@
737 737
                       <td width="50" v-if="org_id ==10490">碳酸氢钠用量<br />(ml)</td>
738 738
                       <td width="200">病情变化及处理</td>
739 739
 
740
-                      <!-- <td width="100">时间</td>
741
-                      <td width="30">T<br>C°</td>
742
-                      <td width="30">P<br/>次/分</td>
743
-                      <td width="30">R<br/>次/分</td>
744
-                      <td width="100">BP<br/>mmHg</td>
745
-                      <td width="60">静脉压/动脉压<br/>mmHg</td>
746
-                      <td width="80">血流量<br/>ml/min</td>
747
-                      <td width="90">超滤量累计L</td>
748
-                      <td width="80">钠浓度<br/>mmol/L</td>
749
-                      <td width="240">病情特殊情况处理<br/>及专科护理措施记录</td>
750
-                      <td  width="100">护士签名</td> -->
751 740
                     </tr>
752 741
 
753 742
                     <tr v-for="(monitor, monindex) in monitors" :key="monindex">
@@ -783,6 +772,7 @@
783 772
                           {{ monitor.accumulated_blood_volume }}
784 773
                         </td>
785 774
                         <td width="50" v-if="org_id ==10490">{{monitor.dicarbonate?monitor.dicarbonate:"" }}<br /></td>
775
+                       <td v-if="org_id == 10510 || org_id ==10375">{{ monitor.ktv }}</td>
786 776
                       <td style="line-height:16px;padding:0px;">
787 777
                         <div style="min-height:35px;line-height:35px; overflow:hidden;">
788 778
                           <span  style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
@@ -920,17 +910,17 @@
920 910
                   <check-box  :checked="patientInfo_source_1 "></check-box>
921 911
               </div>
922 912
           </div>
923
-          <div class="inline_block">
913
+          <div class="inline_block" v-if="org_id!=10510">
924 914
             病区:
925 915
               <div class="under_line" style="width: 50px;text-align: center;">
926 916
                   {{'/'}}
927 917
               </div>
928 918
           </div>
929
-          <div class="inline_block">
919
+          <div class="inline_block" v-if="org_id!=10510">
930 920
             床号:
931 921
               <div class="under_line" style="width: 50px;text-align: center;">
932
-                <span v-if="org_id!=9675 && org_id!=10447">{{'/'}}</span>
933
-                <span v-if="org_id==9675 || org_id ==10447">
922
+                <span v-if="org_id!=9675 && org_id!=10447 && org_id!=10460">{{'/'}}</span>
923
+                <span v-if="org_id==9675 || org_id ==10447 || org_id == 10460">
934 924
                  {{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}}
935 925
                 </span>
936 926
               </div>

+ 56 - 79
src/pages/main/template/DialysisPrintOrdersixtyseven.vue Ver arquivo

@@ -107,7 +107,7 @@
107 107
                     }}
108 108
                   </span>
109 109
                   <span style="width: 14%;">置换总量:
110
-                    {{ prescription.displace_liqui_value ? prescription.displace_liqui_value : "/" }}
110
+                    {{ prescription.displace_liqui_value ? prescription.displace_liqui_value : "/" }}L
111 111
                   </span>
112 112
                 </td>
113 113
               </tr>
@@ -190,7 +190,49 @@
190 190
               </tr>
191 191
               <tr>
192 192
                 <td colspan="4">抗凝剂:
193
-                  {{prescription.anticoagulant_name?prescription.anticoagulant_name : "/"}}
193
+                   {{prescription.anticoagulant_name?prescription.anticoagulant_name : "/"}}
194
+
195
+                    首剂:{{prescription.anticoagulant_shouji?prescription.anticoagulant_shouji:'/'}}
196
+                      <span>
197
+                        <span v-if="prescription.anticoagulant == 4">iu</span>
198
+                        <span v-if="prescription.anticoagulant == 3">iu</span>
199
+                        <span v-if="prescription.anticoagulant == 2">mg</span>
200
+                        <span v-if="prescription.anticoagulant == 5">ml</span>
201
+                        <span v-if="prescription.anticoagulant == 6">iu</span>
202
+                      <span v-if="prescription.anticoagulant == 7">iu</span>
203
+                      <span v-if="prescription.anticoagulant == 8">iu</span>
204
+                      <span v-if="prescription.anticoagulant == 9">iu</span>
205
+                      <span v-if="prescription.anticoagulant == 10">iu</span>
206
+                      <span v-if="prescription.anticoagulant == 11">iu</span>
207
+                      <span v-if="prescription.anticoagulant == 13">iu</span>
208
+
209
+                      </span>
210
+                   维持:{{ prescription.anticoagulant_weichi?prescription.anticoagulant_weichi:"/" }}
211
+                        <span v-if="prescription.anticoagulant == 2">mg/h</span>
212
+                        <span v-if="prescription.anticoagulant == 3">iu/h</span>
213
+                        <span v-if="prescription.anticoagulant == 4">ml</span>
214
+                        <span v-if="prescription.anticoagulant == 5">ml/h</span>
215
+                        <span v-if="prescription.anticoagulant == 6">iu/h</span>
216
+                        <span v-if="prescription.anticoagulant == 7">iu/h</span>
217
+                        <span v-if="prescription.anticoagulant == 8">iu/h</span>
218
+                        <span v-if="prescription.anticoagulant == 9">iu/h</span>
219
+                        <span v-if="prescription.anticoagulant == 10">iu/h</span>
220
+                        <span v-if="prescription.anticoagulant == 11">iu/h</span>
221
+                        <span v-if="prescription.anticoagulant == 13">iu/h</span>
222
+
223
+                   总量: {{prescription.anticoagulant_zongliang?prescription.anticoagulant_zongliang:'/'}}
224
+                       <span v-if="prescription.anticoagulant == 2">mg</span>
225
+                       <span v-if="prescription.anticoagulant == 3">iu</span>
226
+                       <span v-if="prescription.anticoagulant == 4">ml</span>
227
+                       <span v-if="prescription.anticoagulant == 5">ml</span>
228
+                       <span v-if="prescription.anticoagulant == 6">iu</span>
229
+                       <span v-if="prescription.anticoagulant == 7">iu</span>
230
+                       <span v-if="prescription.anticoagulant == 8">iu</span>
231
+                       <span v-if="prescription.anticoagulant == 9">iu</span>
232
+                       <span v-if="prescription.anticoagulant == 10">iu</span>
233
+                      <span v-if="prescription.anticoagulant == 11">iu</span>
234
+                      <span v-if="prescription.anticoagulant == 13">iu</span>
235
+
194 236
                 </td>
195 237
               </tr>
196 238
               <tr>
@@ -221,17 +263,16 @@
221 263
                   处方医生:
222 264
                   <span
223 265
                     style="height: 30px; display: inline-block"
224
-                      v-if="setAdminUserES(doctor_advices[0].advice_doctor) == ''"
225 266
                       >
226 267
                      {{ getAdminUser(doctor_advices[0].advice_doctor) }}
227 268
                   </span>
228
-                  <img
269
+                  <!-- <img
229 270
                     style="height: 40px"
230 271
                     :src="setAdminUserES(doctor_advices[0].advice_doctor)"
231 272
                     alt=""
232 273
                     srcset=""
233 274
                     v-else
234
-                  />
275
+                  /> -->
235 276
                 </td>
236 277
               </tr>
237 278
             </table>
@@ -282,17 +323,10 @@
282 323
                 <td>
283 324
                   <span
284 325
                     style="height: 30px; display: inline-block"
285
-                      v-if="setAdminUserES(monitor.monitoring_nurse) == ''"
286 326
                       >
287 327
                      {{ getAdminUser(monitor.monitoring_nurse) }}
288 328
                   </span>
289
-                  <img
290
-                    style="height: 40px"
291
-                    :src="setAdminUserES(monitor.monitoring_nurse)"
292
-                    alt=""
293
-                    srcset=""
294
-                    v-else
295
-                  />
329
+                
296 330
                 </td>
297 331
               </tr>
298 332
             </table>
@@ -353,16 +387,10 @@
353 387
 
354 388
                 <td height="32px">
355 389
                   <span
356
-                    v-if="setAdminUserES(advice.advice_doctor) == ''"
390
+                   
357 391
                     >{{ getAdminUser(advice.advice_doctor) }}</span
358 392
                   >
359
-                  <img
360
-                    style="height: 30px"
361
-                    :src="setAdminUserES(advice.advice_doctor)"
362
-                    alt=""
363
-                    srcset=""
364
-                    v-else
365
-                  />
393
+                 
366 394
                 </td>
367 395
                 <td height="32px">
368 396
                   <span v-if="advice.execution_time">{{
@@ -371,16 +399,9 @@
371 399
                 </td>
372 400
                 <td height="32px">
373 401
                   <span
374
-                    v-if="setAdminUserES(advice.execution_staff) == ''"
375 402
                     >{{ getAdminUser(advice.execution_staff) }}</span
376 403
                   >
377
-                  <img
378
-                    style="height: 30px"
379
-                    :src="setAdminUserES(advice.execution_staff)"
380
-                    alt=""
381
-                    srcset=""
382
-                    v-else
383
-                  />
404
+                 
384 405
                 </td>
385 406
               </tr>
386 407
             </table>
@@ -471,49 +492,19 @@
471 492
                 <td width="10%">上机护士:</td>
472 493
                 <td width="10%">
473 494
                  
474
-                <span
475
-                  v-if="
476
-                    setAdminUserES(
477
-                      dialysisOrder == null
478
-                        ? 0
479
-                        : dialysisOrder.start_nurse
480
-                    ) == ''
481
-                  "
482
-                >
495
+                <span>
483 496
                   {{
484 497
                     getAdminUser(
485 498
                       dialysisOrder == null
486 499
                         ? 0
487 500
                         : dialysisOrder.start_nurse
488 501
                     )
489
-                  }}</span
490
-                >
491
-                <img
492
-                  style="height: 30px"
493
-                  :src="
494
-                    setAdminUserES(
495
-                      dialysisOrder == null
496
-                        ? 0
497
-                        : dialysisOrder.start_nurse
498
-                    )
499
-                  "
500
-                  alt=""
501
-                  srcset=""
502
-                  v-else
503
-                />
502
+                  }}</span>
504 503
                  
505 504
                 </td>
506 505
                 <td width="18%">核对护士:
507 506
                 
508
-                  <span
509
-                  v-if="
510
-                    setAdminUserES(
511
-                      dialysisOrder == null
512
-                        ? 0
513
-                        : dialysisOrder.start_nurse
514
-                    ) == ''
515
-                  "
516
-                >
507
+                  <span>
517 508
                   {{
518 509
                     getAdminUser(
519 510
                       dialysisOrder == null
@@ -522,32 +513,18 @@
522 513
                     )
523 514
                   }}</span
524 515
                 >
525
-                <img
526
-                  style="height: 30px"
527
-                  :src="
528
-                    setAdminUserES(
529
-                      dialysisOrder == null
530
-                        ? 0
531
-                        : dialysisOrder.start_nurse
532
-                    )
533
-                  "
534
-                  alt=""
535
-                  srcset=""
536
-                  v-else
537
-                />
516
+               
538 517
                  
539 518
 
540 519
 
541 520
                 </td>
542 521
                 <td width="10%"></td>
543 522
                 <td width="15%">下机护士:
544
-                  <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.finish_nurse)}}</span>
545
-                      <img style="height:20px;" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse)" alt="" srcset="" v-else>
523
+                  <span >{{getAdminUser(dialysisOrder==null?0:dialysisOrder.finish_nurse)}}</span>
546 524
                 </td>
547 525
                 <td width="10%"></td>
548 526
                 <td width="10%">医生:
549
-                  <span v-if="setAdminUserES(prescription.creater) == ''">{{getAdminUser(prescription.creater)}}</span>
550
-                   <img style="height:20px;" :src="setAdminUserES(prescription.creater)" alt="" srcset="" v-else>
527
+                  <span>{{getAdminUser(prescription.creater)}}</span>
551 528
                 </td>
552 529
                 <td width="10%"></td>
553 530
               </tr>

+ 1 - 1
src/pages/main/today/assessmentAfter.vue Ver arquivo

@@ -32,7 +32,7 @@
32 32
         <li v-if="isShow('实际超滤量')">
33 33
           <label for="sjcll">实际超滤量: </label>
34 34
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
35
-          <span v-if="(template_id == 6&& $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 60 || this.$store.getters.user.template_info.org_id == 9555 || template_id == 27  || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10387 ||  $store.getters.user.template_info.org_id == 10430 ||  $store.getters.user.template_info.org_id == 10432 ||  $store.getters.user.template_info.org_id == 10441  ||  $store.getters.user.template_info.org_id == 10445 ||  $store.getters.user.template_info.org_id == 10410 ||  $store.getters.user.template_info.org_id == 10495" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
35
+          <span v-if="(template_id == 6&& $store.getters.user.template_info.org_id !=10447) || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 17 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 36 || template_id == 38 || template_id == 40 || template_id == 43 || template_id == 44 || template_id == 60 || this.$store.getters.user.template_info.org_id == 9555 || template_id == 27  || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10387 ||  $store.getters.user.template_info.org_id == 10430 ||  $store.getters.user.template_info.org_id == 10432 ||  $store.getters.user.template_info.org_id == 10441  ||  $store.getters.user.template_info.org_id == 10445 ||  $store.getters.user.template_info.org_id == 10410 ||  $store.getters.user.template_info.org_id == 10495 || $store.getters.user.template_info.org_id == 10375" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
36 36
           <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
37 37
         </li>
38 38
         <li v-if="isShow('透析器')">

+ 7 - 3
src/pages/main/today/dialysisOff.vue Ver arquivo

@@ -19,7 +19,7 @@
19 19
           <label>下机时间 :</label>
20 20
           <span class="content" style="font-size: 0.34rem">{{ end_time }}</span>
21 21
         </li>
22
-       <li>
22
+       <li v-if="org_id!=0&&org_id!=10460">
23 23
           <label>宣教知识 :</label>
24 24
           <span class="content" style="font-size: 0.34rem">{{ this.record.mission }}</span>
25 25
         </li>
@@ -54,7 +54,8 @@ export default {
54 54
   name: 'DialysisComputer',
55 55
   data () {
56 56
     return {
57
-      title: '透析下机 '
57
+      title: '透析下机 ',
58
+      org_id:0,
58 59
     }
59 60
   },
60 61
   props: {
@@ -93,7 +94,10 @@ export default {
93 94
       }
94 95
     }
95 96
   },
96
-  methods: {}
97
+  methods: {},
98
+  created(){
99
+     this.org_id = this.$store.getters.user.template_info.org_id;
100
+  }
97 101
 }
98 102
 </script>
99 103
 

+ 8 - 8
src/pages/main/today/dialysisPrescription.vue Ver arquivo

@@ -16,8 +16,8 @@
16 16
         <li v-if="isShow('目标超滤量')">
17 17
           <label>目标超滤量 :</label>
18 18
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
19
-          <span v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.org_id!=9555 && this.$store.getters.user.template_info.template_id != 27  && this.$store.getters.user.template_info.template_id != 30  && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 43 && this.$store.getters.user.template_info.template_id != 45  && this.$store.getters.user.template_info.template_id != 46 && this.$store.getters.user.template_info.template_id != 48 && this.$store.getters.user.template_info.template_id != 56 &&  this.$store.getters.user.template_info.org_id!=10395 &&  this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.template_id != 60 &&  this.$store.getters.user.template_info.org_id!=10430 &&  this.$store.getters.user.template_info.org_id!=10432 &&  this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=9829 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469" class="unit" >{{target_ultrafiltration != '0'?"L":''}}</span>
20
-          <span v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.template_id==27 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 43 || this.$store.getters.user.template_info.template_id == 45 || this.$store.getters.user.template_info.template_id == 46 || this.$store.getters.user.template_info.template_id == 48 || this.$store.getters.user.template_info.template_id == 56 || this.$store.getters.user.template_info.org_id==10395 || this.$store.getters.user.template_info.org_id ==10340  || this.$store.getters.user.template_info.template_id == 60 || this.$store.getters.user.template_info.org_id ==10430 || this.$store.getters.user.template_info.org_id ==10432  || this.$store.getters.user.template_info.org_id ==10441 || this.$store.getters.user.template_info.org_id ==10445 || this.$store.getters.user.template_info.org_id ==9829 || this.$store.getters.user.template_info.org_id ==10440 || this.$store.getters.user.template_info.org_id == 10469" class="unit" >{{target_ultrafiltration != '0'?"ml":''}}</span>
19
+          <span v-if="this.$store.getters.user.template_info.template_id != 9 && this.$store.getters.user.template_info.template_id != 17 && this.$store.getters.user.template_info.template_id != 20 && this.$store.getters.user.template_info.template_id != 21 && this.$store.getters.user.template_info.template_id != 22 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 24 && this.$store.getters.user.template_info.template_id != 26 && this.$store.getters.user.template_info.template_id != 28 && this.$store.getters.user.template_info.org_id!=9555 && this.$store.getters.user.template_info.template_id != 27  && this.$store.getters.user.template_info.template_id != 30  && this.$store.getters.user.template_info.template_id != 32 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 43 && this.$store.getters.user.template_info.template_id != 45  && this.$store.getters.user.template_info.template_id != 46 && this.$store.getters.user.template_info.template_id != 48 && this.$store.getters.user.template_info.template_id != 56 &&  this.$store.getters.user.template_info.org_id!=10395 &&  this.$store.getters.user.template_info.org_id!=10340 && this.$store.getters.user.template_info.template_id != 60 &&  this.$store.getters.user.template_info.org_id!=10430 &&  this.$store.getters.user.template_info.org_id!=10432 &&  this.$store.getters.user.template_info.org_id!=10441 && this.$store.getters.user.template_info.org_id!=10445 && this.$store.getters.user.template_info.org_id!=9829 && this.$store.getters.user.template_info.org_id!=10440 && this.$store.getters.user.template_info.org_id!=10469 && this.$store.getters.user.template_info.org_id!=10460" class="unit" >{{target_ultrafiltration != '0'?"L":''}}</span>
20
+          <span v-if="this.$store.getters.user.template_info.template_id == 9 || this.$store.getters.user.template_info.template_id == 17 || this.$store.getters.user.template_info.template_id == 20 || this.$store.getters.user.template_info.template_id == 21 || this.$store.getters.user.template_info.template_id == 22 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 24 || this.$store.getters.user.template_info.template_id == 26 || this.$store.getters.user.template_info.template_id == 28 || this.$store.getters.user.template_info.org_id==9555 || this.$store.getters.user.template_info.template_id==27 || this.$store.getters.user.template_info.template_id == 30 || this.$store.getters.user.template_info.template_id == 32 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 43 || this.$store.getters.user.template_info.template_id == 45 || this.$store.getters.user.template_info.template_id == 46 || this.$store.getters.user.template_info.template_id == 48 || this.$store.getters.user.template_info.template_id == 56 || this.$store.getters.user.template_info.org_id==10395 || this.$store.getters.user.template_info.org_id ==10340  || this.$store.getters.user.template_info.template_id == 60 || this.$store.getters.user.template_info.org_id ==10430 || this.$store.getters.user.template_info.org_id ==10432  || this.$store.getters.user.template_info.org_id ==10441 || this.$store.getters.user.template_info.org_id ==10445 || this.$store.getters.user.template_info.org_id ==9829 || this.$store.getters.user.template_info.org_id ==10440 || this.$store.getters.user.template_info.org_id == 10469 ||  this.$store.getters.user.template_info.org_id == 10460" class="unit" >{{target_ultrafiltration != '0'?"ml":''}}</span>
21 21
           <!--<span-->
22 22
           <!--class="unit"-->
23 23
           <!--v-if="this.$store.getters.user.template_info.template_id == 6"-->
@@ -42,7 +42,7 @@
42 42
         </li>
43 43
 
44 44
        <li v-if="isShow('置换速度')">
45
-          <label>置换速度 :</label>
45
+          <label>置换速度(L/h) :</label>
46 46
           <span class="content">{{this.prescription.displace_speed}}</span>
47 47
 
48 48
         </li>
@@ -98,7 +98,7 @@
98 98
           <label>首剂 : </label>
99 99
           <span class="content">{{anticoagulant_shouji != '0'?anticoagulant_shouji:''}}</span>
100 100
           <!--<span class="unit">{{anticoagulant_shouji != '0'?"mg":''}}</span>-->
101
-          <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10346   && this.$store.getters.user.template_info.template_id != 45 && this.$store.getters.user.template_info.org_id != 10340  && this.$store.getters.user.template_info.org_id != 10432 && this.$store.getters.user.template_info.org_id != 10495 ">
101
+          <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10346   && this.$store.getters.user.template_info.template_id != 45 && this.$store.getters.user.template_info.org_id != 10340  && this.$store.getters.user.template_info.org_id != 10432 && this.$store.getters.user.template_info.org_id != 10495 && this.$store.getters.user.template_info.org_id != 10223 ">
102 102
             <span class="unit" v-if="this.prescription.anticoagulant == 2 && this.$store.getters.user.template_info.template_id != 13  && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.org_id != 10234  && this.$store.getters.user.template_info.org_id != 10340 && this.$store.getters.user.template_info.org_id != 10432 && this.$store.getters.user.template_info.org_id != 10471 && this.$store.getters.user.template_info.org_id != 10495 && this.$store.getters.user.template_info.org_id != 10375">{{anticoagulant_shouji != '0'?"iu":""}}</span>
103 103
             <span class="unit" v-if="this.prescription.anticoagulant == 2 && (this.$store.getters.user.template_info.template_id == 13 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.org_id == 10234 ||  this.$store.getters.user.template_info.org_id == 10340  ||  this.$store.getters.user.template_info.org_id == 10432  ||  this.$store.getters.user.template_info.org_id == 10471 ||  this.$store.getters.user.template_info.org_id == 10495 || this.$store.getters.user.template_info.org_id == 10375)">{{anticoagulant_shouji != '0'?"mg":""}}</span>
104 104
             <span class="unit" v-if="this.prescription.anticoagulant == 3">
@@ -133,9 +133,9 @@
133 133
             <span class="unit" v-if="this.prescription.anticoagulant == 2">{{anticoagulant_weichi != '0'?"mg/h":""}}</span>
134 134
             <span class="unit" v-else>{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
135 135
           </span>
136
-         <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10013  && this.$store.getters.user.template_info.org_id != 10014 && this.$store.getters.user.template_info.template_id != 45">
137
-            <span class="unit" v-if="this.prescription.anticoagulant == 2 && this.$store.getters.user.template_info.template_id != 13 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 38  && this.$store.getters.user.template_info.org_id != 10346 && this.$store.getters.user.template_info.org_id != 10340  && this.$store.getters.user.template_info.org_id != 10432  && this.$store.getters.user.template_info.org_id != 10471 && this.$store.getters.user.template_info.org_id != 10495 && this.$store.getters.user.template_info.org_id != 10375">{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
138
-            <span class="unit" v-if="this.prescription.anticoagulant == 2 && (this.$store.getters.user.template_info.template_id == 13 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.org_id == 10346 || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10432 || this.$store.getters.user.template_info.org_id == 10471 || this.$store.getters.user.template_info.org_id == 10495 || this.$store.getters.user.template_info.org_id == 10375 )">{{anticoagulant_weichi != '0'?"mg/h":""}}</span>
136
+         <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10013  && this.$store.getters.user.template_info.org_id != 10014 && this.$store.getters.user.template_info.template_id != 45 && this.$store.getters.user.template_info.org_id != 10223">
137
+            <span class="unit" v-if="this.prescription.anticoagulant == 2 && this.$store.getters.user.template_info.template_id != 13 && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 38  && this.$store.getters.user.template_info.org_id != 10346 && this.$store.getters.user.template_info.org_id != 10340  && this.$store.getters.user.template_info.org_id != 10432  && this.$store.getters.user.template_info.org_id != 10471 && this.$store.getters.user.template_info.org_id != 10495 && this.$store.getters.user.template_info.org_id != 10375 && this.$store.getters.user.template_info.org_id != 10223">{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
138
+            <span class="unit" v-if="this.prescription.anticoagulant == 2 && (this.$store.getters.user.template_info.template_id == 13 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.org_id == 10346 || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10432 || this.$store.getters.user.template_info.org_id == 10471 || this.$store.getters.user.template_info.org_id == 10495 || this.$store.getters.user.template_info.org_id == 10375  ||  this.$store.getters.user.template_info.org_id == 10223)">{{anticoagulant_weichi != '0'?"mg/h":""}}</span>
139 139
             <span class="unit" v-if="this.prescription.anticoagulant == 3">
140 140
                <span v-if="this.$store.getters.user.template_info.org_id == 9671">{{anticoagulant_weichi != '0'?"mg/h":""}} </span>
141 141
                <span v-else>{{anticoagulant_weichi != '0'?"iu/h":""}}</span>
@@ -160,7 +160,7 @@
160 160
         <li v-if="isShow('总量')&&this.prescription.anticoagulant != 5">
161 161
           <label>总量: </label>
162 162
           <span class="content">{{anticoagulant_zongliang != '0'?anticoagulant_zongliang:""}}</span>
163
-          <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10346 && this.$store.getters.user.template_info.template_id != 45 && this.$store.getters.user.template_info.org_id != 10340">
163
+          <span v-if="this.$store.getters.user.template_info.org_id != 10101 && this.$store.getters.user.template_info.org_id != 10346 && this.$store.getters.user.template_info.template_id != 45 && this.$store.getters.user.template_info.org_id != 10340 && this.$store.getters.user.template_info.org_id != 10223">
164 164
             <span class="unit" v-if="this.prescription.anticoagulant == 2 && this.$store.getters.user.template_info.template_id != 13  && this.$store.getters.user.template_info.template_id != 23 && this.$store.getters.user.template_info.template_id != 40 && this.$store.getters.user.template_info.template_id != 38 && this.$store.getters.user.template_info.org_id !=10340 && this.$store.getters.user.template_info.org_id !=10432 && this.$store.getters.user.template_info.org_id !=10471  && this.$store.getters.user.template_info.org_id !=10495 && this.$store.getters.user.template_info.org_id !=10375">{{anticoagulant_zongliang != '0'?"iu":""}}</span>
165 165
             <span class="unit" v-if="this.prescription.anticoagulant == 2 &&  (this.$store.getters.user.template_info.template_id == 13 || this.$store.getters.user.template_info.template_id == 23 || this.$store.getters.user.template_info.template_id == 40 || this.$store.getters.user.template_info.template_id == 38 || this.$store.getters.user.template_info.org_id == 10340 || this.$store.getters.user.template_info.org_id == 10432 || this.$store.getters.user.template_info.org_id == 10471 || this.$store.getters.user.template_info.org_id == 10495 || this.$store.getters.user.template_info.org_id == 10375)">{{anticoagulant_zongliang != '0'?"mg":""}}</span>
166 166
             <span class="unit" v-if="this.prescription.anticoagulant == 3">

+ 6 - 2
src/pages/patientCenter/allCheck/index.vue Ver arquivo

@@ -29,7 +29,10 @@
29 29
               <li v-for="(item, index) in InspectionDetail" :key="index">
30 30
                 <span>{{ item.item_name }}</span>
31 31
                 <p>
32
-                  <span style="text-align:right;width:3.125rem;display: inline-block;">{{ item.inspect_value }}</span>
32
+                  <span style="text-align:right;width:3.125rem;display: inline-block;">
33
+                   <span v-if="item.inspect_type!=3"> {{ item.inspect_value }}</span> 
34
+                    <span v-if="item.inspect_type == 3"><img :src="item.inspect_value" style="width: 50px;height: 50px;"></span> 
35
+                  </span>
33 36
                   <span v-if="item.inspect_value != '' && parseInt(item.inspect_value) > parseInt(item.range_max)">
34 37
                     <i class="el-icon-top" style="color:#F44746"></i>
35 38
                   </span>
@@ -41,7 +44,8 @@
41 44
                 </p>
42 45
                 <span v-if="item.range_type === 1">{{ item.range_min }}~{{ item.range_max }}</span>
43 46
                 <span v-if="item.range_type === 2">
44
-                  {{ item.inspect_value }}
47
+                  <span v-if="item.inspect_type!=3"> {{ item.inspect_value }}</span> 
48
+                  <span v-if="item.inspect_type == 3"><img :src="item.inspect_value" style="width: 50px;height: 50px;"></span> 
45 49
                 </span>
46 50
                 <span>{{ item.unit }}</span>
47 51
               </li>