Browse Source

修改bug

csx 5 years ago
parent
commit
d93d06c0d6

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

132
                      v-model="form.ultrafiltration_volume">
132
                      v-model="form.ultrafiltration_volume">
133
             </div>
133
             </div>
134
             <div class="cell" v-if="isShow('超滤率')">
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
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
138
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
137
                      v-model="form.ultrafiltration_rate">
139
                      v-model="form.ultrafiltration_rate">
138
             </div>
140
             </div>

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

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

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

271
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
271
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
272
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
272
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
273
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
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
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
275
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
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>
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
                   <td>
277
                   <td>
357
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
357
                   <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
358
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
358
                   <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
359
                   <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
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
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
361
                   <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
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>
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
                   <td>
363
                   <td>

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

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