index.axml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <wrapper>
  2. <!-- 新页面 -->
  3. <View class="ybv2">
  4. <View class="page-index" a:if="{{ canPay }}">
  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. <image class="info-icon-img" src="./info-icon.png" alt="" />
  12. </View>
  13. <View class="bg"></View>
  14. </View>
  15. <View class="bd">
  16. <View class="box">
  17. <View class="box-hd">
  18. <View class="box-hd-label">费用总额</View>
  19. <View class="box-hd-value">342.23元</View>
  20. </View>
  21. <View class="box-bd">
  22. <View class="box-item">
  23. <View class="box-bd-label">医保基金支付</View>
  24. <View class="box-bd-value">233元</View>
  25. </View>
  26. <View class="box-item">
  27. <View class="box-bd-label">个人帐户支付</View>
  28. <View class="box-bd-value">233元</View>
  29. </View>
  30. <View class="box-item">
  31. <View class="box-bd-label">其他抵扣金额</View>
  32. <View class="box-bd-value">233元</View>
  33. </View>
  34. </View>
  35. <View class="box-ft">
  36. <View class="box-ft-label">现金支付</View>
  37. <View class="box-ft-value">56元</View>
  38. </View>
  39. <View
  40. class="box-append"
  41. onTap="handleActionsheet"
  42. >
  43. 查看明细
  44. </View>
  45. </View>
  46. <View class="bd-append">
  47. <view class="bd-append-icon"></view>
  48. <View class="bd-append-text">医保移动支付</View>
  49. </View>
  50. </View>
  51. <View class="ft">
  52. <View class="pay">
  53. <View class="pay-label">您还需支付:</View>
  54. <View class="pay-value">¥5823</View>
  55. </View>
  56. <View
  57. class="{{!canPay ? 'disable btn' : 'btn'}}"
  58. onTap="onPay"
  59. >
  60. 去支付
  61. </View>
  62. </View>
  63. <View
  64. class="actionsheet"
  65. style="{{ display: actionsheetVisible ? 'block' : 'none' }}"
  66. >
  67. <View
  68. class="actionsheet-mask"
  69. onTap="handleActionsheet"
  70. ></View>
  71. <View class="actionsheet-panel">
  72. <View class="actionsheet-hd">
  73. <View class="actionsheet-hd-tt">处方明细</View>
  74. <view
  75. class="actionsheet-icon-close"
  76. onTap="handleActionsheet"
  77. ></view>
  78. </View>
  79. <View class="actionsheet-bd">
  80. <View a:for="{{ prescriptionList }}" class="actionsheet-box" key="{{item.title}}">
  81. <View class="actionsheet-box-hd">{{item.title}}</View>
  82. <View class="actionsheet-box-bd">
  83. <View
  84. class="actionsheet-box-item"
  85. key="{{ boxItem.label }}"
  86. a:for="{{ item.list }}"
  87. a:for-item="boxItem"
  88. >
  89. <View class="actionsheet-box-item-label-wrap">
  90. <View class="actionsheet-box-item-label">
  91. {{boxItem.label}}
  92. </View>
  93. <View class="actionsheet-box-item-sublabel">
  94. {{boxItem.subLabel}}
  95. </View>
  96. </View>
  97. <View
  98. class="{{
  99. boxItem.highlight
  100. ? 'actionsheet-box-item-value em'
  101. : 'actionsheet-box-item-value'
  102. }}"
  103. >
  104. {{boxItem.value}}
  105. </View>
  106. </View>
  107. </View>
  108. </View>
  109. </View>
  110. </View>
  111. </View>
  112. </View>
  113. <View a:elif class="loading-page"></View>
  114. </View>
  115. </wrapper>