|
@@ -342,7 +342,7 @@
|
342
|
342
|
<tbody>
|
343
|
343
|
<tr>
|
344
|
344
|
<td width="70">血管通路:</td>
|
345
|
|
- <td width="580">
|
|
345
|
+ <td width="600">
|
346
|
346
|
<div>
|
347
|
347
|
<label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('自体内瘘') > -1 ? true : false" showValue="自体内瘘"></label-box>
|
348
|
348
|
|
|
@@ -380,10 +380,10 @@
|
380
|
380
|
<td width="70">穿刺针:</td>
|
381
|
381
|
<td width="180">
|
382
|
382
|
<div>
|
383
|
|
- <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('15G') > -1 ? true : false" showValue="15G"></label-box>
|
384
|
|
-
|
385
|
383
|
<label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('16G') > -1 ? true : false" showValue="16G"></label-box>
|
386
|
384
|
|
|
385
|
+ <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('17G') > -1 ? true : false" showValue="17G"></label-box>
|
|
386
|
+
|
387
|
387
|
<label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('钝针') > -1 ? true : false" showValue="钝针"></label-box>
|
388
|
388
|
|
389
|
389
|
</div>
|
|
@@ -619,15 +619,11 @@
|
619
|
619
|
<td width="120">
|
620
|
620
|
( 1.5mmol/L )
|
621
|
621
|
</td>
|
|
622
|
+ <td width="10">钾</td>
|
622
|
623
|
<td width="50">
|
623
|
|
- <label-box :isChecked="prescription.dialysate_formulation_name == '钾' ? true : false" showValue="钾"></label-box>
|
624
|
|
- </td>
|
625
|
|
- <td width="10">(</td>
|
626
|
|
- <td width="50">
|
627
|
|
- <div class="under-line"> <span v-if="prescription.dialysate_formulation_name == '钾'">{{ prescription.kalium ? prescription.kalium : "" }}</span></div>
|
|
624
|
+ <div class="under-line"> {{ prescription.kalium ? prescription.kalium : "" }}</div>
|
628
|
625
|
</td>
|
629
|
626
|
<td width="10">mmol/L</td>
|
630
|
|
- <td width="10">)</td>
|
631
|
627
|
<td></td>
|
632
|
628
|
|
633
|
629
|
<!-- <td width="50">
|
|
@@ -1091,7 +1087,7 @@
|
1091
|
1087
|
<td width="20">ml</td>
|
1092
|
1088
|
<td width="30">V端</td>
|
1093
|
1089
|
<td width="30">
|
1094
|
|
- <div class="under-line">{{ afterdialysis.cvc_v ? afterdialysis.cvc_v : "" }}</div>
|
|
1090
|
+ <div class="under-line"> {{ afterdialysis.cvc_v ? afterdialysis.cvc_v : "" }}</div>
|
1095
|
1091
|
</td>
|
1096
|
1092
|
<td width="20">ml</td>
|
1097
|
1093
|
<td></td>
|
|
@@ -1868,18 +1864,34 @@ export default {
|
1868
|
1864
|
}
|
1869
|
1865
|
},
|
1870
|
1866
|
getNumber() {
|
1871
|
|
- if (this.dialysisOrder != null) {
|
|
1867
|
+ if (this.dialysisOrder != null) {
|
|
1868
|
+ if(this.patientInfo.DialysisSchedule.device_zone.name.indexOf("区") > -1){
|
1872
|
1869
|
return (
|
1873
|
|
- // this.patientInfo.DialysisSchedule.device_zone.name +
|
|
1870
|
+ this.patientInfo.DialysisSchedule.device_zone.name +
|
1874
|
1871
|
this.dialysisOrder.DeviceNumber.number
|
1875
|
|
- )
|
|
1872
|
+ );
|
1876
|
1873
|
} else {
|
1877
|
1874
|
return (
|
1878
|
|
- // this.patientInfo.DialysisSchedule.device_zone.name +
|
|
1875
|
+ this.patientInfo.DialysisSchedule.device_zone.name + "区" +
|
|
1876
|
+ this.dialysisOrder.DeviceNumber.number
|
|
1877
|
+ );
|
|
1878
|
+ }
|
|
1879
|
+
|
|
1880
|
+ } else {
|
|
1881
|
+ if(this.patientInfo.DialysisSchedule.device_zone.name.indexOf("区") > -1){
|
|
1882
|
+ return (
|
|
1883
|
+ this.patientInfo.DialysisSchedule.device_zone.name +
|
|
1884
|
+ this.patientInfo.DialysisSchedule.device_number.number
|
|
1885
|
+ );
|
|
1886
|
+ }else{
|
|
1887
|
+ return (
|
|
1888
|
+ this.patientInfo.DialysisSchedule.device_zone.name + "区" +
|
1879
|
1889
|
this.patientInfo.DialysisSchedule.device_number.number
|
1880
|
|
- )
|
|
1890
|
+ );
|
1881
|
1891
|
}
|
1882
|
|
- },
|
|
1892
|
+
|
|
1893
|
+ }
|
|
1894
|
+ },
|
1883
|
1895
|
|
1884
|
1896
|
getXuserName(id) {
|
1885
|
1897
|
if (id <= 0) {
|