소스 검색

修改bug

csx 5 년 전
부모
커밋
85e6b80bce

+ 1 - 1
build/cdn.json 파일 보기

1
 {
1
 {
2
-  "version": "1.0.317"
2
+  "version": "1.0.318"
3
 }
3
 }

+ 3 - 3
src/pages/main/dialog/subMenu/MsgTip.vue 파일 보기

61
         <label class="name" for="txms">上次透后体重(kg)</label>
61
         <label class="name" for="txms">上次透后体重(kg)</label>
62
         <div class="content">
62
         <div class="content">
63
           <span class="text" id="txms">{{
63
           <span class="text" id="txms">{{
64
-            predialysis.weight_after_last_transparency
64
+            last_record.weight_after
65
           }}</span>
65
           }}</span>
66
         </div>
66
         </div>
67
       </div>
67
       </div>
77
   created() {
77
   created() {
78
     if (
78
     if (
79
       this.predialysis.weight_before > 0 &&
79
       this.predialysis.weight_before > 0 &&
80
-      this.predialysis.weight_after_last_transparency > 0
80
+      this.last_record.weight_after > 0
81
     ) {
81
     ) {
82
       add_weight = parseFloat(
82
       add_weight = parseFloat(
83
-        this.predialysis.weight_before - this.predialysis.weight_after_last_transparency
83
+        this.predialysis.weight_before - this.last_record.weight_after
84
       ).toFixed(2);
84
       ).toFixed(2);
85
     }
85
     }
86
   },
86
   },

+ 1 - 1
src/pages/main/template/DialysisPrintOrderOne.vue 파일 보기

338
                     <td width="70">
338
                     <td width="70">
339
                       <div class="under-line">&nbsp;{{prescription.target_ultrafiltration?prescription.target_ultrafiltration:''}}</div>
339
                       <div class="under-line">&nbsp;{{prescription.target_ultrafiltration?prescription.target_ultrafiltration:''}}</div>
340
                     </td>
340
                     </td>
341
-                    <td width="20">ml</td>
341
+                    <td width="20">L</td>
342
                   </tr>
342
                   </tr>
343
                   </tbody>
343
                   </tbody>
344
                 </table>
344
                 </table>

+ 4 - 0
src/pages/main/today/dialysisPrescription.vue 파일 보기

7
     </h2>
7
     </h2>
8
     <div class="plate">
8
     <div class="plate">
9
       <ul>
9
       <ul>
10
+        <li v-if="isShow('透析模式')">
11
+          <label>透析模式 :</label>
12
+          <span class="content">{{dialysis_mode}}</span>
13
+        </li>
10
         <li v-if="isShow('透析模式')">
14
         <li v-if="isShow('透析模式')">
11
           <label>透析模式 :</label>
15
           <label>透析模式 :</label>
12
           <span class="content">{{dialysis_mode}}</span>
16
           <span class="content">{{dialysis_mode}}</span>