Browse Source

Merge branch 'update' of http://git.shengws.com/zhangbj/xt_pad into update

张保健 5 years ago
parent
commit
99fe23eb8d

+ 1 - 1
build/cdn.json View File

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "1.0.91"
2
+  "version": "1.0.98"
3 3
 }

+ 1 - 1
src/pages/home/login.vue View File

@@ -45,7 +45,7 @@ export default {
45 45
   computed: {
46 46
     loginDisable() {
47 47
       // return false
48
-      return this.form.mobile.length == 0 || /^1[2345789]\d{9}$/.test(this.form.mobile) == false || this.form.pwd.length == 0
48
+      return this.form.mobile.length == 0 || this.form.pwd.length == 0
49 49
     }
50 50
   },
51 51
   created() {

+ 35 - 11
src/pages/main/DialysisArea.vue View File

@@ -139,7 +139,7 @@ export default {
139 139
       user_id: 0,
140 140
       networkStates: true,
141 141
       timer: null,
142
-      ismypatient: false,
142
+      ismypatient: this.$store.getters.app.dialysis_area.ismypatient,
143 143
       selected_date: this.$store.getters.app.dialysis_area.schedule_date, // new Date(),
144 144
       schedual_types: [
145 145
         { value: 0, text: '全部班', select: true },
@@ -204,6 +204,9 @@ export default {
204 204
         return schedules
205 205
       }
206 206
       if (this.ismypatient) {
207
+        var zone_selected = this.zone_selected
208
+        var timetype_selected = this.schedual_type_selected
209
+        var zone_name = zone_selected == 0 ? '' : this.zones[zone_selected].text
207 210
         var schedules = []
208 211
         for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
209 212
           const scheduleInfo = this.dialysis_scheduals[o_i]
@@ -214,8 +217,12 @@ export default {
214 217
           var filtedSchedules = []
215 218
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
216 219
             const schedule = originSchedules[s_i]
217
-            if (schedule.dialysis_order.start_nurse == this.user_id) {
218
-              filtedSchedules.push(schedule)
220
+            if (schedule.dialysis_order.start_nurse == this.user_id ) {
221
+              if (zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
222
+                if (timetype_selected == 0 || schedule.schedule_type == timetype_selected) {
223
+                  filtedSchedules.push(schedule)
224
+                }
225
+              }
219 226
               // break;
220 227
             }
221 228
           }
@@ -244,6 +251,7 @@ export default {
244 251
         for (let s_i = 0; s_i < originSchedules.length; s_i++) {
245 252
           const schedule = originSchedules[s_i]
246 253
           if (this.ismypatient) {
254
+
247 255
             if (schedule.dialysis_order.creator == this.user_id) {
248 256
               filtedSchedules.push(schedule)
249 257
             }
@@ -330,44 +338,60 @@ export default {
330 338
   methods: {
331 339
     mypatient () {
332 340
       this.search_keyword = ''
333
-      this.zone_selected = 0
334
-      this.schedual_type_selected = 0
335 341
       this.ismypatient = true
342
+      this.$emit('clear_search_keyword')
343
+      this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
344
+        zone: this.zone_selected,
345
+        schedule_type: this.schedual_type_selected,
346
+        schedule_date: this.selected_date,
347
+        ismypatient:   this.ismypatient,
348
+      })
336 349
     },
337 350
     reloads: function () {
338 351
       this.reload()
339 352
     },
340 353
     handletimeType: function (index) {
341
-      this.ismypatient = false
354
+      if(!this.ismypatient){
355
+        this.ismypatient = false
356
+      }
342 357
       this.sch_type_options_visible = false
343 358
       this.schedual_type_selected = index
344 359
       this.$emit('clear_search_keyword')
345 360
       this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
346 361
         zone: this.zone_selected,
347 362
         schedule_type: this.schedual_type_selected,
348
-        schedule_date: this.selected_date
363
+        schedule_date: this.selected_date,
364
+        ismypatient:   this.ismypatient,
365
+
349 366
       })
350 367
     },
351 368
     handleZoneChange: function (index) {
352
-      this.ismypatient = false
369
+      if(!this.ismypatient){
370
+        this.ismypatient = false
371
+      }
353 372
       this.zone_options_visible = false
354 373
       this.zone_selected = index
355 374
       this.$emit('clear_search_keyword')
356 375
       this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
357 376
         zone: this.zone_selected,
358 377
         schedule_type: this.schedual_type_selected,
359
-        schedule_date: this.selected_date
378
+        schedule_date: this.selected_date,
379
+        ismypatient:   this.ismypatient,
360 380
       })
361 381
     },
362 382
     handleScheduleDateChange: function (date) {
363
-      this.ismypatient = false
383
+      if(!this.ismypatient){
384
+        this.ismypatient = false
385
+      }
364 386
       this.zone_selected = 0
365 387
       this.schedual_type_selected = 0
366 388
       this.$emit('clear_search_keyword')
367 389
       this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
368 390
         zone: this.zone_selected,
369 391
         schedule_type: this.schedual_type_selected,
370
-        schedule_date: this.selected_date
392
+        schedule_date: this.selected_date,
393
+        ismypatient:   this.ismypatient,
394
+
371 395
       })
372 396
       this.requestDialysisScheduals()
373 397
     },

+ 50 - 8
src/pages/main/dialog/AssessmentDialog.vue View File

@@ -16,9 +16,9 @@
16 16
         </div>
17 17
 
18 18
 
19
-        <div class="item" v-if="isShow('干体重')&&this.$store.getters.user.template_info.template_id == 6">
19
+        <div class="item" v-if="isShow('干体重')&&this.$store.getters.user.template_info.template_id == 6" @click="showDryWeight">
20 20
           <h2 class="name">干体重(kg)</h2>
21
-          <div class="content" @click="showDryWeight">
21
+          <div class="content" >
22 22
             <input type="tel" @focus="inputFocus" v-model="formValue.dry_weight" disabled="disabled"/>
23 23
           </div>
24 24
         </div>
@@ -606,6 +606,8 @@
606 606
             this.isHasOther = 2
607 607
             this.propForm.type = 1
608 608
             this.isShowDialog = false
609
+            this.propForm.isShowOther = 2
610
+
609 611
             this.propForm.title = '前次透析后'
610 612
             this.visibility = true
611 613
             this.propForm.list = getDataConfig('hemodialysis', 'last_dialysis_after')
@@ -629,6 +631,7 @@
629 631
           case 'dialysis_interphase':
630 632
             this.propForm.result = []
631 633
             this.isHasOther = 2
634
+            this.propForm.isShowOther = 2
632 635
 
633 636
             this.propForm.type = 2
634 637
             this.isShowDialog = false
@@ -652,6 +655,7 @@
652 655
           case 'symptom_before_dialysis':
653 656
             this.propForm.result = []
654 657
             this.isHasOther = 2
658
+            this.propForm.isShowOther = 2
655 659
 
656 660
             this.propForm.type = 3
657 661
             this.isShowDialog = false
@@ -675,6 +679,7 @@
675 679
           case 'catheter':
676 680
             this.propForm.result = []
677 681
             this.isHasOther = 2
682
+            this.propForm.isShowOther = 1
678 683
 
679 684
             this.propForm.type = 4
680 685
             this.isShowDialog = false
@@ -698,7 +703,8 @@
698 703
             break
699 704
           case 'complication':
700 705
             this.propForm.result = []
701
-            this.isHasOther = 2
706
+            this.isHasOther = 1
707
+            this.propForm.isShowOther = 2
702 708
 
703 709
             this.propForm.type = 5
704 710
             this.isShowDialog = false
@@ -723,6 +729,7 @@
723 729
 
724 730
           case 'blood_access_part':
725 731
             this.isHasOther = 2
732
+            this.propForm.isShowOther = 1
726 733
 
727 734
             this.propForm.type = 6
728 735
             this.isShowDialog = false
@@ -737,6 +744,7 @@
737 744
 
738 745
           case 'blood_access_opera':
739 746
             this.isHasOther = 2
747
+            this.propForm.isShowOther = 1
740 748
 
741 749
             this.propForm.type = 7
742 750
             this.isShowDialog = false
@@ -752,6 +760,7 @@
752 760
           case 'internal_fistula':
753 761
             this.propForm.result = []
754 762
             this.isHasOther = 2
763
+            this.propForm.isShowOther = 1
755 764
 
756 765
             this.propForm.type = 8
757 766
             this.isShowDialog = false
@@ -777,6 +786,7 @@
777 786
           case 'hemorrhage':
778 787
             this.propForm.result = []
779 788
             this.isHasOther = 2
789
+            this.propForm.isShowOther = 1
780 790
 
781 791
             this.propForm.type = 9
782 792
             this.isShowDialog = false
@@ -801,6 +811,7 @@
801 811
           case 'internal_fistula_skin':
802 812
             this.propForm.result = []
803 813
             this.isHasOther = 2
814
+            this.propForm.isShowOther = 1
804 815
 
805 816
             this.propForm.type = 10
806 817
             this.isShowDialog = false
@@ -824,6 +835,7 @@
824 835
 
825 836
           case 'catheter_bend':
826 837
             this.isHasOther = 2
838
+            this.propForm.isShowOther = 1
827 839
 
828 840
             this.propForm.type = 11
829 841
             this.isShowDialog = false
@@ -840,6 +852,8 @@
840 852
             this.propForm.result = []
841 853
             this.propForm.isHasOther = 2
842 854
             this.propForm.type = 12
855
+            this.propForm.isShowOther = 1
856
+
843 857
             this.isShowDialog = false
844 858
             this.propForm.title = '血管通路(内瘘)'
845 859
             this.visibility = true
@@ -861,6 +875,7 @@
861 875
 
862 876
           case 'blood_access_noise':
863 877
             this.propForm.isHasOther = 2
878
+            this.propForm.isShowOther = 1
864 879
 
865 880
             this.propForm.type = 13
866 881
             this.isShowDialog = false
@@ -875,6 +890,7 @@
875 890
 
876 891
           case 'venous_catheterization':
877 892
             this.propForm.isHasOther = 2
893
+            this.propForm.isShowOther = 1
878 894
 
879 895
             this.propForm.type = 14
880 896
             this.isShowDialog = false
@@ -892,6 +908,8 @@
892 908
             this.propForm.type = 15
893 909
             this.isShowDialog = false
894 910
             this.propForm.title = '位置'
911
+            this.propForm.isShowOther = 1
912
+
895 913
             this.visibility = true
896 914
             this.propForm.list = []
897 915
             this.propForm.optionList = this.$store.getters.venous_catheterization_part
@@ -905,6 +923,8 @@
905 923
             this.propForm.type = 16
906 924
             this.isShowDialog = false
907 925
             this.propForm.title = '中心静脉导管'
926
+            this.propForm.isShowOther = 1
927
+
908 928
             this.visibility = true
909 929
             this.propForm.list = this.$store.getters.ductus_arantii
910 930
             this.propForm.optionList = []
@@ -931,6 +951,8 @@
931 951
             this.isShowDialog = false
932 952
             this.propForm.title = '急诊'
933 953
             this.visibility = true
954
+            this.propForm.isShowOther = 1
955
+
934 956
             this.propForm.list = []
935 957
             this.propForm.optionList = this.$store.getters.emergency_treatment
936 958
             this.propForm.isMultiple = 1
@@ -944,6 +966,8 @@
944 966
             this.propForm.title = '穿刺方式'
945 967
             this.visibility = true
946 968
             this.propForm.list = []
969
+            this.propForm.isShowOther = 1
970
+
947 971
             this.propForm.optionList = this.$store.getters.puncture_way
948 972
             this.propForm.isMultiple = 1
949 973
             this.propForm.selectId = this.formValue.puncture_way
@@ -954,6 +978,8 @@
954 978
             this.isShowDialog = false
955 979
             this.propForm.title = '出血'
956 980
             this.visibility = true
981
+            this.propForm.isShowOther = 1
982
+
957 983
             this.propForm.list = []
958 984
             this.propForm.optionList = this.hemorrhages
959 985
             this.propForm.isMultiple = 1
@@ -966,6 +992,8 @@
966 992
             this.isShowDialog = false
967 993
             this.propForm.title = '感染'
968 994
             this.visibility = true
995
+            this.propForm.isShowOther = 1
996
+
969 997
             this.propForm.list = []
970 998
             this.propForm.optionList = this.infects
971 999
             this.propForm.isMultiple = 1
@@ -979,6 +1007,8 @@
979 1007
             this.isShowDialog = false
980 1008
             this.propForm.title = '皮肤'
981 1009
             this.visibility = true
1010
+            this.propForm.isShowOther = 1
1011
+
982 1012
             this.propForm.list = []
983 1013
             this.propForm.optionList = this.$store.getters.skin
984 1014
             this.propForm.isMultiple = 1
@@ -991,6 +1021,8 @@
991 1021
             this.propForm.isHasOther = 2
992 1022
             this.propForm.type = 22
993 1023
             this.isShowDialog = false
1024
+            this.propForm.isShowOther = 1
1025
+
994 1026
             this.propForm.title = '穿刺针'
995 1027
             this.visibility = true
996 1028
             this.propForm.list = this.$store.getters.puncture_needle
@@ -1242,25 +1274,35 @@
1242 1274
       }
1243 1275
       this.record_date = y + '-' + (m < 10 ? '0' + m : m) + '-' + (d < 10 ? '0' + d : d)
1244 1276
       this.formValue = this.predialysis
1245
-      console.log("3333333")
1246 1277
 
1247 1278
       if (this.predialysis.id == undefined && this.last_predialysis.id != undefined) {
1248
-        console.log("111111")
1249 1279
         this.$set(this.formValue, 'additional_weight', this.last_predialysis['additional_weight'].toString())
1250 1280
         this.$set(this.formValue, 'internal_fistula', this.last_predialysis['internal_fistula'])
1251 1281
         this.$set(this.formValue, 'internal_fistula_skin', this.last_predialysis['internal_fistula_skin'])
1252 1282
         this.$set(this.formValue, 'blood_access_part_id', this.last_predialysis['blood_access_part_id'])
1253 1283
         this.$set(this.formValue, 'blood_access_part_opera_id', this.last_predialysis['blood_access_part_opera_id'])
1284
+
1285
+
1286
+        // this.$set(this.formValue, 'complication', this.last_predialysis['complication'])
1287
+        // this.$set(this.formValue, 'last_post_dialysis', this.last_predialysis['last_post_dialysis'])
1288
+        // this.$set(this.formValue, 'dialysis_interphase', this.last_predialysis['dialysis_interphase'])
1289
+        // this.$set(this.formValue, 'symptom_before_dialysis', this.last_predialysis['symptom_before_dialysis'])
1290
+        // this.$set(this.formValue, 'puncture_needle', this.last_predialysis['puncture_needle'])
1291
+        // this.$set(this.formValue, 'puncture_way', this.last_predialysis['puncture_way'])
1292
+        //
1293
+        //
1294
+        // this.$set(this.formValue, 'temperature', this.last_predialysis['temperature'])
1295
+        // this.$set(this.formValue, 'breathing_rate', this.last_predialysis['breathing_rate'])
1296
+        // this.$set(this.formValue, 'catheter', this.last_predialysis['catheter'])
1297
+        // this.$set(this.formValue, 'internal_fistula', this.last_predialysis['internal_fistula'])
1298
+        // this.$set(this.formValue, 'pulse_frequency', this.last_predialysis['pulse_frequency'])
1254 1299
       }
1255 1300
 
1256 1301
       if(this.$store.getters.user.template_info.template_id != 6 && this.predialysis.id == undefined && this.last_predialysis.id != undefined){
1257
-        console.log("222222")
1258
-
1259 1302
         this.$set(this.formValue, 'dry_weight', this.last_predialysis['dry_weight'].toString())
1260 1303
       }
1261 1304
 
1262 1305
       if (this.$store.getters.user.template_info.template_id == 6 ) {
1263
-        console.log("333333333")
1264 1306
 
1265 1307
         if(this.dry_weight != null && this.dry_weight.id != undefined){
1266 1308
           this.$set(this.formValue, 'dry_weight', this.dry_weight.dry_weight.toString())

+ 6 - 4
src/pages/main/dialog/MonitDialog.vue View File

@@ -132,7 +132,9 @@
132 132
                      v-model="form.ultrafiltration_volume">
133 133
             </div>
134 134
             <div class="cell" v-if="isShow('超滤率')">
135
-              <label>超滤率(ml/h)</label>
135
+              <label v-if="template_id == 6">超滤率(ml/h)</label>
136
+              <label v-else>超滤率(L/h)</label>
137
+
136 138
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
137 139
                      v-model="form.ultrafiltration_rate">
138 140
             </div>
@@ -344,11 +346,11 @@ export default {
344 346
   methods: {
345 347
     venousPressureChange (type) {
346 348
       if (type == 1) {
347
-        this.form.venous_pressure = this.form.venous_pressure * 7.5
349
+        this.form.venous_pressure =Math.ceil(Math.round(this.form.venous_pressure * 7.5))
348 350
       } else if (type == 2) {
349
-        this.form.transmembrane_pressure = this.form.transmembrane_pressure * 7.5
351
+        this.form.transmembrane_pressure = Math.ceil(Math.round(this.form.transmembrane_pressure * 7.5))
350 352
       } else {
351
-        this.form.arterial_pressure = this.form.arterial_pressure * 7.5
353
+        this.form.arterial_pressure =  Math.ceil(Math.round(this.form.arterial_pressure * 7.5))
352 354
       }
353 355
     },
354 356
     isShow (name) {

+ 1 - 1
src/pages/main/dialog/OrdersDialog.vue View File

@@ -79,7 +79,7 @@
79 79
                   <div class="txt">
80 80
                     <span>{{advice.advice_name }}</span>
81 81
                     <span v-if="advice.advice_desc">({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
82
-                    <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}})</span>
82
+                    <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
83 83
                     <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
84 84
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
85 85
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>

+ 34 - 4
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -35,7 +35,8 @@
35 35
         </div>
36 36
 
37 37
         <div class="item" v-if="isShow('目标超滤量')">
38
-          <label class="name" for="mbcll">目标超滤量(L)</label>
38
+          <label class="name" for="mbcll" v-if="this.$store.getters.user.template_info.template_id == 6">目标超滤量(ml)</label>
39
+          <label class="name" for="mbcll" v-if="this.$store.getters.user.template_info.template_id != 6">目标超滤量(L)</label>
39 40
           <div class="content">
40 41
             <input type="tel" @focus="inputFocus" id="mbcll" v-model="dialysisPrescription.target_ultrafiltration"/>
41 42
           </div>
@@ -223,7 +224,8 @@
223 224
         </div>
224 225
 
225 226
         <div @click="showSubMenu('displace_liqui_part')" class="item" ref="displace_liqui_part" v-if="isShow('置换液')">
226
-          <label class="name" for="knj">置换液</label>
227
+          <label class="name" for="knj" v-if="this.$store.getters.user.template_info.template_id == 6">置换方式</label>
228
+          <label class="name" for="knj" v-if="this.$store.getters.user.template_info.template_id != 6">置换液</label>
227 229
           <div class="content">
228 230
             <span class="text" id="knjaa">{{getDisplaceLiquiPart(dialysisPrescription.displace_liqui_part)}}</span>
229 231
             <span class="iconfont">&#xe6f9;</span>
@@ -536,9 +538,10 @@
536 538
           selectId: 0
537 539
         }
538 540
       }
539
-    },
541
+    },computed: {
542
+      // 计算属性的 getter
540 543
 
541
-    methods: {
544
+    }, methods: {
542 545
       showmsgtip () {
543 546
         this.msgtip_visibility = true
544 547
         this.isShowDialog = false
@@ -1076,6 +1079,16 @@
1076 1079
         return anticoagulan_name
1077 1080
       },
1078 1081
       commitInfo: function () {
1082
+
1083
+        if(this.$store.getters.user.template_info.template_id == 6) {
1084
+          if (this.dialysisPrescription.mode_id == 2) {
1085
+            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1086
+              Toast.fail("HDF模式下置换方式和置换量不能为空!")
1087
+              return
1088
+            }
1089
+          }
1090
+        }
1091
+
1079 1092
         this.is_pre = 1
1080 1093
         if (this.prescription_prop.id == '') {
1081 1094
 
@@ -1362,6 +1375,14 @@
1362 1375
 
1363 1376
         }
1364 1377
       }, commitSolutionInfo: function () {
1378
+        if(this.$store.getters.user.template_info.template_id == 6) {
1379
+          if (this.dialysisPrescription.mode_id == 2) {
1380
+            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1381
+              Toast.fail("HDF模式下置换方式和置换量不能为空!")
1382
+              return
1383
+            }
1384
+          }
1385
+        }
1365 1386
         this.is_pre = 2
1366 1387
 
1367 1388
         if (this.prescription_prop.id == '') {
@@ -1911,6 +1932,15 @@
1911 1932
       CheckBoxSubMenu
1912 1933
     },
1913 1934
     watch: {
1935
+      "dialysisPrescription.anticoagulant_shouji":function(val){
1936
+        console.log(val)
1937
+        this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1938
+
1939
+      }, "dialysisPrescription.anticoagulant_weichi":function(val){
1940
+        console.log(val)
1941
+        this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1942
+      },
1943
+
1914 1944
       isShowDialog (val) {
1915 1945
         if (val) {
1916 1946
           this.advice_visibility = false

File diff suppressed because it is too large
+ 301 - 268
src/pages/main/dialog/ThorougDialog.vue


+ 11 - 11
src/pages/main/dialog/subMenu/MsgTip.vue View File

@@ -14,56 +14,56 @@
14 14
           <label class="name" for="txms">本次透析日期</label>
15 15
           <div class="content">
16 16
             <span class="text" id="txms"> {{dialysis_date}}</span>
17
-            
17
+
18 18
           </div>
19 19
         </div>
20 20
         <div class="item">
21 21
           <label class="name" for="txms">透前体重(kg)</label>
22 22
           <div class="content">
23 23
             <span class="text" id="txms">{{predialysis.weight_before}}</span>
24
-            
24
+
25 25
           </div>
26 26
         </div>
27 27
         <div class="item">
28 28
           <label class="name" for="txms">干体重(kg)</label>
29 29
           <div class="content">
30 30
             <span class="text" id="txms">{{last_predialysis.dry_weight}}</span>
31
-            
31
+
32 32
           </div>
33 33
         </div>
34 34
         <div class="item">
35 35
           <label class="name" for="txms">衣物重(kg)</label>
36 36
           <div class="content">
37 37
             <span class="text" id="txms">{{predialysis.additional_weight}}</span>
38
-            
38
+
39 39
           </div>
40 40
         </div>
41 41
         <div class="item">
42 42
           <label class="name" for="txms">体重增加(kg)</label>
43 43
           <div class="content">
44 44
             <span class="text" id="txms">{{add_weight}}</span>
45
-            
45
+
46 46
           </div>
47 47
         </div>
48 48
         <div class="item">
49 49
           <label class="name" for="txms">透后体重(kg)</label>
50 50
           <div class="content">
51 51
             <span class="text" id="txms">{{record.weight_after}}</span>
52
-            
52
+
53 53
           </div>
54 54
         </div>
55 55
         <div class="item">
56 56
           <label class="name" for="txms">体重减少(kg)</label>
57 57
           <div class="content">
58 58
             <span class="text" id="txms">{{record.weight_loss}}</span>
59
-            
59
+
60 60
           </div>
61 61
         </div>
62 62
         <div class="item">
63 63
           <label class="name" for="txms">上次透后体重(kg)</label>
64 64
           <div class="content">
65 65
             <span class="text" id="txms">{{predialysis.weight_after_last_transparency}}</span>
66
-            
66
+
67 67
           </div>
68 68
         </div>
69 69
     </div>
@@ -74,10 +74,10 @@
74 74
   import {parseTime} from '@/utils'
75 75
 
76 76
   export default {
77
-    name: 'LongAdviceSubMenu',
77
+    name: 'MsgTip',
78 78
     created () {
79
-      if (predialysis.weight_before > 0 && predialysis.weight_after_last_transparency > 0) {
80
-        add_weight = parseFloat(predialysis.weight_before - predialysis.weight_after_last_transparency).toFixed(2)
79
+      if (this.predialysis&&this.predialysis.weight_before > 0 && this.predialysis.weight_after_last_transparency > 0) {
80
+        this.add_weight = parseFloat(this.predialysis.weight_before - this.predialysis.weight_after_last_transparency).toFixed(2)
81 81
       }
82 82
     },
83 83
     data () {

+ 97 - 82
src/pages/main/dialog/subMenu/checkBoxSubMenu.vue View File

@@ -8,7 +8,7 @@
8 8
       <span v-if="propsForm.isMultiple == 1" @click="comfirm" class="success">
9 9
       </span>
10 10
       <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success"
11
-        >确定</span
11
+      >确定</span
12 12
       >
13 13
     </div>
14 14
 
@@ -44,118 +44,133 @@
44 44
             </van-checkbox>
45 45
           </van-checkbox-group>
46 46
         </li>
47
+
47 48
       </ul>
49
+      <!--<div style="margin-top: 10px" v-if="propsForm.isShowOther == 2">-->
50
+        <!--<el-form>-->
51
+          <!--<el-form-item label-width="90px" label="其他"  >-->
52
+            <!--<el-input clearable v-model="other" ></el-input>-->
53
+          <!--</el-form-item>-->
54
+        <!--</el-form>-->
55
+      <!--</div>-->
56
+
48 57
     </div>
49 58
   </div>
50 59
 </template>
51 60
 
52 61
 <script>
53
-export default {
54
-  name: "checkBoxSubMenu",
55
-  created() {},
56
-  data() {
57
-    return {
58
-      result: [],
59
-      id: 0,
60
-      selectName: ""
61
-    };
62
-  },
63
-  props: {
64
-    propsForm: {
65
-      type: Object
62
+  export default {
63
+    name: 'checkBoxSubMenu',
64
+    created () {
66 65
     },
67
-    visibility: {
68
-      type: Boolean,
69
-      default: false
70
-    }
71
-  },
72
-  methods: {
73
-    cancle: function() {
74
-      this.$emit("menu-cancle");
66
+    data () {
67
+      return {
68
+        result: [],
69
+        id: 0,
70
+        selectName: '',
71
+        other: ''
72
+      }
75 73
     },
76
-    comfirm: function() {
77
-      this.$emit("menu-comfirm", this.getValue());
74
+    props: {
75
+      propsForm: {
76
+        type: Object
77
+      },
78
+      visibility: {
79
+        type: Boolean,
80
+        default: false
81
+      }
78 82
     },
79
-    getValue: function() {
80
-      let form = {};
81
-      if (this.propsForm.isMultiple == 2) {
82
-        form["type"] = this.propsForm.type;
83
-        form["result"] = this.propsForm.result;
84
-        // form["click_ref"] = this.propsForm.click_ref
85
-      } else {
86
-        form["type"] = this.propsForm.type;
87
-        form["selectId"] = this.propsForm.selectId;
88
-        // form["click_ref"] = this.propsForm.click_ref
83
+    methods: {
84
+      cancle: function () {
85
+        this.$emit('menu-cancle')
86
+      },
87
+      comfirm: function () {
88
+        this.$emit('menu-comfirm', this.getValue())
89
+        // this.other = ""
90
+      },
91
+      getValue: function () {
92
+        let form = {}
93
+        if (this.propsForm.isMultiple == 2) {
94
+          form['type'] = this.propsForm.type
95
+          form['result'] = this.propsForm.result
96
+          // form['other'] = this.other
97
+
98
+          // form["click_ref"] = this.propsForm.click_ref
99
+        } else {
100
+          form['type'] = this.propsForm.type
101
+          form['selectId'] = this.propsForm.selectId
102
+          // form["click_ref"] = this.propsForm.click_ref
103
+        }
104
+        return form
105
+      },
106
+      itemClick: function (id) {
107
+        if (id == -2) {
108
+          this.$emit('menu-empty', this.getValue())
109
+        }
110
+        this.propsForm.selectId = id
111
+        this.$emit('menu-comfirm', this.getValue())
89 112
       }
90
-      return form;
91 113
     },
92
-    itemClick: function(id) {
93
-      if (id == -2) {
94
-        this.$emit("menu-empty", this.getValue());
114
+    watch: {
115
+      visibility (val) {
116
+        //初始化数据操作
117
+
95 118
       }
96
-      this.propsForm.selectId = id;
97
-      this.$emit("menu-comfirm", this.getValue());
98
-    }
99
-  },
100
-  watch: {
101
-    visibility(val) {
102
-      //初始化数据操作
103 119
     }
104 120
   }
105
-};
106 121
 </script>
107 122
 
108 123
 <style style="stylesheet/scss" lang="scss" scoped>
109
-.optionsBox {
124
+  .optionsBox {
110 125
   background: #fff;
111 126
   max-height: 10rem;
112 127
   min-height: 5rem;
113 128
   @media only screen and (max-width: 812px) {
114
-    min-height: 8rem !important;
129
+  min-height: 8rem !important;
115 130
   }
116 131
   ul {
117
-    overflow-y: scroll;
118
-    max-height: 9rem;
119
-    li {
120
-      height: 1.1rem;
121
-      line-height: 1.1rem;
122
-      border-bottom: 1px #e5e5e5 solid;
123
-      padding: 0 0.38rem;
124
-      font-size: 0.36rem;
125
-      color: $title-color;
126
-    }
127
-    .tick {
128
-      position: relative;
129
-      &::before {
130
-        content: "";
131
-        display: inline-block;
132
-        border: 2px solid $main-color;
133
-        border-top-width: 0;
134
-        border-right-width: 0;
135
-        width: 0.3rem;
136
-        height: 0.15rem;
137
-        -webkit-transform: rotate(-50deg);
138
-        position: absolute;
139
-        top: 0.38rem;
140
-        right: 0.44rem;
141
-      }
142
-    }
132
+  overflow-y: scroll;
133
+  max-height: 9rem;
134
+  li {
135
+  height: 1.1rem;
136
+  line-height: 1.1rem;
137
+  border-bottom: 1px #e5e5e5 solid;
138
+  padding: 0 0.38rem;
139
+  font-size: 0.36rem;
140
+  color: $title-color;
141
+  }
142
+  .tick {
143
+  position: relative;
144
+  &::before {
145
+  content: "";
146
+  display: inline-block;
147
+  border: 2px solid $main-color;
148
+  border-top-width: 0;
149
+  border-right-width: 0;
150
+  width: 0.3rem;
151
+  height: 0.15rem;
152
+  -webkit-transform: rotate(-50deg);
153
+  position: absolute;
154
+  top: 0.38rem;
155
+  right: 0.44rem;
156
+  }
157
+  }
143 158
   }
144
-}
145
-.CheckBox {
159
+  }
160
+  .CheckBox {
146 161
   background: #fff;
147 162
   max-height: 6.8rem;
148 163
   min-height: 5rem;
149 164
   overflow-y: scroll;
150 165
   @media only screen and (max-width: 812px) {
151
-    max-height: 8rem !important;
152
-    min-height: 8rem !important;
166
+  max-height: 8rem !important;
167
+  min-height: 8rem !important;
153 168
   }
154 169
 
155 170
   ul {
156
-    li {
157
-      line-height: 1rem;
158
-    }
171
+  li {
172
+  line-height: 1rem;
173
+  }
174
+  }
159 175
   }
160
-}
161 176
 </style>

+ 4 - 4
src/pages/main/dialysis/AdviceTable.vue View File

@@ -108,7 +108,7 @@
108 108
 
109 109
             </td>
110 110
 
111
-            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.start_time, "{m}-{d}{h}:{i}") }}
111
+            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.start_time, "{m}-{d} {h}:{i}") }}
112 112
             </td>
113 113
             <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{
114 114
               advice.advice_name }}
@@ -120,7 +120,7 @@
120 120
             <td>{{ advice.parent_id == 0 ? advice.delivery_way : '' }}</td>
121 121
             <td>{{ advice.parent_id == 0 ? advice.execution_frequency : '' }}</td>
122 122
 
123
-            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.execution_time, "{m}-{d}{h}:{i}") }}
123
+            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}
124 124
             </td>
125 125
             <td v-if="advice_index == 0" :rowspan="group.advices.length">
126 126
               <span
@@ -131,13 +131,13 @@
131 131
             <td v-if="advice_index == 0" :rowspan="group.advices.length">
132 132
               <span v-if="advice.stop_state == 1 && advice.parent_id == 0">{{ tranDoctor(advice.advice_doctor) }}</span>
133 133
             </td>
134
-            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.created_time, "{m}-{d}{h}:{i}") }}
134
+            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}") }}
135 135
             </td>
136 136
 
137 137
             <td v-if="advice_index == 0" :rowspan="group.advices.length">
138 138
               <span v-if="advice.stop_state == 1 && advice.parent_id == 0">{{ tranDoctor(advice.checker) }}</span>
139 139
             </td>
140
-            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.check_time, "{m}-{d}{h}:{i}") }}
140
+            <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}
141 141
             </td>
