|
@@ -51,17 +51,17 @@
|
51
|
51
|
<td width="10"></td>
|
52
|
52
|
<td width="110">上次透析时间:</td>
|
53
|
53
|
<td width="120">
|
54
|
|
- <div class="under-line">{{lastpredialysis?getTime(lastpredialysis.assessment_date, "{y}-{m}-{d}"):''}}</div>
|
|
54
|
+ <div class="under-line"> {{lastpredialysis?getTime(lastpredialysis.assessment_date, "{y}-{m}-{d}"):''}}</div>
|
55
|
55
|
</td>
|
56
|
56
|
<td width="10"></td>
|
57
|
57
|
<td width="110">本次透析时间:</td>
|
58
|
58
|
<td width="120">
|
59
|
|
- <div class="under-line">{{ queryParams.xtdate }}</div>
|
|
59
|
+ <div class="under-line"> {{ queryParams.xtdate }}</div>
|
60
|
60
|
</td>
|
61
|
61
|
<td width="10"></td>
|
62
|
62
|
<td width="80">透析次数:</td>
|
63
|
63
|
<td width="120">
|
64
|
|
- <div class="under-line">{{ patientInfo.total_dialysis + patientInfo.user_sys_before_count }}</div>
|
|
64
|
+ <div class="under-line"> {{ patientInfo.total_dialysis + patientInfo.user_sys_before_count }}</div>
|
65
|
65
|
</td>
|
66
|
66
|
<td></td>
|
67
|
67
|
</tr>
|
|
@@ -248,11 +248,11 @@
|
248
|
248
|
<td width="65">穿刺方法:</td>
|
249
|
249
|
<td width="180">
|
250
|
250
|
<div>
|
251
|
|
- <label-box :isChecked="predialysis.puncture_way == 1 ? true : false" showValue="绳梯"></label-box>
|
|
251
|
+ <label-box :isChecked="predialysis.puncture_way && getPunctureWay(predialysis.puncture_way).indexOf('绳梯') > -1 ? true : false" showValue="绳梯"></label-box>
|
252
|
252
|
|
253
|
|
- <label-box :isChecked="predialysis.puncture_way == 4 ? true : false" showValue="定点"></label-box>
|
|
253
|
+ <label-box :isChecked="predialysis.puncture_way && getPunctureWay(predialysis.puncture_way).indexOf('定点') > -1 ? true : false" showValue="定点"></label-box>
|
254
|
254
|
|
255
|
|
- <label-box :isChecked="predialysis.puncture_way == 3 ? true : false" showValue="区域"></label-box>
|
|
255
|
+ <label-box :isChecked="predialysis.puncture_way && getPunctureWay(predialysis.puncture_way).indexOf('区域') > -1 ? true : false" showValue="区域"></label-box>
|
256
|
256
|
|
257
|
257
|
</div>
|
258
|
258
|
</td>
|
|
@@ -477,14 +477,14 @@
|
477
|
477
|
<td width="80">透析器:</td>
|
478
|
478
|
<td width="80">
|
479
|
479
|
<div class="under-line">
|
480
|
|
- {{ prescription.dialyzer_perfusion_apparatus ? prescription.dialyzer_perfusion_apparatus.split('+')[0] : "" }}
|
|
480
|
+ {{ prescription.dialyzer_perfusion_apparatus ? prescription.dialyzer_perfusion_apparatus.indexOf('+') > -1 ? prescription.dialyzer_perfusion_apparatus.split('+')[0] : prescription.dialyzer_perfusion_apparatus : '/' }}
|
481
|
481
|
</div>
|
482
|
482
|
</td>
|
483
|
483
|
<td width="20"></td>
|
484
|
484
|
<td width="80">灌流器型号:</td>
|
485
|
485
|
<td width="80">
|
486
|
486
|
<div class="under-line">
|
487
|
|
- {{ prescription.dialyzer_perfusion_apparatus ? prescription.dialyzer_perfusion_apparatus.split('+')[1] : "" }}
|
|
487
|
+ {{ prescription.dialyzer_perfusion_apparatus ? prescription.dialyzer_perfusion_apparatus.indexOf('+') > -1 ? prescription.dialyzer_perfusion_apparatus.split('+')[1] : "/" : '/' }}
|
488
|
488
|
</div>
|
489
|
489
|
</td>
|
490
|
490
|
<td></td>
|
|
@@ -1112,6 +1112,17 @@ export default {
|
1112
|
1112
|
}
|
1113
|
1113
|
},
|
1114
|
1114
|
methods: {
|
|
1115
|
+ getPunctureWay: function(val) {
|
|
1116
|
+ let puncture_method_name = '/'
|
|
1117
|
+ const puncture_method = getDataConfig("hemodialysis", "puncture_method")
|
|
1118
|
+
|
|
1119
|
+ for (let i = 0; i < puncture_method.length; i++) {
|
|
1120
|
+ if (puncture_method[i].id == val) {
|
|
1121
|
+ puncture_method_name = puncture_method[i].name
|
|
1122
|
+ }
|
|
1123
|
+ }
|
|
1124
|
+ return puncture_method_name
|
|
1125
|
+ },
|
1115
|
1126
|
getHumorExcessiveSymptom(val) {
|
1116
|
1127
|
const humor_excessive_symptom = getDataConfig('hemodialysis', 'humor_excessive_symptom')
|
1117
|
1128
|
var humor_excessive_symptom_name = ''
|