Browse Source

修改问题

张保健 3 years ago
parent
commit
772a4e0281

+ 0 - 3
build/cdn.json View File

@@ -1,3 +0,0 @@
1
-{
2
-  "version": "1.2.703"
3
-}

+ 8 - 3
src/pages/main/dialog/MonitDialog.vue View File

@@ -218,9 +218,9 @@
218 218
             <div class="cell" v-if="isShow('动脉压')">
219 219
               <label>动脉压(mmHg)</label>
220 220
               <input
221
-                type="number"
221
+                type="tel"
222 222
                 @focus="inputFocus"
223
-                onclick="this.select();"
223
+
224 224
                 class="inputBox"
225 225
                 v-model="form.arterial_pressure"
226 226
                 style="width:60%"
@@ -623,7 +623,12 @@ export default {
623 623
         this.form.diastolic_bp = '' // this.last_monitor_record.diastolic_blood_pressure;
624 624
         this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume : ''
625 625
         this.form.venous_pressure = '' // this.last_monitor_record.venous_pressure;
626
-        this.form.arterial_pressure = '' // this.last_monitor_record.arterial_pressure;
626
+        if (this.template_id == 17) {
627
+          this.form.arterial_pressure = '-'
628
+        } else {
629
+          this.form.arterial_pressure = '' // this.last_monitor_record.arterial_pressure;
630
+        }
631
+
627 632
         this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
628 633
         this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate ? resp.monitor.ultrafiltration_rate : ''
629 634
         this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''

+ 8 - 7
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -45,7 +45,8 @@
45 45
           </div>
46 46
 
47 47
           <div class="item" v-if="isShow('目标超滤量')">
48
-            <label class="name" for="mbcll">目标超滤量(L)</label>
48
+            <label class="name" v-if="this.$store.getters.user.template_info.template_id != 17" for="mbcll">目标超滤量(L)</label>
49
+            <label class="name" v-if="this.$store.getters.user.template_info.template_id == 17" for="mbcll">目标超滤量(ml)</label>
49 50
             <div class="content">
50 51
               <input
51 52
                 type="number"
@@ -2782,12 +2783,12 @@ export default {
2782 2783
 
2783 2784
     this.bodyFluidOptions = this.$store.getters.body_fluid
2784 2785
     var special_medicine = [
2785
-        {id: 1,name: '无'},
2786
-        {id: 2,name: '降压药'},
2787
-        {id: 3,name: '抗凝'},
2788
-        {id: 4,name: '其他'},
2789
-        {id: 5,name: '降糖药'}
2790
-      ]
2786
+      {id: 1, name: '无'},
2787
+      {id: 2, name: '降压药'},
2788
+      {id: 3, name: '抗凝'},
2789
+      {id: 4, name: '其他'},
2790
+      {id: 5, name: '降糖药'}
2791
+    ]
2791 2792
     this.specialMedicineOptions = special_medicine
2792 2793
     // this.specialMedicineOptions = this.$store.getters.special_medicine
2793 2794
     this.displaceLiquiPartOptions = this.$store.getters.displace_liqui

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

@@ -21,7 +21,7 @@
21 21
         </div>
22 22
 
23 23
         <div class="item" v-if="isShow('实际超滤量')">
24
-          <label v-if="template_id == 6" class="name" for="sjcll">实际超滤量(ml)</label>
24
+          <label v-if="template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 17" class="name" for="sjcll">实际超滤量(ml)</label>
25 25
           <label v-else class="name" for="sjcll">实际超滤量(L)</label>
26 26
           <div class="content">
27 27
             <input

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

@@ -32,7 +32,7 @@
32 32
         <li v-if="isShow('实际超滤量')">
33 33
           <label for="sjcll">实际超滤量: </label>
34 34
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
35
-          <span v-if="template_id == 6 ||template_id == 10 || template_id == 11 " class="unit">{{actual_ultrafiltration?'ml':''}}</span>
35
+          <span v-if="template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 17" class="unit">{{actual_ultrafiltration?'ml':''}}</span>
36 36
           <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
37 37
         </li>
38 38
         <li v-if="isShow('透析器')">

+ 7 - 8
src/pages/main/today/dialysisPrescription.vue View File

@@ -15,9 +15,8 @@
15 15
         <li v-if="isShow('目标超滤量')">
16 16
           <label>目标超滤量 :</label>
17 17
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
18
-          <span
19
-            class="unit"
20
-          >{{target_ultrafiltration != '0'?"L":''}}</span>
18
+          <span v-if="this.$store.getters.user.template_info.template_id != 17" class="unit" >{{target_ultrafiltration != '0'?"L":''}}</span>
19
+          <span v-if="this.$store.getters.user.template_info.template_id == 17" class="unit" >{{target_ultrafiltration != '0'?"ml":''}}</span>
21 20
           <!--<span-->
22 21
           <!--class="unit"-->
23 22
           <!--v-if="this.$store.getters.user.template_info.template_id == 6"-->
@@ -426,11 +425,11 @@ export default {
426 425
       }
427 426
       // var special_medicine = this.$store.getters.special_medicine
428 427
       var special_medicine = [
429
-        {id: 1,name: '无'},
430
-        {id: 2,name: '降压药'},
431
-        {id: 3,name: '抗凝'},
432
-        {id: 4,name: '其他'},
433
-        {id: 5,name: '降糖药'}
428
+        {id: 1, name: '无'},
429
+        {id: 2, name: '降压药'},
430
+        {id: 3, name: '抗凝'},
431
+        {id: 4, name: '其他'},
432
+        {id: 5, name: '降糖药'}
434 433
       ]
435 434
       for (let i = 0; i < special_medicine.length; i++) {
436 435
         if (special_medicine[i].id == id) {