142 142
 
143 143
             <!-- <td>{{ advice.remark }}</td> -->

+ 52 - 19
src/pages/main/template/DialysisPrintOrderSix.vue View File

@@ -447,10 +447,10 @@
447 447
                           <span >{{advice.advice_name }}</span>
448 448
                           <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
449 449
                           <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
450
-                          <span  v-if="advice.single_dose != 0"> {{advice.single_dose}}{{advice.single_dose_unit}}</span>
451
-                          <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.delivery_way}}</span>
452
-                          <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.execution_frequency}}</span>
453
-                          <span v-if="advice.parent_id == 0 && advice.children &&  advice.children.length == 0 && advice.remark.length > 0" >({{advice.remark}})</span>
450
+                          <!--<span  v-if="advice.single_dose != 0"> {{advice.single_dose}}{{advice.single_dose_unit}}</span>-->
451
+                          <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
452
+                          <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
453
+                          <span v-if="advice.parent_id == 0 && advice.remark.length > 0" >({{advice.remark}})</span>
454 454
                         </td>
455 455
                         <!-- <td colspan="2" height="60px" style="text-align: center" v-else >
456 456
                           <span>{{advice.delivery_way}}</span>
@@ -611,40 +611,62 @@
611 611
                     {{afterdialysis.catheter?afterdialysis.catheter:'/'}}
