Browse Source

修改透后评估数据继承方式

张保健 5 years ago
parent
commit
fca8d3a5c2
1 changed files with 17 additions and 8 deletions
  1. 17 8
      src/pages/main/dialog/ThorougDialog.vue

+ 17 - 8
src/pages/main/dialog/ThorougDialog.vue View File

@@ -1246,18 +1246,27 @@
1246 1246
       let tempHour = ''
1247 1247
       let tempMinute = ''
1248 1248
 
1249
-      if (this.record != null && this.record.id != '') {
1249
+      if (this.record != null && this.record.id != '' && this.record.assessment_doctor != 0) {
1250 1250
         for (const key in this.formValue) {
1251 1251
           // console.log(key, this.record[key]);
1252 1252
           this.formValue[key] = this.record[key];
1253 1253
         }
1254
-      } else if (this.last_record != null && this.last_record.id != "") {
1255
-        this.$set(this.formValue, "patient_gose", this.last_record.patient_gose)
1256
-        this.$set(this.formValue, "blood_access_part_id", this.last_record.blood_access_part_id)
1257
-        this.$set(this.formValue, "blood_access_part_opera_id", this.last_record.blood_access_part_opera_id)
1258
-        this.$set(this.formValue, "internal_fistula", this.last_record.internal_fistula)
1259
-        this.$set(this.formValue, "internal_fistula_tremor_ac", this.last_record.internal_fistula_tremor_ac)
1260
-      }
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
+        }
1259
+        if (this.record != null && this.record.id != '' && this.record.assessment_doctor == 0){
1260
+          this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1261
+          this.$set(this.formValue, "weight_after", this.record.weight_after)
1262
+          this.$set(this.formValue, "weight_loss", this.record.weight_loss)
1263
+        } else {
1264
+          this.$set(this.formValue, "actual_ultrafiltration", '')
1265
+          this.$set(this.formValue, "weight_after", '')
1266
+          this.$set(this.formValue, "weight_loss", '')
1267
+        }
1268
+      } 
1269
+  
1261 1270
 
1262 1271
 
1263 1272