|
@@ -395,13 +395,13 @@
|
395
|
395
|
</td>
|
396
|
396
|
<td style="text-align:left;margin-left:15px">
|
397
|
397
|
医生签名:
|
398
|
|
- <span class="under-line" v-if="dialysisDoctor.url == ''"
|
|
398
|
+ <span class="under-line" v-if="doctorForm.url == ''"
|
399
|
399
|
> {{
|
400
|
|
- dialysisDoctor.doctor ? dialysisDoctor.doctor : "/"
|
|
400
|
+ doctorForm.doctor ? doctorForm.doctor : "/"
|
401
|
401
|
}}</span
|
402
|
402
|
>
|
403
|
|
- <span class="under-line" v-if="dialysisDoctor.url != ''">
|
404
|
|
- <img style="height:40px" :src="dialysisDoctor.url" />
|
|
403
|
+ <span class="under-line" v-if="doctorForm.url != ''">
|
|
404
|
+ <img style="height:40px" :src="doctorForm.url" />
|
405
|
405
|
</span>
|
406
|
406
|
</td>
|
407
|
407
|
</tr>
|
|
@@ -621,13 +621,7 @@
|
621
|
621
|
<td v-if="advice_index === 0">透前体重:</td>
|
622
|
622
|
<td v-if="advice_index === 0">{{ predialysis.weight_before }}kg</td>
|
623
|
623
|
<td v-if="advice_index === 1">体重增加量:</td>
|
624
|
|
- <td v-if="advice_index === 1">
|
625
|
|
- {{
|
626
|
|
- (
|
627
|
|
- predialysis.weight_before - assessmentafter.weight_after
|
628
|
|
- ).toFixed(1)
|
629
|
|
- }}kg
|
630
|
|
- </td>
|
|
624
|
+ <td v-if="advice_index === 1"></td>
|
631
|
625
|
<td v-if="advice_index === 2">干体重(DW):</td>
|
632
|
626
|
<td v-if="advice_index === 2">{{ predialysis.dry_weight }}kg</td>
|
633
|
627
|
<td v-if="advice_index === 3">较干体重增加量:</td>
|
|
@@ -645,9 +639,9 @@
|
645
|
639
|
{{ afterdialysis.actual_ultrafiltration }}L
|
646
|
640
|
</td>
|
647
|
641
|
<td v-if="advice_index === 5">透后体重:</td>
|
648
|
|
- <td v-if="advice_index === 5">
|
649
|
|
- {{ afterdialysis.weight_after }}kg
|
650
|
|
- </td>
|
|
642
|
+ <!-- <td v-if="advice_index === 5">-->
|
|
643
|
+ <!-- {{ afterdialysis.weight_after }}kg-->
|
|
644
|
+ <!-- </td>-->
|
651
|
645
|
</tr>
|
652
|
646
|
</tbody>
|
653
|
647
|
</table>
|
|
@@ -770,7 +764,7 @@
|
770
|
764
|
<span
|
771
|
765
|
class="under-line"
|
772
|
766
|
v-if="afterdialysis.puncture_point_oozing_blood === 2"
|
773
|
|
- > /</span
|
|
767
|
+ > 无</span
|
774
|
768
|
>
|
775
|
769
|
</td>
|
776
|
770
|
<td style="text-align:left;margin-left:15px">
|
|
@@ -788,31 +782,37 @@
|
788
|
782
|
<span
|
789
|
783
|
class="under-line"
|
790
|
784
|
v-if="afterdialysis.puncture_point_haematoma === 2"
|
791
|
|
- > /</span
|
|
785
|
+ > 无</span
|
792
|
786
|
>
|
793
|
787
|
</td>
|
794
|
788
|
<td style="text-align:left;margin-left:15px">
|
795
|
789
|
压迫后内瘘震颤:
|
796
|
|
- <span
|
797
|
|
- class="under-line"
|
798
|
|
- v-if="afterdialysis.internal_fistula_tremor_ac === 0"
|
799
|
|
- > /</span
|
800
|
|
- >
|
801
|
|
- <span
|
802
|
|
- class="under-line"
|
803
|
|
- v-if="afterdialysis.internal_fistula_tremor_ac === 1"
|
804
|
|
- > 存在</span
|
805
|
|
- >
|
806
|
|
- <span
|
807
|
|
- class="under-line"
|
808
|
|
- v-if="afterdialysis.internal_fistula_tremor_ac === 2"
|
809
|
|
- > 减弱</span
|
810
|
|
- >
|
811
|
|
- <span
|
812
|
|
- class="under-line"
|
813
|
|
- v-if="afterdialysis.internal_fistula_tremor_ac === 3"
|
814
|
|
- > 无</span
|
815
|
|
- >
|
|
790
|
+ <label-box
|
|
791
|
+ :isChecked="
|
|
792
|
+ predialysis.internal_fistula.indexOf('存在') > -1
|
|
793
|
+ ? true
|
|
794
|
+ : false
|
|
795
|
+ "
|
|
796
|
+ showValue="存在"
|
|
797
|
+ ></label-box>
|
|
798
|
+
|
|
799
|
+ <label-box
|
|
800
|
+ :isChecked="
|
|
801
|
+ predialysis.internal_fistula.indexOf('减弱') > -1
|
|
802
|
+ ? true
|
|
803
|
+ : false
|
|
804
|
+ "
|
|
805
|
+ showValue="减弱"
|
|
806
|
+ ></label-box>
|
|
807
|
+
|
|
808
|
+ <label-box
|
|
809
|
+ :isChecked="
|
|
810
|
+ predialysis.internal_fistula.indexOf('无') > -1
|
|
811
|
+ ? true
|
|
812
|
+ : false
|
|
813
|
+ "
|
|
814
|
+ showValue="无"
|
|
815
|
+ ></label-box>
|
816
|
816
|
</td>
|
817
|
817
|
</tr>
|
818
|
818
|
<tr>
|
|
@@ -1429,9 +1429,8 @@ export default {
|
1429
|
1429
|
this.finshForm.url = finish_nurse.url;
|
1430
|
1430
|
this.finshForm.finish_nurse = finish_nurse.user_name;
|
1431
|
1431
|
var dialysisdoctor = response.data.data.dialysisdocotr;
|
1432
|
|
- console.log("处方医生", dialysisdoctor);
|
1433
|
|
- this.dialysisDoctor.doctor = dialysisdoctor.user_name;
|
1434
|
|
- this.dialysisDoctor.url = dialysisdoctor.url;
|
|
1432
|
+ //this.dialysisDoctor.doctor = dialysisdoctor.user_name;
|
|
1433
|
+ // this.dialysisDoctor.url = dialysisdoctor.url;
|
1435
|
1434
|
this.org_template_info = response.data.data.org_template_info;
|
1436
|
1435
|
// 配置超滤量和置换量是否要显示0还是空
|
1437
|
1436
|
if (this.org_template_info.org_id == 9535) {
|