612 612
                   </div>
613 613
                 </div>
614
-              </div>
615
-
616
-              <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
617 614
                 <div class="inline_block" style="flex:1;">
618 615
                   实际治疗时间:
619
-                  <div class="under_line" style="width: 50px;text-align: center">
616
+                  <div class="under_line" style="width: 20px;text-align: center">
620 617
                     {{afterdialysis.actual_treatment_hour?afterdialysis.actual_treatment_hour:'/'}}
621 618
                   </div>
622 619
                   h
623
-                  <div class="under_line" style="width: 50px;text-align: center">
620
+                  <div class="under_line" style="width: 20px;text-align: center">
624 621
                     {{afterdialysis.actual_treatment_minute?afterdialysis.actual_treatment_minute:0}}
625 622
                   </div>
626 623
                   min
627 624
                 </div>
625
+              </div>
626
+
627
+              <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
628
+
628 629
                 <div class="inline_block" style="flex:1;">
629 630
                   透后体重:
630
-                  <div class="under_line" style="width: 70px;text-align: center">
631
+                  <div class="under_line" style="width: 50px;text-align: center">
631 632
                     {{afterdialysis.weight_after?afterdialysis.weight_after:'/'}}
632 633
                   </div>kg
633 634
                 </div>
635
+
636
+                <div class="inline_block" style="flex:1;">
637
+                  体重减少:
638
+                  <div class="under_line" style="width: 50px;text-align: center">
639
+                    {{afterdialysis.weight_loss?afterdialysis.weight_loss:'/'}}
640
+                  </div>kg
641
+                </div>
642
+
643
+
644
+                <div class="inline_block" style="flex:1;">
645
+                  透析中入量:
646
+                  <div class="under_line" style="width: 50px;text-align: center">
647
+                    {{afterdialysis.dialysis_intakes?afterdialysis.dialysis_intakes:'/'}}
648
+                  </div>{{getUnit(afterdialysis.dialysis_intakes_unit)}}
649
+                </div>
650
+
634 651
                 <div class="inline_block" style="flex:1;">
635 652
                   实际超滤量:
