|
@@ -19,7 +19,8 @@
|
19
|
19
|
</div>
|
20
|
20
|
|
21
|
21
|
<div class="item" v-if="isShow('实际超滤量')">
|
22
|
|
- <label class="name" for="sjcll">实际超滤量(L)</label>
|
|
22
|
+ <label v-if="template_id == 6" class="name" for="sjcll">实际超滤量(ml)</label>
|
|
23
|
+ <label v-else class="name" for="sjcll">实际超滤量(L)</label>
|
23
|
24
|
<div class="content">
|
24
|
25
|
<input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
|
25
|
26
|
|
|
@@ -411,7 +412,7 @@
|
411
|
412
|
puncture_point_oozing_blood_state: false,
|
412
|
413
|
puncture_point_haematoma_state: false,
|
413
|
414
|
eat_state: false,
|
414
|
|
-
|
|
415
|
+ template_id: 0,
|
415
|
416
|
isShowDialog: true,
|
416
|
417
|
time: '00:00',
|
417
|
418
|
puncture_point_oozing_bloods:[
|
|
@@ -1245,25 +1246,36 @@
|
1245
|
1246
|
let initMinute = ''
|
1246
|
1247
|
let tempHour = ''
|
1247
|
1248
|
let tempMinute = ''
|
|
1249
|
+ this.template_id = this.$store.getters.user.template_info.template_id
|
1248
|
1250
|
|
1249
|
1251
|
if (this.record != null && this.record.id != '' && this.record.assessment_doctor != 0) {
|
1250
|
1252
|
for (const key in this.formValue) {
|
1251
|
1253
|
// console.log(key, this.record[key]);
|
1252
|
1254
|
this.formValue[key] = this.record[key];
|
1253
|
1255
|
}
|
1254
|
|
- }else if (this.last_record != null && this.last_record.id != "") {
|
1255
|
|
- for (const key in this.formValue) {
|
1256
|
|
- // console.log(key, this.record[key]);
|
1257
|
|
- this.formValue[key] = this.last_record[key];
|
1258
|
|
- }
|
|
1256
|
+ }else {
|
|
1257
|
+ // if (this.last_record != null && this.last_record.id != ""){
|
|
1258
|
+ // for (const key in this.formValue) {
|
|
1259
|
+ // // console.log(key, this.record[key]);
|
|
1260
|
+ // this.formValue[key] = this.last_record[key];
|
|
1261
|
+ // }
|
|
1262
|
+ // }
|
1259
|
1263
|
if (this.record != null && this.record.id != '' && this.record.assessment_doctor == 0){
|
1260
|
1264
|
this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
|
1261
|
1265
|
this.$set(this.formValue, "weight_after", this.record.weight_after)
|
1262
|
1266
|
this.$set(this.formValue, "weight_loss", this.record.weight_loss)
|
|
1267
|
+ this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
|
|
1268
|
+ this.$set(this.formValue, "actual_displacement", this.record.actual_displacement)
|
|
1269
|
+ this.$set(this.formValue, "actual_treatment_hour", this.record.actual_treatment_hour)
|
|
1270
|
+ this.$set(this.formValue, "actual_treatment_minute", this.record.actual_treatment_minute)
|
1263
|
1271
|
} else {
|
1264
|
1272
|
this.$set(this.formValue, "actual_ultrafiltration", '')
|
1265
|
1273
|
this.$set(this.formValue, "weight_after", '')
|
1266
|
1274
|
this.$set(this.formValue, "weight_loss", '')
|
|
1275
|
+ this.$set(this.formValue, "actual_ultrafiltration", '')
|
|
1276
|
+ this.$set(this.formValue, "actual_displacement", '')
|
|
1277
|
+ this.$set(this.formValue, "actual_treatment_hour", '')
|
|
1278
|
+ this.$set(this.formValue, "actual_treatment_minute", '')
|
1267
|
1279
|
}
|
1268
|
1280
|
}
|
1269
|
1281
|
|