|
@@ -301,6 +301,36 @@
|
301
|
301
|
</el-form-item>
|
302
|
302
|
</el-col>
|
303
|
303
|
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+ <el-col :span="8">
|
|
307
|
+ <el-form-item label="血栓:" v-if="isShow('血栓')">
|
|
308
|
+ <el-select v-model="assessmentBeforeDislysis.thromubus_type" @change="changeThrombus">
|
|
309
|
+ <el-option :key="0" label="请选择" :value="0"></el-option>
|
|
310
|
+ <el-option label="有" value="1"></el-option>
|
|
311
|
+ <el-option label="无" value="2"></el-option>
|
|
312
|
+ </el-select>
|
|
313
|
+ </el-form-item>
|
|
314
|
+ </el-col>
|
|
315
|
+
|
|
316
|
+ <el-col :span="8">
|
|
317
|
+ <el-form-item label="导管AV端约为(cm):" v-show="thrombuShow" label-width="200px">
|
|
318
|
+ <el-input v-model="assessmentBeforeDislysis.thrombus_av" style="width:150px"></el-input>
|
|
319
|
+ </el-form-item>
|
|
320
|
+ </el-col>
|
|
321
|
+
|
|
322
|
+ <el-col :span="8">
|
|
323
|
+ <el-form-item label="导管A端约(cm):" v-show="thrombuShow">
|
|
324
|
+ <el-input v-model="assessmentBeforeDislysis.thromubus_a" style="width:150px"></el-input>
|
|
325
|
+ </el-form-item>
|
|
326
|
+ </el-col>
|
|
327
|
+
|
|
328
|
+ <el-col :span="8">
|
|
329
|
+ <el-form-item label="导管V端约(cm):" v-show="thrombuShow">
|
|
330
|
+ <el-input v-model="assessmentBeforeDislysis.thromubus_v" style="width:150px"></el-input>
|
|
331
|
+ </el-form-item>
|
|
332
|
+ </el-col>
|
|
333
|
+
|
304
|
334
|
<el-col :span="8" v-if="isShow('皮肤')">
|
305
|
335
|
<el-form-item label="皮肤: ">
|
306
|
336
|
<!-- <el-select v-model="assessmentBeforeDislysis.skin">
|
|
@@ -518,33 +548,7 @@
|
518
|
548
|
|
519
|
549
|
|
520
|
550
|
|
521
|
|
- <el-col :span="8">
|
522
|
|
- <el-form-item label="血栓:" v-if="isShow('血栓')">
|
523
|
|
- <el-select v-model="assessmentBeforeDislysis.thromubus_type" @change="changeThrombus">
|
524
|
|
- <el-option :key="0" label="请选择" :value="0"></el-option>
|
525
|
|
- <el-option label="有" value="1"></el-option>
|
526
|
|
- <el-option label="无" value="2"></el-option>
|
527
|
|
- </el-select>
|
528
|
|
- </el-form-item>
|
529
|
|
- </el-col>
|
530
|
|
-
|
531
|
|
- <el-col :span="8">
|
532
|
|
- <el-form-item label="导管AV端(cm):" v-show="thrombuShow">
|
533
|
|
- <el-input v-model="assessmentBeforeDislysis.thrombus_av" style="width:150px"></el-input>
|
534
|
|
- </el-form-item>
|
535
|
|
- </el-col>
|
536
|
|
-
|
537
|
|
- <el-col :span="8">
|
538
|
|
- <el-form-item label="导管A端(cm):" v-show="thrombuShow">
|
539
|
|
- <el-input v-model="assessmentBeforeDislysis.thromubus_a" style="width:150px"></el-input>
|
540
|
|
- </el-form-item>
|
541
|
|
- </el-col>
|
542
|
|
-
|
543
|
|
- <el-col :span="8">
|
544
|
|
- <el-form-item label="导管V端(cm):" v-show="thrombuShow">
|
545
|
|
- <el-input v-model="assessmentBeforeDislysis.thromubus_v" style="width:150px"></el-input>
|
546
|
|
- </el-form-item>
|
547
|
|
- </el-col>
|
|
551
|
+
|
548
|
552
|
|
549
|
553
|
</el-row>
|
550
|
554
|
|
|
@@ -758,12 +762,15 @@
|
758
|
762
|
},
|
759
|
763
|
show(assessment, lastDryWeightDislysis,last_predialysis_evaluation) {
|
760
|
764
|
this.lastPredialysisEvaluation = last_predialysis_evaluation
|
761
|
|
- if(this.lastPredialysisEvaluation.thromubus_type == 1){
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+ console.log("获取上次数据",this.lastPredialysisEvaluation)
|
|
768
|
+ if(this.lastPredialysisEvaluation != null) {
|
|
769
|
+ if(this.lastPredialysisEvaluation.thromubus_type == 1){
|
762
|
770
|
this.assessmentBeforeDislysis.thromubus_type = this.lastPredialysisEvaluation.thromubus_type.toString()
|
763
|
771
|
this.thrombuShow = true
|
764
|
772
|
}
|
765
|
|
- console.log("获取上次数据",this.lastPredialysisEvaluation)
|
766
|
|
- if(this.lastPredialysisEvaluation != null) {
|
|
773
|
+
|
767
|
774
|
if (this.lastPredialysisEvaluation.is_hemorrhage == 1) {
|
768
|
775
|
this.lastPredialysisEvaluation.is_hemorrhage = "1"
|
769
|
776
|
}
|
|
@@ -832,6 +839,8 @@
|
832
|
839
|
}
|
833
|
840
|
|
834
|
841
|
} else {
|
|
842
|
+
|
|
843
|
+
|
835
|
844
|
this.assessmentBeforeDislysis.dry_weight = this.predialysis_evaluation['dry_weight']
|
836
|
845
|
this.weight_adjust.weight = this.predialysis_evaluation['dry_weight']
|
837
|
846
|
}
|
|
@@ -1169,7 +1178,7 @@
|
1169
|
1178
|
}).then(res => {
|
1170
|
1179
|
// console.log(res)
|
1171
|
1180
|
// console.log('透前', this.patient_prop)
|
1172
|
|
- console.log('透前', this.assessment)
|
|
1181
|
+
|
1173
|
1182
|
if (res.data.state == 0) {
|
1174
|
1183
|
this.hasPermission = false
|
1175
|
1184
|
} else if (res.data.state == 1) {
|
|
@@ -1254,6 +1263,11 @@
|
1254
|
1263
|
|
1255
|
1264
|
},
|
1256
|
1265
|
'predialysis_evaluation.id': function() {
|
|
1266
|
+
|
|
1267
|
+ if(this.predialysis_evaluation.thromubus_type == 1){
|
|
1268
|
+ this.predialysis_evaluation.thromubus_type = this.predialysis_evaluation.thromubus_type.toString()
|
|
1269
|
+ this.thrombuShow = true
|
|
1270
|
+ }
|
1257
|
1271
|
|
1258
|
1272
|
if (this.predialysis_evaluation.id > 0) {
|
1259
|
1273
|
for (var index in this.assessmentBeforeDislysis) {
|