636
-                  <div class="under_line" style="width: 150px;text-align: center">
653
+                  <div class="under_line" style="width: 50px;text-align: center">
637 654
                     {{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:'/'}}
638 655
                   </div>ml
639 656
                 </div>
657
+
658
+
640 659
               </div>
641 660
 
642 661
               <div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
643 662
                 <div class="inline_block" style="flex:1;">
644 663
                   治疗小结:
645
-                  <div class="under_line" style="width: 300px;text-align: center">
646
-                    {{summary.dialysis_summary?summary.dialysis_summary:'/'}}
647
-                  </div>
664
+                  <!--<div class="under_line" style="width: 300px;text-align: center">-->
665
+                    <!--{{summary.dialysis_summary?summary.dialysis_summary:'/'}}-->
666
+                  <!--</div>-->
667
+                  <div style="width: 95%;line-height: 25px;text-align: left;margin-left: 2px;text-underline-position: under; text-decoration: underline;"> {{summary.dialysis_summary?summary.dialysis_summary:'/'}}</div>
668
+
669
+
648 670
                 </div>
649 671
               </div>
650 672
             </td>
@@ -720,7 +742,7 @@
720 742
   import { getDataConfig } from '@/utils/data'
721 743
   import { jsGetAge, uParseTime } from '@/utils/tools'
722 744
   import LabelBox from '../printItem/LabelBox'
723
- 
745
+
724 746
   // import DialysisPrintOrderOne from './template/dialysisPrintOrderOne'
725 747
   // import DialysisPrintOrderTwo from './template/dialysisPrintOrderTwo'
726 748
   import print from 'print-js'
@@ -961,7 +983,7 @@
961 983
             this.patientInfo.first_dialysis_date = ''
962 984
           }
963 985
           this.check = response.data.data.check
964
-          this.xtdate = response.data.data.xtdate
986
+          this.xtdate = this.$route.query.xtdate
965 987
           this.predialysis = response.data.data.PredialysisEvaluation
966 988
           this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(this.predialysis.blood_access_part_opera_id)
967 989
           this.afterdialysis = response.data.data.AssessmentAfterDislysis
@@ -1052,7 +1074,7 @@
1052 1074
               }
1053 1075
             }
1054 1076
           }
1055
-          
1077
+
1056 1078
           var tempmonitorflag = true;
1057 1079
           for (let index = 0; index < this.monitors.length; index++) {
1058 1080
             const monitor = this.monitors[index];
@@ -1066,7 +1088,7 @@
1066 1088
                   this.monitors[index].end ="【结束透析】"
1067 1089
               }
1068 1090
             }
1069
-            
1091
+
1070 1092
           }
1071 1093
 
1072 1094
 
@@ -1287,6 +1309,17 @@
1287 1309
         } else {
1288 1310
           return '0.0'
1289 1311
         }
1312
+      },getUnit:function (val) {
1313
+         switch (val) {
1314
+           case 1:
1315
+             return "g"
1316
+             break
1317
+           case 2:
1318
+             return "ml"
1319
+             break
1320
+
1321
+         }
1322
+
1290 1323
       }
1291 1324
     },
1292 1325
     watch: {
@@ -1325,7 +1358,7 @@
1325 1358
       this.perfusionApparatus = this.$store.getters.perfusion_apparatus
1326 1359
       this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit
1327 1360
       this.displaceLiquiPartOptions = this.$store.getters.displace_liqui
1328
-      
1361
+
1329 1362
       this.blood_access_part = getDataConfig('hemodialysis', 'vascular_access')
1330 1363
       this.blood_access_part_opera = getDataConfig('hemodialysis', 'vascular_access_desc')
1331 1364
 

+ 2 - 2
src/pages/main/template/DialysisPrintOrderTwo.vue View File

@@ -271,7 +271,7 @@
271 271
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
272 272
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
273 273
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
274
-                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume / 1000:'/'}}</td>
274
+                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
275 275
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
276 276
                   <td style="line-height:16px;padding:0px;"><div style="height:48px;line-height:48px; overflow:hidden;"><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;">{{monitor.symptom}}  &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}} </span> </div></td>
277 277
                   <td>
@@ -357,7 +357,7 @@
357 357
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
358 358
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
359 359
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
360
-                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume /1000:'/'}}</td>
360
+                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
361 361
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
362 362
                   <td style="line-height:16px;"><div style="height:48px;line-height:48px; overflow:hidden;"><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;">{{monitor.symptom}}  &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}}</span></div>  </td>
363 363
                   <td>

+ 157 - 150
src/pages/main/today/TodayTab.vue View File

@@ -1,6 +1,10 @@
1 1
 <template>
2
-  <div v-loading="loading" id="today_panel">
2
+  <div id="today_panel">
3 3
 
4
+    <div  v-loading="loading"
5
+          element-loading-text="拼命加载中"
6
+          element-loading-spinner="el-icon-loading"
7
+          element-loading-background="rgba(0, 0, 0, 0.8)">
4 8
     <div class="grid">
5 9
       <div class="list">
6 10
         <ul>
@@ -58,50 +62,51 @@
58 62
       </div>
59 63
     </div>
60 64
     <div class="blueBorder"></div>
61
-   
65
+
62 66
         <details-info title="基本信息" :patient="patient"
63 67
                   :device_number="getDeviceNumber()"
64 68
                   :step_data="stepData"></details-info>
65
-  
69
+
66 70
     <div class="blueBorder"></div>
67
-   
71
+
68 72
          <dialysis-prescription id="prescription"  :prescription="prescription" :solution="solution" title="透析处方"
69 73
                            :device_number_map="device_map"></dialysis-prescription>
70
- 
71 74
 
72
-     
75
+
76
+
73 77
          <div class="blueBorder"></div>
78
+    </div>
74 79
     <accepts-assessment id="accepts_assessment" :record="receiver_treatment_access" title="接诊评估"></accepts-assessment>
75
-     
80
+
76 81
     <div class="blueBorder"></div>
77
-    
82
+
78 83
        <assessment-before id="assessment_before" :record="predialysis_evaluation" ref="assessment_before"
79 84
                        title="透前评估" :dry_weights="dryWeight"  :last_predialysis="last_predialysis_evaluation" ></assessment-before>
80
-   
85
+
81 86
     <div class="blueBorder"></div>
82
-  
87
+
83 88
          <stat-order id="stat_order" ref="stat_order" title="临时医嘱" :doctor_map="admin_user_map"
84 89
                 :advice_groups="advice_groups"></stat-order>
85
-    
90
+
86 91
 
87 92
     <div class="blueBorder"></div>
88
-   
93
+
89 94
           <dialysis-computer id="dialysis_computer" ref="dialysis_computer" title="透析上机 " :record="dialysis_order"
90 95
                        :admin_map="admin_user_map" :device_number_map="device_number_map"></dialysis-computer>
91
-   
96
+
92 97
 
93 98
     <div class="blueBorder"></div>
94
-   
99
+
95 100
      <double-check id="double_check" ref="double_check" title="双人核对 " :record="double_check"></double-check>
96
-   
101
+
97 102
 
98 103
     <div class="blueBorder"></div>
99
-   
104
+
100 105
        <dialysis-monitoring id="monitoring" ref="monitoring" title="透析监测"></dialysis-monitoring>
101 106
 
102 107
 
103 108
     <div class="blueBorder"></div>
104
-    
109
+
105 110
        <dialysis-off id="dialysis_off" ref="dialysis_off" title="透析下机 " :record="dialysis_order"
106 111
                   :admin_map="admin_user_map"></dialysis-off>
107 112
 
@@ -113,9 +118,9 @@
113 118
 
114 119
 
115 120
     <div class="blueBorder"></div>
116
-      
117
-       <treatment-of id="treatment_of" ref="treatment_of" title="治疗小结" :record="treatment_summary"></treatment-of>  
118
-  
121
+
122
+       <treatment-of id="treatment_of" ref="treatment_of" title="治疗小结" :record="treatment_summary"></treatment-of>
123
+
119 124
 
120 125
     <!-- <div class="blueBorder"></div>
121 126
     <operation-staff title="操作人员 "></operation-staff> -->
@@ -131,7 +136,7 @@
131 136
                            :types="goodTypes" :info="goodInfos" :status="status" :targetAdvices="longAdvices"
132 137
                            :waitUploadAdvices="waitUploadAdvices" :is_open="is_open"
133 138
                            @close="closePrescriptionDialog" @prescription="prescriptionFunc"
134
-                           :admin_users_prop="admin_users" @advice="adviceFunc"
139
+                           :admin_users_prop="admin_users"
135 140
                            :predialysis="predialysis_evaluation"
136 141
                            :last_predialysis="last_predialysis_evaluation"
137 142
                            :record="assessment_after_dislysis"
@@ -145,8 +150,10 @@
145 150
     </van-popup>
146 151
 
147 152
     <van-popup title="透前评估" v-model="menuList[3].showPopup" :overlay="true" :close-on-click-overlay="false">
148
-      <assessment-dialog :predialysis="predialysis_evaluation" :last_predialysis="last_predialysis_evaluation" :dry_weight="dryWeight"
149
-                         :patient_prop="patient" @evaluation="update_evaluation" @close="closeAssessmentBefore"  :admin_users_prop="admin_users"
153
+      <assessment-dialog :predialysis="predialysis_evaluation" :last_predialysis="last_predialysis_evaluation"
154
+                         :dry_weight="dryWeight"
155
+                         :patient_prop="patient" @evaluation="update_evaluation" @close="closeAssessmentBefore"
156
+                         :admin_users_prop="admin_users"
150 157
                          ref="assessment_dialog" @weight_update="weightFunc"></assessment-dialog>
151 158
     </van-popup>
152 159
 
@@ -247,137 +254,137 @@ import {GetRemindLongAdvice} from '@/api/advice'
247 254
 
248 255
 import {parseTime} from '@/utils'
249 256
 
