index.axml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="discharge-settlement">
  2. <!-- 头部背景 -->
  3. <view class="discharge-settlement-header"></view>
  4. <!-- 内容 -->
  5. <view class="discharge-settlement-content">
  6. <!-- 出院结算成功 -->
  7. <settlement-succeeded
  8. remainingRefundTime="{{ dischargeSettlementDetails.refundCostDay }}"
  9. settlementType="{{ settlementType }}" />
  10. <!-- supportMedicalPreSettlement - 支持医保,预结算 -->
  11. <block a:if="{{ settlementType === 'supportMedicalPreSettlement' }}">
  12. <support-medical-pre-settlement dischargeSettlementDetails="{{ dischargeSettlementDetails }}" />
  13. </block>
  14. <!-- notSupportMedicalRefund - 不支持医保, 有退款 -->
  15. <block a:if="{{ settlementType === 'notSupportMedicalRefund' }}">
  16. <not-support-medical-refund dischargeSettlementDetails="{{ dischargeSettlementDetails }}" />
  17. </block>
  18. <!-- notSupportMedicalSupplementary - 不支持医保,需补缴 -->
  19. <block a:if="{{ settlementType === 'notSupportMedicalSupplementary' }}">
  20. <not-support-medical-supplementary dischargeSettlementDetails="{{ dischargeSettlementDetails }}"/>
  21. </block>
  22. <!-- 住院信息 -->
  23. <hospitalization-information dischargeSettlementDetails="{{ dischargeSettlementDetails }}" />
  24. <!-- 出院须知 -->
  25. <discharge-instructions dischargeInstructions="{{ dischargeInstructions }}" />
  26. <!-- 按钮 -->
  27. <button size="default" class="returnHome" onTap="onReturnHome">
  28. 返回首页
  29. </button>
  30. </view>
  31. </view>