Browse Source

修改显示字段

csx 4 years ago
parent
commit
a6a871f410
1 changed files with 29 additions and 0 deletions
  1. 29 0
      src/pages/main/today/assessmentBefore.vue

+ 29 - 0
src/pages/main/today/assessmentBefore.vue View File

@@ -38,6 +38,14 @@
38 38
           <span class="content">{{ last_post_dialysis }}</span>
39 39
           <span class="unit"></span>
40 40
         </li>
41
+        <li v-if="isShow('导管打折')">
42
+          <label>导管打折 : </label>
43
+          <span class="content" v-if="this.record.catheter_bend == 1">{{ '有' }}</span>
44
+          <span class="content" v-if="this.record.catheter_bend == 2">{{ '无' }}</span>
45
+
46
+          <span class="unit"></span>
47
+        </li>
48
+
41 49
         <li v-if="isShow('导管')">
42 50
           <label>导管 : </label>
43 51
           <span class="content">{{ catheter }}</span>
@@ -102,6 +110,13 @@
102 110
           <span class="unit"></span>
103 111
         </li>
104 112
 
113
+        <li v-if="isShow('内瘘')">
114
+          <label>内瘘: </label>
115
+          <span class="content">{{ internal_fistula }}</span>
116
+          <span class="unit"></span>
117
+        </li>
118
+
119
+
105 120
 
106 121
         <!-- </ul>
107 122
 
@@ -225,6 +240,13 @@
225 240
           <span class="content">{{ getBloodAccessOpera(this.record.blood_access_part_opera_id) }}</span>
226 241
           <span class="unit"> </span>
227 242
         </li>
243
+
244
+        <li v-if="isShow('内瘘皮肤情况')">
245
+          <label>内瘘皮肤情况: </label>
246
+          <span class="content">{{ internal_fistula_skin }}</span>
247
+          <span class="unit"></span>
248
+        </li>
249
+
228 250
       </ul>
229 251
     </div>
230 252
     <div class="note">
@@ -257,6 +279,13 @@
257 279
     this.template_id = this.$store.getters.user.template_info.template_id;
258 280
   },
259 281
   computed: {
282
+    internal_fistula_skin: function() {
283
+      if (this.record.id == 0) {
284
+        return '-'
285
+      }
286
+      return this.record.internal_fistula_skin
287
+    },
288
+
260 289
     machine_type: function() {
261 290
       if (this.record == null || this.record.id == "") {
262 291
         return "";