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