index.axml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <wrapper>
  2. <!-- 新页面 -->
  3. <view class="ybv2">
  4. <view class="page-index">
  5. <view class="hd">
  6. <view class="info">
  7. <view class="info-hd">付款给</view>
  8. <view class="info-bd">南方医院太和分院</view>
  9. </view>
  10. <view class="info-icon">
  11. </view>
  12. <view class="bg"></view>
  13. </view>
  14. <view class="bd">
  15. <view class="box">
  16. <view class="box-hd">
  17. <view class="box-hd-label">费用总额</view>
  18. <view class="box-hd-value">{{isCulculate ? '核算中': preConfirmInfo.feeSumamt || 0 + "元"}}</view>
  19. </view>
  20. <view class="box-bd">
  21. <view class="box-item">
  22. <view class="box-bd-label">医保基金支付</view>
  23. <view class="box-bd-value">{{isCulculate ? '核算中': preConfirmInfo.fundPay || 0 + "元"}}</view>
  24. </view>
  25. <view class="box-item">
  26. <view class="box-bd-label">个人帐户支付</view>
  27. <view class="box-bd-value">{{isCulculate ? '核算中': preConfirmInfo.psnAcctPay || 0 + "元"}}</view>
  28. </view>
  29. <view class="box-item">
  30. <view class="box-bd-label">其他抵扣金额</view>
  31. <view class="box-bd-value">0元</view>
  32. </view>
  33. </view>
  34. <view class="box-ft">
  35. <view class="box-ft-label">现金支付</view>
  36. <view class="box-ft-value">{{isCulculate ? '核算中': preConfirmInfo.ownPayAmt || 0 + "元"}}</view>
  37. </view>
  38. <view
  39. class="box-append"
  40. onTap="handleActionsheet"
  41. >
  42. 查看明细
  43. </view>
  44. </view>
  45. <!-- 个帐支付 -->
  46. <view className="personal-pay">
  47. <view className="title">个人账户支付</view>
  48. <view className="btns">
  49. <button data-valuex="{{ true }}" onTap="handleIsUserPersonalAccount" className="{{isUserPersonalAccount ? 'y' : 'n'}}">使用</button>
  50. <button data-valuex="{{ false }}" onTap="handleIsUserPersonalAccount" className="{{!isUserPersonalAccount ? 'y' : 'n'}}">不使用</button>
  51. </view>
  52. </view>
  53. <view class="bd-append">
  54. <view class="bd-append-icon"></view>
  55. <view class="bd-append-text">医保移动支付</view>
  56. </view>
  57. </view>
  58. <view class="ft">
  59. <view class="pay">
  60. <view class="pay-label">您还需支付:</view>
  61. <view class="pay-value">{{isCulculate ? '核算中': "¥" + (preConfirmInfo.ownPayAmt || "0")}}</view>
  62. </view>
  63. <view
  64. class="{{!canPay ? 'disable btn' : 'btn'}}"
  65. onTap="onPay"
  66. >
  67. 去支付
  68. </view>
  69. </view>
  70. <view
  71. class="actionsheet"
  72. style="{{ display: actionsheetVisible ? 'block' : 'none' }}"
  73. >
  74. <view
  75. class="actionsheet-mask"
  76. onTap="handleActionsheet"
  77. ></view>
  78. <view class="actionsheet-panel">
  79. <view class="actionsheet-hd">
  80. <view class="actionsheet-hd-tt">处方明细</view>
  81. <view
  82. class="actionsheet-icon-close"
  83. onTap="handleActionsheet"
  84. ></view>
  85. </view>
  86. <view class="actionsheet-bd">
  87. <view a:for="{{ prescriptionList }}" class="actionsheet-box" key="{{item.title}}">
  88. <view class="actionsheet-box-hd">{{item.title}}</view>
  89. <view class="actionsheet-box-bd">
  90. <view
  91. class="actionsheet-box-item"
  92. key="{{ boxItem.label }}"
  93. a:for="{{ item.list }}"
  94. a:for-item="boxItem"
  95. >
  96. <view class="actionsheet-box-item-label-wrap">
  97. <view class="actionsheet-box-item-label">
  98. {{boxItem.label}}
  99. </view>
  100. <view class="actionsheet-box-item-sublabel">
  101. {{boxItem.subLabel}}
  102. </view>
  103. </view>
  104. <view
  105. class="{{
  106. boxItem.highlight
  107. ? 'actionsheet-box-item-value em'
  108. : 'actionsheet-box-item-value'
  109. }}"
  110. >
  111. {{boxItem.value}}
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. <!-- <view a:elif class="loading-page"></view> -->
  121. </view>
  122. </wrapper>