|
@@ -59,42 +59,42 @@
|
59
|
59
|
{{scope.row.patient.name?scope.row.patient.name:""}}
|
60
|
60
|
</template>
|
61
|
61
|
</el-table-column>
|
62
|
|
- <el-table-column align="center" label="透析模式" width="100">
|
|
62
|
+ <el-table-column align="center" label="透析模式" width="90">
|
63
|
63
|
<template slot-scope="scope">
|
64
|
64
|
{{scope.row.treatment_mode.name?scope.row.treatment_mode.name:""}}
|
65
|
65
|
</template>
|
66
|
66
|
</el-table-column>
|
67
|
|
- <el-table-column align="center" label="上次透后体重(kg)" width="280">
|
|
67
|
+ <el-table-column align="center" :label="'上次透后体重\n(kg)'" width="110">
|
68
|
68
|
<template slot-scope="scope">
|
69
|
69
|
{{getLastWeight(scope.row.patient.id)?getLastWeight(scope.row.patient.id):""}}
|
70
|
70
|
</template>
|
71
|
71
|
</el-table-column>
|
72
|
|
- <el-table-column align="center" label="透前体重(kg)" width="120">
|
|
72
|
+ <el-table-column align="center" :label="'透前体重\n(kg)'" width="100">
|
73
|
73
|
<template slot-scope="scope">
|
74
|
74
|
{{getWeightBefor(scope.row.patient_id)?getWeightBefor(scope.row.patient_id):""}}
|
75
|
75
|
</template>
|
76
|
76
|
</el-table-column>
|
77
|
|
- <el-table-column align="center" label="干体重(kg)" width="140">
|
|
77
|
+ <el-table-column align="center" label="干体重(kg)" width="100">
|
78
|
78
|
<template slot-scope="scope">
|
79
|
79
|
{{getDryWeight(scope.row.patient_id)?getDryWeight(scope.row.patient_id):""}}
|
80
|
80
|
</template>
|
81
|
81
|
</el-table-column>
|
82
|
|
- <el-table-column align="center" label="透前血压(mmhg)" width="180">
|
|
82
|
+ <el-table-column align="center" :label="'透前血压\n(mmhg)'" width="100">
|
83
|
83
|
<template slot-scope="scope">
|
84
|
84
|
{{getSysBloodPressure(scope.row.patient_id)?getSysBloodPressure(scope.row.patient_id):""}}
|
85
|
85
|
</template>
|
86
|
86
|
</el-table-column>
|
87
|
|
- <el-table-column align="center" label="目标超滤量" width="120">
|
|
87
|
+ <el-table-column align="center" label="目标超滤量" width="100">
|
88
|
88
|
<template slot-scope="scope">
|
89
|
89
|
{{getTargetUltrafiltration(scope.row.patient_id)?getTargetUltrafiltration(scope.row.patient_id):""}}
|
90
|
90
|
</template>
|
91
|
91
|
</el-table-column>
|
92
|
|
- <el-table-column align="center" label="血流量(ml/min)" width="180">
|
|
92
|
+ <el-table-column align="center" :label="'血流量\n(ml/min)'" width="100">
|
93
|
93
|
<template slot-scope="scope">
|
94
|
94
|
{{getBloodFlowVolume(scope.row.patient_id)?getBloodFlowVolume(scope.row.patient_id):""}}
|
95
|
95
|
</template>
|
96
|
96
|
</el-table-column>
|
97
|
|
- <el-table-column align="center" label="抗凝剂(首剂)(维持)(总量)" width="300">
|
|
97
|
+ <el-table-column align="center" label="抗凝剂(首剂)(维持)(总量)">
|
98
|
98
|
<template slot-scope="scope">
|
99
|
99
|
<span v-if="getAnticoagulant(scope.row.patient_id) == 0"></span>
|
100
|
100
|
<span v-if="getAnticoagulant(scope.row.patient_id) == 1">无肝素</span>
|
|
@@ -148,7 +148,7 @@
|
148
|
148
|
</span>
|
149
|
149
|
</template>
|
150
|
150
|
</el-table-column>
|
151
|
|
- <el-table-column align="center" label="透析器/灌流器" width="200">
|
|
151
|
+ <el-table-column align="center" label="透析器/灌流器" width="120">
|
152
|
152
|
<template slot-scope="scope">
|
153
|
153
|
{{getDialyzerPerfusionApparatus(scope.row.patient_id)?getDialyzerPerfusionApparatus(scope.row.patient_id):""}}
|
154
|
154
|
</template>
|
|
@@ -438,3 +438,12 @@ export default {
|
438
|
438
|
}
|
439
|
439
|
}
|
440
|
440
|
</style>
|
|
441
|
+<style lang="scss">
|
|
442
|
+.el-table__body-wrapper::-webkit-scrollbar {
|
|
443
|
+ width: 15px !important;
|
|
444
|
+ height: 15px !important;
|
|
445
|
+}
|
|
446
|
+.el-table th .cell {
|
|
447
|
+ white-space: pre-line;/*保留换行符*/
|
|
448
|
+}
|
|
449
|
+</style>
|