250
-export default {
251
-  name: 'TodayTab',
252
-  components: {
253
-    DetailsInfo,
254
-    DialysisPrescription,
255
-    PastData,
256
-    AcceptsAssessment,
257
-    AssessmentBefore,
258
-    StatOrder,
259
-    DialysisComputer,
260
-    DoubleCheck,
261
-    DialysisMonitoring,
262
-    DialysisOff,
263
-    AssessmentAfter,
264
-    TreatmentOf,
265
-    OperationStaff,
266
-    LongDialog,
267
-    PrescriptionDialog,
268
-    AssessmentDialog,
269
-    ThorougDialog,
270
-    AcceptsDialog,
271
-    PlaneDialog,
272
-    TreatmentDialog,
273
-    DoubleDialog,
274
-    OrdersDialog,
275
-    MonitDialog,
276
-    ComputerDialog
277
-  },
278
-  data () {
279
-    return {
280
-      loading: true,
281
-      // show_fixed_nav: false,
282
-      patient_id: 0,
283
-      date: 0,
284
-      menuList: [
285
-        {value: '2', label: ' 透析处方', showPopup: false},
286
-        {value: '3', label: ' 接诊评估', showPopup: false},
287
-        {value: '4', label: ' 透前评估', showPopup: false},
288
-        {value: '5', label: ' 临时医嘱', showPopup: false},
289
-        {value: '6', label: ' 透析上机', showPopup: false},
290
-        {value: '1', label: ' 双人核对', showPopup: false},
291
-        {value: '7', label: ' 透析监测', showPopup: false},
292
-        {value: '8', label: ' 透析下机', showPopup: false},
293
-        {value: '9', label: ' 透后评估', showPopup: false},
294
-        {value: '10', label: ' 治疗小结', showPopup: false}
295
-      ],
296
-      isPullData: 1,
297
-      config: {}, // 库存自动扣减
298
-      operators: [], // 操作人
299
-      patient: {}, // 患者信息
300
-      schedual: {}, // 患者排班信息
301
-      prescription: {}, // 透析处方
302
-      solution: {}, // 透析方案
303
-      receiver_treatment_access: {}, // 接诊评估
304
-      predialysis_evaluation: {}, // 透前评估
305
-      last_predialysis_evaluation: {}, // 上次透前评估
306
-      doctor_advices: [], // 临时医嘱
307
-      advice_groups: [], // 对 doctor_advices 进行分组后的组列表,元素为 { group_no, start_time, advices:[advice object] }
308
-      double_check: {}, // 双人核对
309
-      assessment_after_dislysis: {}, // 透后评估
310
-      last_assessment_after_dislysis: {}, // 上次透后评估
311
-      treatment_summary: {}, // 治疗小结
312
-      monitor_records: [], // 透析监测
313
-      special_premission: [],
314
-      last_monitor_record: {
315
-        id: 0,
316
-        operate_time: new Date().getTime(),
317
-        sodium_concentration: '',
318
-        dialysate_temperature: ''
319
-      }, // 上一次透析的监测记录
320
-      dialysis_order: {}, // 透析记录
321
-      admin_users: [], // 系统用户列表
322
-      devices: [], // 设备
323
-      device_numbers: [], // 床位号
324
-      admin_user_map: {}, // {user_id: admin_user object}
325
-      device_map: {}, // {device_id: device}
326
-      device_number_map: {}, // {device_number_id: device_number}
327
-      scrollTop: '',
328
-      goTopShow: false,
329
-      goodTypes: [],
330
-      goodInfos: [],
331
-      dryWeight: {},
332
-
333
-      longAdvices: [],
334
-      waitUploadAdvices: [],
335
-      is_open: 0,
336
-      targetAdvices: [],
337
-      status: ''
338
-    }
339
-  },
340
-  computed: {
341
-    stepData: function () {
342
-      var steps = [
343
-        {title: '透析处方', name: 'prescription', value: 0},
344
-        {title: '接诊评估', name: 'accepts_assessment', value: 0},
345
-        {title: '透前评估', name: 'assessment_before', value: 0},
346
-        {title: '临时医嘱', name: 'stat_order', value: 0},
347
-        {title: '双人核对', name: 'double_check', value: 0},
348
-        {title: '透析上机', name: 'dialysis_computer', value: 0},
349
-        {title: '透析监测', name: 'dialysis_monitoring', value: 0},
350
-        {title: '透析下机', name: 'dialysis_off', value: 0},
351
-        {title: '透后评估', name: 'assessment_after', value: 0},
352
-        {title: '治疗小结', name: 'treatment_of', value: 0}
353
-      ]
354
-
355
-      if (!isNaN(this.prescription.id) && this.prescription.id > 0 && this.prescription.creater > 0) {
356
-        steps[0].value = 1
257
+  export default {
258
+    name: 'TodayTab',
259
+    components: {
260
+      DetailsInfo,
261
+      DialysisPrescription,
262
+      PastData,
263
+      AcceptsAssessment,
264
+      AssessmentBefore,
265
+      StatOrder,
266
+      DialysisComputer,
267
+      DoubleCheck,
268
+      DialysisMonitoring,
269
+      DialysisOff,
270
+      AssessmentAfter,
271
+      TreatmentOf,
272
+      OperationStaff,
273
+      LongDialog,
274
+      PrescriptionDialog,
275
+      AssessmentDialog,
276
+      ThorougDialog,
277
+      AcceptsDialog,
278
+      PlaneDialog,
279
+      TreatmentDialog,
280
+      DoubleDialog,
281
+      OrdersDialog,
282
+      MonitDialog,
283
+      ComputerDialog
284
+    },
285
+    data () {
286
+      return {
287
+        loading: true,
288
+        // show_fixed_nav: false,
289
+        patient_id: 0,
290
+        date: 0,
291
+        menuList: [
292
+          {value: '2', label: ' 透析处方', showPopup: false},
293
+          {value: '3', label: ' 接诊评估', showPopup: false},
294
+          {value: '4', label: ' 透前评估', showPopup: false},
295
+          {value: '5', label: ' 临时医嘱', showPopup: false},
296
+          {value: '6', label: ' 透析上机', showPopup: false},
297
+          {value: '1', label: ' 双人核对', showPopup: false},
298
+          {value: '7', label: ' 透析监测', showPopup: false},
299
+          {value: '8', label: ' 透析下机', showPopup: false},
300
+          {value: '9', label: ' 透后评估', showPopup: false},
301
+          {value: '10', label: ' 治疗小结', showPopup: false}
302
+        ],
303
+        isPullData: 1,
304
+        config: {}, // 库存自动扣减
305
+        operators: [], // 操作人
306
+        patient: {}, // 患者信息
307
+        schedual: {}, // 患者排班信息
308
+        prescription: {}, // 透析处方
309
+        solution: {}, // 透析方案
310
+        receiver_treatment_access: {}, // 接诊评估
311
+        predialysis_evaluation: {}, // 透前评估
312
+        last_predialysis_evaluation: {}, // 上次透前评估
313
+        doctor_advices: [], // 临时医嘱
314
+        advice_groups: [], // 对 doctor_advices 进行分组后的组列表,元素为 { group_no, start_time, advices:[advice object] }
315
+        double_check: {}, // 双人核对
316
+        assessment_after_dislysis: {}, // 透后评估
317
+        last_assessment_after_dislysis: {}, // 上次透后评估
318
+        treatment_summary: {}, // 治疗小结
319
+        monitor_records: [], // 透析监测
320
+        special_premission: [],
321
+        last_monitor_record: {
322
+          id: 0,
323
+          operate_time: new Date().getTime(),
324
+          sodium_concentration: '',
325
+          dialysate_temperature: ''
326
+        }, // 上一次透析的监测记录
327
+        dialysis_order: {}, // 透析记录
328
+        admin_users: [], // 系统用户列表
329
+        devices: [], // 设备
330
+        device_numbers: [], // 床位号
331
+        admin_user_map: {}, // {user_id: admin_user object}
332
+        device_map: {}, // {device_id: device}
333
+        device_number_map: {}, // {device_number_id: device_number}
334
+        scrollTop: '',
335
+        goTopShow: false,
336
+        goodTypes: [],
337
+        goodInfos: [],
338
+        dryWeight: {},
339
+
340
+        longAdvices: [],
341
+        waitUploadAdvices: [],
342
+        is_open: 0,
343
+        targetAdvices: [],
344
+        status: '',
357 345
       }
358
-      if (
359
-        !isNaN(this.receiver_treatment_access.id) &&
346
+    },
347
+    computed: {
348
+      stepData: function () {
349
+        var steps = [
350
+          {title: '透析处方', name: 'prescription', value: 0},
351
+          {title: '接诊评估', name: 'accepts_assessment', value: 0},
352
+          {title: '透前评估', name: 'assessment_before', value: 0},
353
+          {title: '临时医嘱', name: 'stat_order', value: 0},
354
+          {title: '双人核对', name: 'double_check', value: 0},
355
+          {title: '透析上机', name: 'dialysis_computer', value: 0},
356
+          {title: '透析监测', name: 'dialysis_monitoring', value: 0},
357
+          {title: '透析下机', name: 'dialysis_off', value: 0},
358
+          {title: '透后评估', name: 'assessment_after', value: 0},
359
+          {title: '治疗小结', name: 'treatment_of', value: 0}
360
+        ]
361
+
362
+        if (!isNaN(this.prescription.id) && this.prescription.id > 0 && this.prescription.creater > 0) {
363
+          steps[0].value = 1
364
+        }
365
+        if (
366
+          !isNaN(this.receiver_treatment_access.id) &&
360 367
           this.receiver_treatment_access.id > 0
361
-      ) {
362
-        steps[1].value = 1
363
-      }
368
+        ) {
369
+          steps[1].value = 1
370
+        }
364 371
 
365
-      if (typeof this.predialysis_evaluation.id !== 'undefined' && !isNaN(this.predialysis_evaluation.id) && this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.creater > 0) {
366
-        steps[2].value = 1
367
-      }
372
+        if (typeof this.predialysis_evaluation.id != 'undefined' && !isNaN(this.predialysis_evaluation.id) && this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.creater > 0) {
373
+          steps[2].value = 1
374
+        }
368 375
 
369
-      if (this.advice_groups.length > 0) {
370
-        steps[3].value = 1
371
-      }
376
+        if (this.advice_groups.length > 0) {
377
+          steps[3].value = 1
378
+        }
372 379
 
373
-      if (!isNaN(this.dialysis_order.id) && this.dialysis_order.id > 0) {
374
-        steps[5].value = 1
375
-        if (this.dialysis_order.stage == 2) {
376
-          steps[7].value = 1
380
+        if (!isNaN(this.dialysis_order.id) && this.dialysis_order.id > 0) {
381
+          steps[5].value = 1
382
+          if (this.dialysis_order.stage == 2) {
383
+            steps[7].value = 1
384
+          }
377 385
         }
378
-      }
379
-      if (
380
-        !isNaN(this.double_check.creater) &&
386
+        if (
387
+          !isNaN(this.double_check.creater) &&
381 388
           this.double_check.creater > 0 &&
382 389
           !isNaN(this.double_check.modifier) &&
383 390
           this.double_check.modifier > 0
@@ -418,7 +425,7 @@ export default {
418 425
       this.$refs.monitoring.setRecords(this.monitor_records)
419 426
     },
420 427
 
421
-    $route: 'requestDialysisRecord'
428
+    // $route: 'requestDialysisRecord'
422 429
   },
423 430
   methods: {
424 431
     // handleScroll: function() {
@@ -1140,7 +1147,7 @@ export default {
1140 1147
 
1141 1148
     longSolutionFunc: function (val) {
1142 1149
       this.solution = val
1143
-      this.requestDialysisRecord()
1150
+      // this.requestDialysisRecord()
1144 1151
 
1145 1152
       // if (advices.length > 0){
1146 1153
       //

+ 433 - 418
src/pages/main/today/assessmentAfter.vue View File

@@ -7,18 +7,18 @@
7 7
         <li v-if="isShow('透后体重')">
8 8
           <label for="thtz">透后体重 : </label>
9 9
           <span class="content" id="thtz">{{weight_after?weight_after:''}}</span>
10
-          <span class="unit">{{weight_after?"kg":''}}</span>
10
+          <span class="unit">{{weight_after?'kg':''}}</span>
11 11
         </li>
12 12
         <li v-if="isShow('收缩压')">
13 13
           <label for="ssy">收缩压 : </label>
14 14
           <span class="content" id="ssy">{{systolic_blood_pressure?systolic_blood_pressure:''}}</span>
15
-          <span class="unit">{{systolic_blood_pressure?"mmHg":''}}</span>
15
+          <span class="unit">{{systolic_blood_pressure?'mmHg':''}}</span>
16 16
         </li>
17 17
         <li v-if="isShow('实际超滤量')">
18 18
           <label for="sjcll">实际超滤量: </label>
19 19
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
20
-          <span v-if="template_id == 6" class="unit">{{actual_ultrafiltration?"ml":''}}</span>
21
-          <span v-else class="unit">{{actual_ultrafiltration?"L":''}}</span>
20
+          <span v-if="template_id == 6" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
21
+          <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
22 22
         </li>
23 23
         <li v-if="isShow('透析器凝血')">
24 24
           <label for="nx">透析器凝血 : </label>
@@ -43,19 +43,19 @@
43 43
         <li v-if="isShow('体温')">
44 44
           <label for="tw">体温 : </label>
45 45
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
46
-          <span class="unit">{{temperature?"℃":''}}</span>
46
+          <span class="unit">{{temperature?'℃':''}}</span>
47 47
         </li>
48 48
 
49 49
         <li v-if="isShow('呼吸频率')">
50 50
           <label for="ml">呼吸频率 : </label>
51 51
           <span id="ml" class="content">{{breathing_rate?breathing_rate:''}}</span>
52
-          <span class="unit">{{breathing_rate?"次/min":''}}</span>
52
+          <span class="unit">{{breathing_rate?'次/min':''}}</span>
53 53
         </li>
54 54
 
55 55
         <li v-if="isShow('脉搏')">
56 56
           <label for="ml">脉搏 : </label>
57 57
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
58
-          <span class="unit">{{pulse_frequency?"次/分":''}}</span>
58
+          <span class="unit">{{pulse_frequency?'次/分':''}}</span>
59 59
         </li>
60 60
 
61 61
         <li v-if="isShow('血管通路操作')">
@@ -63,23 +63,23 @@
63 63
           <span id="xgtlcz" class="content">{{blood_access_opera}}</span>
64 64
         </li>
65 65
 
66
-      <!-- </ul>
66
+        <!-- </ul>
67 67
 
68
-      <ul> -->
68
+        <ul> -->
69 69
         <li v-if="isShow('体重减少')">
70 70
           <label for="tzjs">体重减少 : </label>
71 71
           <span class="content" id="tzjs">{{weight_loss?weight_loss:''}}</span>
72
-          <span class="unit">{{weight_loss?"kg":''}}</span>
72
+          <span class="unit">{{weight_loss?'kg':''}}</span>
73 73
         </li>
74 74
         <li v-if="isShow('舒张压')">
75 75
           <label for="szy">舒张压 : </label>
76 76
           <span id="szy" class="content">{{diastolic_blood_pressure?diastolic_blood_pressure:''}}</span>
77
-          <span class="unit">{{diastolic_blood_pressure?"mmHg":''}}</span>
77
+          <span class="unit">{{diastolic_blood_pressure?'mmHg':''}}</span>
78 78
         </li>
79 79
         <li v-if="isShow('实际置换量')">
80 80
           <label for="sjzhl">实际置换量 : </label>
81 81
           <span id="sjzhl" class="content">{{actual_displacement?actual_displacement:''}}</span>
82
-          <span class="unit">{{actual_displacement?"ml":''}}</span>
82
+          <span class="unit">{{actual_displacement?'ml':''}}</span>
83 83
         </li>
84 84
         <li v-if="isShow('透后症状')">
85 85
           <label for="thzz">透后症状 : </label>
@@ -107,7 +107,7 @@
107 107
         </li>
108 108
         <li v-if="isShow('透析中入量')">
109 109
           <label for="txzrl">透析中入量: </label>
110
-          <span id="txzrl" class="content">{{dialysis_intakes_feed?dialysis_intakes_feed:''}}</span>
110
+          <span id="txzrl" class="content">{{dialysis_intakes_feed?dialysis_intakes_feed:''}}{{getUnit(this.record.dialysis_intakes_unit)}}</span>
111 111
         </li>
112 112
 
113 113
         <li v-if="isShow('患者去向')">
@@ -117,14 +117,14 @@
117 117
         <li v-if="patient_gose==3&&isShow('其他观察内容')">
118 118
           <label for="qtgcnr">其他观察内容 : </label>
119 119
           <span id="qtgcnr" class="content">{{observation_content_other}}</span>
120
-        </li >
121
-        <li  v-if="isShow('拔针后穿刺点渗血')">
120
+        </li>
121
+        <li v-if="isShow('拔针后穿刺点渗血')">
122 122
           <label for="bzh">拔针后穿刺点渗血: </label>
123 123
           <span id="bzh" class="content">{{puncture_point_oozing_blood_name}}</span>
124 124
         </li>
125
-      <!-- </ul>
125
+        <!-- </ul>
126 126
 
127
-      <ul > -->
127
+        <ul > -->
128 128
         <li v-if="isShow('透析过程')">
129 129
           <label for="tw">透析过程 : </label>
130 130
           <span class="content" id="tw" v-if="this.record.dialysis_process == 1">完成</span>
@@ -132,7 +132,7 @@
132 132
         </li>
133 133
         <li v-if="this.record.dialysis_process == 2&&isShow('透析过程提前原因')">
134 134
           <label for="tw">透析过程提前原因 : </label>
135
-          <span class="content" id="tw" >{{in_advance_reason}}</span>
135
+          <span class="content" id="tw">{{in_advance_reason}}</span>
136 136
         </li>
137 137
 
138 138
         <li v-if="isShow('内瘘管拔针后压迫止血时间')">
@@ -169,7 +169,7 @@
169 169
           <span id="hzqx" class="content">{{getDialyzer(this.record.dialyzer)}}</span>
170 170
         </li>
171 171
 
172
-        <li  v-if="isShow('透析期间进食')">
172
+        <li v-if="isShow('透析期间进食')">
173 173
           <label for="bzh">透析期间进食: </label>
174 174
           <span id="bzh" class="content">{{eat_name}}</span>
175 175
         </li>
@@ -180,451 +180,466 @@
180 180
 </template>
181 181
 
182 182
 <script>
183
-export default {
184
-  name: 'DialysisPrescription',
185
-  data () {
186
-    return {
187
-      title: '透后评估 ',
188
-      template_id: 0
189
-      // note: "无明显异常",
190
-      // doctor: "刘小军  医生",
191
-      // info1: [
192
-      //   { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
193
-      //   { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
194
-      //   { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
195
-      //   { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
196
-      //   { value: "5", label: "", content: "", unit: "" }
197
-      // ],
198
-      // info2: [
199
-      //   { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
200
-      //   { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
201
-      //   { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
202
-      //   { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
203
-      //   { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
204
-      // ],
205
-      // info3: [
206
-      //   { value: "1", label: "体温 : ", content: "14", unit: "℃" },
207
-      //   { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
208
-      //   { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
209
-      //   { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
210
-      //   { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
211
-      // ]
212
-    }
213
-    },
214
-  props: {
215
-    record: {
216
-      type: Object
217
-    }
218
-  },
219
-created () {
220
-    this.template_id = this.$store.getters.user.template_info.template_id
221
-  },
222
-  computed: {
223
-    weight_after: function () {
224
-      if (this.record == null || this.record.id == '') {
225
-        return '-'
226
-      }
227
-      return this.record.weight_after
228
-    },
229
-    systolic_blood_pressure: function () {
230
-      if (this.record == null || this.record.id == '') {
231
-        return '-'
232
-      }
233
-      return this.record.systolic_blood_pressure
234
-    },
235
-    actual_ultrafiltration: function () {
236
-      if (this.record == null || this.record.id == '') {
237
-        return '-'
238
-      }
239
-      return this.record.actual_ultrafiltration
240
-    },
241
-    cruor: function () {
242
-      if (this.record == null || this.record.id == '') {
243
-        return '-'
244
-      }
245
-      return this.record.cruor
246
-    },
247
-    internal_fistula: function () {
248
-      if (this.record == null || this.record.id == '') {
249
-        return '-'
250
-      }
251
-      return this.record.internal_fistula
183
+  export default {
184
+    name: 'DialysisPrescription',
185
+    data () {
186
+      return {
187
+        title: '透后评估 ',
188
+        template_id: 0
189
+        // note: "无明显异常",
190
+        // doctor: "刘小军  医生",
191
+        // info1: [
192
+        //   { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
193
+        //   { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
194
+        //   { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
195
+        //   { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
196
+        //   { value: "5", label: "", content: "", unit: "" }
197
+        // ],
198
+        // info2: [
199
+        //   { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
200
+        //   { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
201
+        //   { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
202
+        //   { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
203
+        //   { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
204
+        // ],
205
+        // info3: [
206
+        //   { value: "1", label: "体温 : ", content: "14", unit: "℃" },
207
+        //   { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
208
+        //   { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
209
+        //   { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
210
+        //   { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
211
+        // ]
212
+      }
213
+    },
214
+    props: {
215
+      record: {
216
+        type: Object
217
+      }
218
+    },
219
+    created () {
220
+      this.template_id = this.$store.getters.user.template_info.template_id
221
+    },
222
+    computed: {
223
+      weight_after: function () {
224
+        if (this.record == null || this.record.id == '') {
225
+          return '-'
226
+        }
227
+        return this.record.weight_after
252 228
       },
253
-    weight_loss: function () {
254
-      if (this.record == null || this.record.id == '') {
255
-        return '-'
256
-      }
257
-      return this.record.weight_loss
258
-    },
259
-    inpatient_department: function () {
260
-      if (this.record == null || this.record.id == '') {
261
-        return '-'
262
-      }
263
-      return this.record.inpatient_department
264
-    },
265
-    patient_gose: function () {
266
-      if (this.record == null || this.record.id == '') {
267
-        return 0
268
-      }
269
-      return this.record.patient_gose
270
-    },
271
-    diastolic_blood_pressure: function () {
272
-      if (this.record == null || this.record.id == '') {
273
-        return '-'
274
-      }
275
-      return this.record.diastolic_blood_pressure
276
-    },
277
-    actual_displacement: function () {
278
-      if (this.record == null || this.record.id == '') {
279
-        return '-'
280
-      }
281
-      return this.record.actual_displacement
282
-    },
283
-    symptom_after_dialysis: function () {
284
-      if (this.record == null || this.record.id == '') {
285
-        return '-'
286
-      }
287
-      return this.record.symptom_after_dialysis
288
-    },
289
-    blood_access_part: function () {
290
-      if (this.record == null || this.record.id == '') {
291
-        return '-'
292
-      }
293
-      let vascular_access = this.$store.getters.vascular_access
229
+      systolic_blood_pressure: function () {
230
+        if (this.record == null || this.record.id == '') {
231
+          return '-'
232
+        }
233
+        return this.record.systolic_blood_pressure
234
+      },
235
+      actual_ultrafiltration: function () {
236
+        if (this.record == null || this.record.id == '') {
237
+          return '-'
238
+        }
239
+        return this.record.actual_ultrafiltration
240
+      },
241
+      cruor: function () {
242
+        if (this.record == null || this.record.id == '') {
243
+          return '-'
244
+        }
245
+        return this.record.cruor
246
+      },
247
+      internal_fistula: function () {
248
+        if (this.record == null || this.record.id == '') {
249
+          return '-'
250
+        }
251
+        return this.record.internal_fistula
252
+      },
253
+      weight_loss: function () {
254
+        if (this.record == null || this.record.id == '') {
255
+          return '-'
256
+        }
257
+        return this.record.weight_loss
258
+      },
259
+      inpatient_department: function () {
260
+        if (this.record == null || this.record.id == '') {
261
+          return '-'
262
+        }
263
+        return this.record.inpatient_department
264
+      },
265
+      patient_gose: function () {
266
+        if (this.record == null || this.record.id == '') {
267
+          return 0
268
+        }
269
+        return this.record.patient_gose
270
+      },
271
+      diastolic_blood_pressure: function () {
272
+        if (this.record == null || this.record.id == '') {
273
+          return '-'
274
+        }
275
+        return this.record.diastolic_blood_pressure
276
+      },
277
+      actual_displacement: function () {
278
+        if (this.record == null || this.record.id == '') {
279
+          return '-'
280
+        }
281
+        return this.record.actual_displacement
282
+      },
283
+      symptom_after_dialysis: function () {
284
+        if (this.record == null || this.record.id == '') {
285
+          return '-'
286
+        }
287
+        return this.record.symptom_after_dialysis
288
+      },
289
+      blood_access_part: function () {
290
+        if (this.record == null || this.record.id == '') {
291
+          return '-'
292
+        }
293
+        let vascular_access = this.$store.getters.vascular_access
294 294
         let valen = vascular_access.length
295
-      let name = '-'
295
+        let name = '-'
296 296
         for (let index = 0; index < valen; index++) {
297
-        if (vascular_access[index].id == this.record.blood_access_part_id) {
298
-          name = vascular_access[index].name
299
-            break;
297
+          if (vascular_access[index].id == this.record.blood_access_part_id) {
298
+            name = vascular_access[index].name
299
+            break
300
+          }
300 301
         }
301
-      }
302
-      return name
303
-    },
304
-    puncture_point_oozing_blood_name: function () {
305
-      if (this.record == null || this.record.id == '') {
306
-        return '-'
307
-      }
308
-      switch (this.record.puncture_point_oozing_blood) {
309
-        case 1:
310
-          return '有'
311
-          break
302
+        return name
303
+      },
304
+      puncture_point_oozing_blood_name: function () {
305
+        if (this.record == null || this.record.id == '') {
306
+          return '-'
307
+        }
308
+        switch (this.record.puncture_point_oozing_blood) {
309
+          case 1:
310
+            return '有'
311
+            break
312 312
           case 2:
313
-          return '无'
314
-          break
313
+            return '无'
314
+            break
315 315
 
316
-        default:
316
+          default:
317
+            return '-'
318
+            break
319
+        }
320
+      },
321
+
322
+      eat_name: function () {
323
+        if (this.record == null || this.record.id == '') {
317 324
           return '-'
318
-          break
319 325
         }
320
-    }, 
321
-eat_name: function () {
322
-      if (this.record == null || this.record.id == '') {
323
-        return '-'
324
-      }
325
-      switch (this.record.is_eat) {
326
-        case 1:
327
-          return '有'
328
-          break
326
+        switch (this.record.is_eat) {
327
+          case 1:
328
+            return '有'
329
+            break
329 330
           case 2:
330
-          return '无'
331
-          break
331
+            return '无'
332
+            break
332 333
 
333
-        default:
334
+          default:
335
+            return '-'
336
+            break
337
+        }
338
+      },
339
+      patient_gose_name: function () {
340
+        if (this.record == null || this.record.id == '') {
334 341
           return '-'
335
-          break
336 342
         }
337
-    },
338
-    patient_gose_name: function () {
339
-      if (this.record == null || this.record.id == '') {
340
-        return '-'
341
-      }
342
-      switch (this.record.patient_gose) {
343
-        case 1:
344
-          return '离院'
345
-          break
343
+        switch (this.record.patient_gose) {
344
+          case 1:
345
+            return '离院'
346
+            break
346 347
           case 2:
347
-          return '留观'
348
-          break
349
-        case 3:
350
-          return '住院'
351
-          break
348
+            return '留观'
349
+            break
350
+          case 3:
351
+            return '住院'
352
+            break
352 353
 
353
-        default:
354
+          default:
355
+            return '-'
356
+            break
357
+        }
358
+      },
359
+      blood_access_opera: function () {
360
+        if (this.record == null || this.record.id == '') {
354 361
           return '-'
355
-          break
356 362
         }
357
-    },
358
-    blood_access_opera: function () {
359
-      if (this.record == null || this.record.id == '') {
360
-        return '-'
361
-      }
362
-      let vascular_access = this.$store.getters.vascular_access_desc
363
+        let vascular_access = this.$store.getters.vascular_access_desc
363 364
         let valen = vascular_access.length
364
-      let name = '-'
365
+        let name = '-'
365 366
         for (let index = 0; index < valen; index++) {
366
-        if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
367
-          name = vascular_access[index].name
368
-            break;
367
+          if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
368
+            name = vascular_access[index].name
369
+            break
370
+          }
369 371
         }
370
-      }
371
-      return name
372
-    },
373
-    catheter: function () {
374
-      if (this.record == null || this.record.id == '') {
375
-        return '-'
376
-      }
377
-      return this.record.catheter
378
-    },
379
-    puncture_point_haematoma_name: function () {
380
-      if (this.record == null || this.record.id == '') {
381
-        return '-'
382
-      }
383
-      switch (this.record.puncture_point_haematoma) {
384
-        case 1:
385
-          return '有'
386
-          break
372
+        return name
373
+      },
374
+      catheter: function () {
375
+        if (this.record == null || this.record.id == '') {
376
+          return '-'
377
+        }
378
+        return this.record.catheter
379
+      },
380
+      puncture_point_haematoma_name: function () {
381
+        if (this.record == null || this.record.id == '') {
382
+          return '-'
383
+        }
384
+        switch (this.record.puncture_point_haematoma) {
385
+          case 1:
386
+            return '有'
387
+            break
387 388
           case 2:
388
-          return '无'
389
-          break
390
-        default:
389
+            return '无'
390
+            break
391
+          default:
392
+            return '-'
393
+            break
394
+        }
395
+      },
396
+      breathing_rate: function () {
397
+        if (this.record == null || this.record.id == '') {
391 398
           return '-'
392
-          break
393 399
         }
394
-    },
395
-    breathing_rate: function () {
396
-      if (this.record == null || this.record.id == '') {
397
-        return '-'
398
-      }
399
-      return this.record.breathing_rate
400
-    },
401
-    temperature: function () {
402
-      if (this.record == null || this.record.id == '') {
403
-        return '-'
404
-      }
405
-      return this.record.temperature
406
-    },
407
-    pulse_frequency: function () {
408
-      if (this.record == null || this.record.id == '') {
409
-        return '-'
410
-      }
411
-      return this.record.pulse_frequency
412
-    },
413
-    actual_treatment_hour: function () {
414
-      if (this.record == null || this.record.id == '') {
415
-        return '-'
416
-      }
417
-      return this.record.actual_treatment_hour
418
-    },
419
-    actual_treatment_minute: function () {
420
-      if (this.record == null || this.record.id == '') {
421
-        return '-'
422
-      }
423
-      return this.record.actual_treatment_minute
424
-    },
425
-    dialysis_intakes_feed: function () {
426
-      if (this.record == null || this.record.id == '') {
427
-        return '-'
428
-      }
429
-      return this.record.dialysis_intakes
430
-    },
431
-    observation_content_other: function () {
432
-      if (this.record == null || this.record.id == '') {
433
-        return '-'
434
-      }
435
-      return this.record.observation_content_other
436
-    },
437
-    observation_content: function () {
438
-      if (this.record == null || this.record.id == '') {
439
-        return '-'
440
-      }
441
-      return this.record.observation_content
442
-    },
443
-    complication: function () {
444
-      if (this.record == null || this.record.id == '') {
445
-        return '-'
446
-      }
447
-      return this.record.complication
448
-    },
449
-    internal_fistula_tremor_ac_name: function () {
450
-      if (this.record == null || this.record.id == '') {
451
-        return '-'
452
-      }
453
-      switch (this.record.internal_fistula_tremor_ac) {
454
-        case 1:
455
-          return '存在'
456
-          break
400
+        return this.record.breathing_rate
401
+      },
402
+      temperature: function () {
403
+        if (this.record == null || this.record.id == '') {
404
+          return '-'
405
+        }
406
+        return this.record.temperature
407
+      },
408
+      pulse_frequency: function () {
409
+        if (this.record == null || this.record.id == '') {
410
+          return '-'
411
+        }
412
+        return this.record.pulse_frequency
413
+      },
414
+      actual_treatment_hour: function () {
415
+        if (this.record == null || this.record.id == '') {
416
+          return '-'
417
+        }
418
+        return this.record.actual_treatment_hour
419
+      },
420
+      actual_treatment_minute: function () {
421
+        if (this.record == null || this.record.id == '') {
422
+          return '-'
423
+        }
424
+        return this.record.actual_treatment_minute
425
+      },
426
+      dialysis_intakes_feed: function () {
427
+        if (this.record == null || this.record.id == '') {
428
+          return '-'
429
+        }
430
+        return this.record.dialysis_intakes
431
+      },
432
+      observation_content_other: function () {
433
+        if (this.record == null || this.record.id == '') {
434
+          return '-'
435
+        }
436
+        return this.record.observation_content_other
437
+      },
438
+      observation_content: function () {
439
+        if (this.record == null || this.record.id == '') {
440
+          return '-'
441
+        }
442
+        return this.record.observation_content
443
+      },
444
+      complication: function () {
445
+        if (this.record == null || this.record.id == '') {
446
+          return '-'
447
+        }
448
+        return this.record.complication
449
+      },
450
+      internal_fistula_tremor_ac_name: function () {
451
+        if (this.record == null || this.record.id == '') {
452
+          return '-'
453
+        }
454
+        switch (this.record.internal_fistula_tremor_ac) {
455
+          case 1:
456
+            return '存在'
457
+            break
457 458
           case 2:
458
-          return '减弱'
459
-          break
459
+            return '减弱'
460
+            break
460 461
           case 3:
461
-          return '无'
462
+            return '无'
463
+            break
464
+          default:
465
+            return '-'
462 466
             break
463
-        default:
464
-          return '-'
465
-          break
466 467
         }
467
-    },
468
-
469
-    remark: function () {
470
-      if (this.record == null || this.record.id == '') {
471
-        return ''
472
-      }
473
-      return this.record.remark
474
-    }, 
475
-in_advance_minute: function () {
476
-      if (this.record == null || this.record.id == '') {
477
-        return ''
478
-      }
479
-      return this.record.in_advance_minute
480
-    },
481
- in_advance_reason: function () {
482
-      if (this.record == null || this.record.id == '') {
483
-        return ''
484
-      }
485
-      return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
486
-    },
487
- hemostasis_minute: function () {
488
-      if (this.record == null || this.record.id == '') {
489
-        return ''
490
-      }
468
+      },
491 469
 
492
-      return this.record.hemostasis_minute
493
-    },
494
- in_advance_reason_other: function () {
495
-      if (this.record == null || this.record.id == '') {
496
-        return ''
497
-      }
498
-      return this.record.in_advance_reason_other
499
-    }
500
-  },
501
-  methods: {
502
-    isShow (name) {
503
-      var filedList = this.$store.getters.user.fileds
470
+      remark: function () {
471
+        if (this.record == null || this.record.id == '') {
472
+          return ''
473
+        }
474
+        return this.record.remark
475
+      },
476
+      in_advance_minute: function () {
477
+        if (this.record == null || this.record.id == '') {
478
+          return ''
479
+        }
480
+        return this.record.in_advance_minute
481
+      },
482
+      in_advance_reason: function () {
483
+        if (this.record == null || this.record.id == '') {
484
+          return ''
485
+        }
486
+        return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
487
+      },
488
+      hemostasis_minute: function () {
489
+        if (this.record == null || this.record.id == '') {
490
+          return ''
491
+        }
504 492
 
505
-      for (let i = 0; i < filedList.length; i++) {
506
-        if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
507
-          return true
493
+        return this.record.hemostasis_minute
494
+      },
495
+      in_advance_reason_other: function () {
496
+        if (this.record == null || this.record.id == '') {
497
+          return ''
508 498
         }
499
+        return this.record.in_advance_reason_other
509 500
       }
510
-      return false
511 501
     },
512
-    getOpera: function (id) {
513
-      var hemostasis_opera = this.$store.getters.hemostasis_opera
514
-        var hemostasisOperaName = '';
515
-      for (let i = 0; i < hemostasis_opera.length; i++) {
516
-        if (hemostasis_opera[i].id == id) {
517
-          hemostasisOperaName = hemostasis_opera[i].name
502
+    methods: {
503
+      isShow (name) {
504
+        var filedList = this.$store.getters.user.fileds
505
+
506
+        for (let i = 0; i < filedList.length; i++) {
507
+          if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
508
+            return true
509
+          }
518 510
         }
519
-      }
520
-      return hemostasisOperaName
521
-    },
522
- getTremorNoise: function (id) {
523
-      var tremor_noise = this.$store.getters.tremor_noise
524
-        var tremorNoiseName = '';
525
-      for (let i = 0; i < tremor_noise.length; i++) {
526
-        if (tremor_noise[i].id == id) {
527
-          tremorNoiseName = tremor_noise[i].name
511
+        return false
512
+      },
513
+      getOpera: function (id) {
514
+        var hemostasis_opera = this.$store.getters.hemostasis_opera
515
+        var hemostasisOperaName = ''
516
+        for (let i = 0; i < hemostasis_opera.length; i++) {
517
+          if (hemostasis_opera[i].id == id) {
518
+            hemostasisOperaName = hemostasis_opera[i].name
519
+          }
528 520
         }
529
-      }
530
-      return tremorNoiseName
531
-    },
532
- getDisequilibriumSyndrome: function (id) {
533
-      var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
534
-        var disequilibriumSyndromeName = '';
535
-      for (let i = 0; i < disequilibrium_syndrome.length; i++) {
536
-        if (disequilibrium_syndrome[i].id == id) {
537
-          disequilibriumSyndromeName = disequilibrium_syndrome[i].name
521
+        return hemostasisOperaName
522
+      },
523
+      getTremorNoise: function (id) {
524
+        var tremor_noise = this.$store.getters.tremor_noise
525
+        var tremorNoiseName = ''
526
+        for (let i = 0; i < tremor_noise.length; i++) {
527
+          if (tremor_noise[i].id == id) {
528
+            tremorNoiseName = tremor_noise[i].name
529
+          }
538 530
         }
539
-      }
540
-      return disequilibriumSyndromeName
541
-    },
542
- getDisequilibriumSyndromeOptionName: function (id) {
543
-      var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
544
-        var disequilibriumSyndromeOptionName = '';
545
-      for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
546
-        if (disequilibrium_syndrome_option[i].id == id) {
547
-          disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
531
+        return tremorNoiseName
532
+      },
533
+      getDisequilibriumSyndrome: function (id) {
534
+        var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
535
+        var disequilibriumSyndromeName = ''
536
+        for (let i = 0; i < disequilibrium_syndrome.length; i++) {
537
+          if (disequilibrium_syndrome[i].id == id) {
538
+            disequilibriumSyndromeName = disequilibrium_syndrome[i].name
539
+          }
548 540
         }
549
-      }
550
-      return disequilibriumSyndromeOptionName
551
-    }, 
552
-getArterialTubeName: function (id) {
553
-      var arterial_tube = this.$store.getters.arterial_tube
554
-        var arterialTubeName = '';
555
-      for (let i = 0; i < arterial_tube.length; i++) {
556
-        if (arterial_tube[i].id == id) {
557
-          arterialTubeName = arterial_tube[i].name
541
+        return disequilibriumSyndromeName
542
+      },
543
+      getDisequilibriumSyndromeOptionName: function (id) {
544
+        var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
545
+        var disequilibriumSyndromeOptionName = ''
546
+        for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
547
+          if (disequilibrium_syndrome_option[i].id == id) {
548
+            disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
549
+          }
558 550
         }
559
-      }
560
-      return arterialTubeName
561
-    },
562
- getIntravenousTubeName: function (id) {
563
-      var intravenous_tube = this.$store.getters.intravenous_tube
564
-        var intravenousTubeName = '';
565
-      for (let i = 0; i < intravenous_tube.length; i++) {
566
-        if (intravenous_tube[i].id == id) {
567
-          intravenousTubeName = intravenous_tube[i].name
551
+        return disequilibriumSyndromeOptionName
552
+      },
553
+      getArterialTubeName: function (id) {
554
+        var arterial_tube = this.$store.getters.arterial_tube
555
+        var arterialTubeName = ''
556
+        for (let i = 0; i < arterial_tube.length; i++) {
557
+          if (arterial_tube[i].id == id) {
558
+            arterialTubeName = arterial_tube[i].name
559
+          }
568 560
         }
569
-      }
570
-      return intravenousTubeName
571
-    },
572
- getDialyzer: function (id) {
573
-      var dialyzer = this.$store.getters.dialyzer
574
-        var dialyzerName = '';
575
-      for (let i = 0; i < dialyzer.length; i++) {
576
-        if (dialyzer[i].id == id) {
577
-          dialyzerName = dialyzer[i].name
561
+        return arterialTubeName
562
+      },
563
+      getIntravenousTubeName: function (id) {
564
+        var intravenous_tube = this.$store.getters.intravenous_tube
565
+        var intravenousTubeName = ''
566
+        for (let i = 0; i < intravenous_tube.length; i++) {
567
+          if (intravenous_tube[i].id == id) {
568
+            intravenousTubeName = intravenous_tube[i].name
569
+          }
578 570
         }
579
-      }
580
-      return dialyzerName
581
-    }
582
-    // setRecord(record) {
583
-    //   if (record == null) {
584
-    //     this.info1[0].content = ""
585
-    //     this.info1[1].content = ""
586
-    //     this.info1[2].content = ""
587
-    //     this.info1[3].content = ""
588
-    //     this.info1[4].content = ""
571
+        return intravenousTubeName
572
+      },
573
+      getDialyzer: function (id) {
574
+        var dialyzer = this.$store.getters.dialyzer
575
+        var dialyzerName = ''
576
+        for (let i = 0; i < dialyzer.length; i++) {
577
+          if (dialyzer[i].id == id) {
578
+            dialyzerName = dialyzer[i].name
579
+          }
580
+        }
581
+        return dialyzerName
582
+      },
583
+      getUnit: function (val) {
584
+        switch (this.record.dialysis_intakes_unit) {
585
+          case 1:
586
+            return 'g'
587
+            break
588
+          case 2:
589
+            return 'ml'
590
+            break
591
+          default:
592
+            return '-'
593
+            break
594
+        }
595
+      },
596
+      // setRecord(record) {
597
+      //   if (record == null) {
598
+      //     this.info1[0].content = ""
599
+      //     this.info1[1].content = ""
600
+      //     this.info1[2].content = ""
601
+      //     this.info1[3].content = ""
602
+      //     this.info1[4].content = ""
603
+
604
+      //     this.info2[0].content = ""
605
+      //     this.info2[1].content = ""
606
+      //     this.info2[2].content = ""
607
+      //     this.info2[3].content = ""
608
+      //     this.info2[4].content = ""
589 609
 
590
-    //     this.info2[0].content = ""
591
-    //     this.info2[1].content = ""
592
-    //     this.info2[2].content = ""
593
-    //     this.info2[3].content = ""
594
-    //     this.info2[4].content = ""
610
+      //     this.info3[0].content = ""
611
+      //     this.info3[1].content = ""
612
+      //     this.info3[2].content = ""
613
+      //     this.info3[3].content = ""
614
+      //     this.info3[4].content = ""
595 615
 
596
-    //     this.info3[0].content = ""
597
-    //     this.info3[1].content = ""
598
-    //     this.info3[2].content = ""
599
-    //     this.info3[3].content = ""
600
-    //     this.info3[4].content = ""
616
+      //     this.note = ""
601 617
 
602
-    //     this.note = ""
618
+      //   } else {
619
+      //     this.info1[0].content = record.weight_after
620
+      //     this.info1[1].content = record.systolic_blood_pressure
621
+      //     this.info1[2].content = record.actual_ultrafiltration
622
+      //     this.info1[3].content = record.cruor
623
+      //     // this.info1[4].content = record.systolic_blood_pressure
603 624
 
604
-    //   } else {
605
-    //     this.info1[0].content = record.weight_after
606
-    //     this.info1[1].content = record.systolic_blood_pressure
607
-    //     this.info1[2].content = record.actual_ultrafiltration
608
-    //     this.info1[3].content = record.cruor
609
-    //     // this.info1[4].content = record.systolic_blood_pressure
625
+      //     this.info2[0].content = record.weight_loss
626
+      //     this.info2[1].content = record.diastolic_blood_pressure
627
+      //     this.info2[2].content = record.actual_displacement
628
+      //     this.info2[3].content = record.symptom_after_dialysis
629
+      //     this.info2[4].content = record.catheter
610 630
 
611
-    //     this.info2[0].content = record.weight_loss
612
-    //     this.info2[1].content = record.diastolic_blood_pressure
613
-    //     this.info2[2].content = record.actual_displacement
614
-    //     this.info2[3].content = record.symptom_after_dialysis
615
-    //     this.info2[4].content = record.catheter
631
+      //     this.info3[0].content = record.temperature
632
+      //     this.info3[1].content = record.pulse_frequency
633
+      //     this.info3[2].content = record.actual_treatment_hour
634
+      //     this.info3[3].content = record.dialysis_intakes_feed
635
+      //     this.info3[4].content = record.complication
616 636
 
617
-    //     this.info3[0].content = record.temperature
618
-    //     this.info3[1].content = record.pulse_frequency
619
-    //     this.info3[2].content = record.actual_treatment_hour
620
-    //     this.info3[3].content = record.dialysis_intakes_feed
621
-    //     this.info3[4].content = record.complication
637
+      //     this.note = record.remark
638
+      //   }
639
+      // }
640
+    },
622 641
 
623
-    //     this.note = record.remark
624
-    //   }
625
-    // }
626 642
   }
627
-}
628 643
 </script>
629 644
 
630 645
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 5 - 2
src/pages/main/today/dialysisPrescription.vue View File

@@ -10,7 +10,9 @@
10 10
         <li v-if="isShow('目标超滤量')">
11 11
           <label>目标超滤量 : </label>
12 12
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
13
-          <span class="unit">{{target_ultrafiltration != '0'?"L":''}}</span>
13
+          <span class="unit" v-if="this.$store.getters.user.template_info.template_id != 6">{{target_ultrafiltration != '0'?"L":''}}</span>
14
+          <span class="unit" v-if="this.$store.getters.user.template_info.template_id == 6">{{target_ultrafiltration != '0'?"ml":''}}</span>
15
+
14 16
         </li>
15 17
         <li v-if="isShow('首剂')">
16 18
           <label>首剂 : </label>
@@ -123,7 +125,8 @@
123 125
           <span class="unit"></span>
124 126
         </li>
125 127
         <li v-if="isShow('置换液')">
126
-          <label>置换液: </label>
128
+          <label v-if="this.$store.getters.user.template_info.template_id != 6">置换液: </label>
129
+          <label v-if="this.$store.getters.user.template_info.template_id == 6">置换方式: </label>
127 130
           <span class="content">{{displace_liqui}}</span>
128 131
           <span class="unit"></span>
129 132
         </li>

+ 6 - 4
src/pages/monitoring/index.vue View File

@@ -290,10 +290,11 @@ export default {
290 290
       this.getMonitor(this.queryParams);
291 291
     },
292 292
     partitionName: function(val) {
293
-      return typeof this.partitionArr[val] != "undefined" &&
294
-        typeof this.partitionArr[val].name != "undefined"
295
-        ? this.partitionArr[val].name
296
-        : "";
293
+      for (let i = 0; i < this.partitionArr.length; i++){
294
+        if(this.partitionArr[i].id == val){
295
+          return   this.partitionArr[i].name
296
+        }
297
+      }
297 298
     },
298 299
     GetAllZone: function() {
299 300
       GetAllZone().then(response => {
@@ -308,6 +309,7 @@ export default {
308 309
     itemClick: function(id) {
309 310
       this.partition = id;
310 311
       this.visible = false;
312
+
311 313
       this.queryParams.date = this.parseTime(this.date / 1000, "{y}-{m}-{d}");
312 314
       this.queryParams.partition = this.partition;
313 315
       this.getMonitor(this.queryParams);

+ 1 - 1
src/router/index.js View File

@@ -1,4 +1,4 @@
1
-import Vue from 'vue'
1
+ import Vue from 'vue'
2 2
 import Router from 'vue-router'
3 3
 
4 4
 Vue.use(Router)

+ 3 - 1
src/store/app/app.js View File

@@ -4,6 +4,7 @@ const app = {
4 4
             zone_select_index: 0,
5 5
             schedule_type_select_index: 0,
6 6
             schedule_date: new Date(),
7
+            ismypatient:false,
7 8
         }
8 9
     },
9 10
     mutations: {
@@ -11,11 +12,12 @@ const app = {
11 12
             state.dialysis_area.zone_select_index = selects.zone
12 13
             state.dialysis_area.schedule_type_select_index = selects.schedule_type
13 14
             state.dialysis_area.schedule_date = selects.schedule_date
15
+            state.dialysis_area.ismypatient = selects.ismypatient
14 16
         }
15 17
     },
16 18
     actions: {
17 19
         SaveDialysisAreaSelectIndexs({commit}, selects) { // selects: {zone: zone_index, schedule_type: schedule_type_index, schedule_date: Date}
18
-            commit('UPDATE_DIALYSIS_AREA_SELECT', {zone: selects.zone, schedule_type: selects.schedule_type, schedule_date: selects.schedule_date})
20
+            commit('UPDATE_DIALYSIS_AREA_SELECT', {zone: selects.zone, schedule_type: selects.schedule_type, schedule_date: selects.schedule_date,ismypatient:selects.ismypatient})
19 21
         }
20 22
     }
21 23
 }

+ 4 - 2
src/store/modules/globalConfig.js View File

@@ -380,8 +380,8 @@ const global_config = {
380 380
         id: 3,
381 381
         name: '低分子肝素',
382 382
         type: 1,
383
-        shouji: -1,
384
-        weichi: -1,
383
+        shouji: 1,
384
+        weichi: 1,
385 385
         zongliang: 1,
386 386
         gaimingcheng: -1,
387 387
         gaijiliang: -1,
@@ -484,6 +484,7 @@ const global_config = {
484 484
     ],
485 485
 
486 486
     symptoms: [
487
+      {id: 30, name: '无症状'},
487 488
       {id: 1, name: '血压下降'},
488 489
       {id: 2, name: '恶心呕吐'},
489 490
       {id: 3, name: '肌肉痉挛'},
@@ -625,6 +626,7 @@ const global_config = {
625 626
     ],
626 627
 
627 628
     complication: [
629
+      {id: 24, name: '无症状'},
628 630
       {id: 1, name: '低血压'},
629 631
       {id: 2, name: '高血压'},
630 632
       {id: 3, name: '心律失常'},