Browse Source

修改bug

csx 5 years ago
parent
commit
d93d06c0d6

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

@@ -132,7 +132,9 @@
132 132
                      v-model="form.ultrafiltration_volume">
133 133
             </div>
134 134
             <div class="cell" v-if="isShow('超滤率')">
135
-              <label>超滤率(ml/h)</label>
135
+              <label v-if="template_id == 6">超滤率(ml/h)</label>
136
+              <label v-else>超滤率(L/h)</label>
137
+
136 138
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
137 139
                      v-model="form.ultrafiltration_rate">
138 140
             </div>

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

@@ -1262,6 +1262,8 @@
1262 1262
         for (const key in this.formValue) {
1263 1263
           // console.log(key, this.record[key]);
1264 1264
           this.formValue[key] = this.record[key];
1265
+          console.log(key +"----"+ this.formValue[key] )
1266
+
1265 1267
         }
1266 1268
       }
1267 1269
       // else  {

+ 2 - 2
src/pages/main/template/DialysisPrintOrderTwo.vue View File

@@ -271,7 +271,7 @@
271 271
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
272 272
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
273 273
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
274
-                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume / 1000:'/'}}</td>
274
+                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
275 275
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
276 276
                   <td style="line-height:16px;padding:0px;"><div style="height:48px;line-height:48px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">{{monitor.symptom}}  &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}} </span> </div></td>
277 277
                   <td>
@@ -357,7 +357,7 @@
357 357
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
358 358
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
359 359
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
360
-                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume /1000:'/'}}</td>
360
+                  <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
361 361
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
362 362
                   <td style="line-height:16px;"><div style="height:48px;line-height:48px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">{{monitor.symptom}}  &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}}</span></div>  </td>
363 363
                   <td>

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

@@ -761,7 +761,6 @@
761 761
 
762 762
         getDialysisRecord(params).then(rs => {
763 763
           var resp = rs.data
764
-          console.log(resp)
765 764
 
766 765
           if (resp.state == 1) {
767 766