Browse Source

修改问题

张保健 3 years ago
parent
commit
772a4e0281

+ 0 - 3
build/cdn.json View File

1
-{
2
-  "version": "1.2.703"
3
-}

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

218
             <div class="cell" v-if="isShow('动脉压')">
218
             <div class="cell" v-if="isShow('动脉压')">
219
               <label>动脉压(mmHg)</label>
219
               <label>动脉压(mmHg)</label>
220
               <input
220
               <input
221
-                type="number"
221
+                type="tel"
222
                 @focus="inputFocus"
222
                 @focus="inputFocus"
223
-                onclick="this.select();"
223
+
224
                 class="inputBox"
224
                 class="inputBox"
225
                 v-model="form.arterial_pressure"
225
                 v-model="form.arterial_pressure"
226
                 style="width:60%"
226
                 style="width:60%"
623
         this.form.diastolic_bp = '' // this.last_monitor_record.diastolic_blood_pressure;
623
         this.form.diastolic_bp = '' // this.last_monitor_record.diastolic_blood_pressure;
624
         this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume : ''
624
         this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume : ''
625
         this.form.venous_pressure = '' // this.last_monitor_record.venous_pressure;
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
         this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
632
         this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
628
         this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate ? resp.monitor.ultrafiltration_rate : ''
633
         this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate ? resp.monitor.ultrafiltration_rate : ''
629
         this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''
634
         this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''

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

45
           </div>
45
           </div>
46
 
46
 
47
           <div class="item" v-if="isShow('目标超滤量')">
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
             <div class="content">
50
             <div class="content">
50
               <input
51
               <input
51
                 type="number"
52
                 type="number"
2782
 
2783
 
2783
     this.bodyFluidOptions = this.$store.getters.body_fluid
2784
     this.bodyFluidOptions = this.$store.getters.body_fluid
2784
     var special_medicine = [
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
     this.specialMedicineOptions = special_medicine
2792
     this.specialMedicineOptions = special_medicine
2792
     // this.specialMedicineOptions = this.$store.getters.special_medicine
2793
     // this.specialMedicineOptions = this.$store.getters.special_medicine
2793
     this.displaceLiquiPartOptions = this.$store.getters.displace_liqui
2794
     this.displaceLiquiPartOptions = this.$store.getters.displace_liqui

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

21
         </div>
21
         </div>
22
 
22
 
23
         <div class="item" v-if="isShow('实际超滤量')">
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
           <label v-else class="name" for="sjcll">实际超滤量(L)</label>
25
           <label v-else class="name" for="sjcll">实际超滤量(L)</label>
26
           <div class="content">
26
           <div class="content">
27
             <input
27
             <input

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

32
         <li v-if="isShow('实际超滤量')">
32
         <li v-if="isShow('实际超滤量')">
33
           <label for="sjcll">实际超滤量: </label>
33
           <label for="sjcll">实际超滤量: </label>
34
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
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
           <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
36
           <span v-else class="unit">{{actual_ultrafiltration?'L':''}}</span>
37
         </li>
37
         </li>
38
         <li v-if="isShow('透析器')">
38
         <li v-if="isShow('透析器')">

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

15
         <li v-if="isShow('目标超滤量')">
15
         <li v-if="isShow('目标超滤量')">
16
           <label>目标超滤量 :</label>
16
           <label>目标超滤量 :</label>
17
           <span class="content">{{target_ultrafiltration != '0'?target_ultrafiltration:''}}</span>
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
           <!--<span-->
20
           <!--<span-->
22
           <!--class="unit"-->
21
           <!--class="unit"-->
23
           <!--v-if="this.$store.getters.user.template_info.template_id == 6"-->
22
           <!--v-if="this.$store.getters.user.template_info.template_id == 6"-->
426
       }
425
       }
427
       // var special_medicine = this.$store.getters.special_medicine
426
       // var special_medicine = this.$store.getters.special_medicine
428
       var special_medicine = [
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
       for (let i = 0; i < special_medicine.length; i++) {
434
       for (let i = 0; i < special_medicine.length; i++) {
436
         if (special_medicine[i].id == id) {
435
         if (special_medicine[i].id == id) {