张保健 3 years ago
parent
commit
2d9e8fd009
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/xt_pages/dialysis/template/DialysisPrintOrderFourteen.vue

+ 6 - 6
src/xt_pages/dialysis/template/DialysisPrintOrderFourteen.vue View File

@@ -44,7 +44,7 @@
44 44
           <tr>
45 45
             <td width="90">传染病标志:</td>
46 46
             <td width="80">
47
-              <div class="under-line">{{InfectiousDiseases}}</div>
47
+              <div class="under-line">{{InfectiousDiseases?InfectiousDiseases:'无'}}</div>
48 48
             </td>
49 49
             <td width="10"></td>
50 50
             <td width="110">上次透析时间:</td>
@@ -1269,19 +1269,19 @@ export default {
1269 1269
           InfectiousDiseasesArr.forEach((item, index) => {
1270 1270
             if (item['id'] > 0 && item['disease_id'] > 0) {
1271 1271
               switch (item['disease_id']) {
1272
-                case 1 :
1272
+                case 2 :
1273 1273
                   this.InfectiousDiseases += '乙肝 '
1274 1274
                   break
1275
-                case 2 :
1275
+                case 3 :
1276 1276
                   this.InfectiousDiseases += '丙肝 '
1277 1277
                   break
1278
-                case 3 :
1278
+                case 4 :
1279 1279
                   this.InfectiousDiseases += '艾滋病 '
1280 1280
                   break
1281
-                case 4 :
1281
+                case 5 :
1282 1282
                   this.InfectiousDiseases += '肺结核 '
1283 1283
                   break
1284
-                case 5 :
1284
+                case 6 :
1285 1285
                   this.InfectiousDiseases += '梅毒 '
1286 1286
                   break
1287 1287
               }