index.axml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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">{{isCulculate ? '核算中': "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">{{isCulculate ? '核算中': "342.23元"}}</View>
  24. </View>
  25. <View class="box-item">
  26. <View class="box-bd-label">个人帐户支付</View>
  27. <View class="box-bd-value">{{isCulculate ? '核算中': "342.23元"}}</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 ? '核算中': "342.23元"}}</View>
  37. </View>
  38. <View
  39. class="box-append"
  40. onTap="handleActionsheet"
  41. >
  42. 查看明细
  43. </View>
  44. </View>
  45. <View className="personal-pay">
  46. <View className="title">个人账户支付</View>
  47. <View className="btns">
  48. <button data-valuex="{{ true }}" onTap="handleIsUserPersonalAccount" className="{{isUserPersonalAccount ? 'y' : 'n'}}">使用</button>
  49. <button data-valuex="{{ false }}" onTap="handleIsUserPersonalAccount" className="{{!isUserPersonalAccount ? 'y' : 'n'}}">不使用</button>
  50. </View>
  51. </View>
  52. <View class="bd-append">
  53. <view class="bd-append-icon"></view>
  54. <View class="bd-append-text">医保移动支付</View>
  55. </View>
  56. </View>
  57. <View class="ft">
  58. <View class="pay">
  59. <View class="pay-label">您还需支付:</View>
  60. <View class="pay-value">{{isCulculate ? '核算中': "¥5823"}}</View>
  61. </View>
  62. <View
  63. class="{{!canPay ? 'disable btn' : 'btn'}}"
  64. onTap="onPay"
  65. >
  66. 去支付
  67. </View>
  68. </View>
  69. <View
  70. class="actionsheet"
  71. style="{{ display: actionsheetVisible ? 'block' : 'none' }}"
  72. >
  73. <View
  74. class="actionsheet-mask"
  75. onTap="handleActionsheet"
  76. ></View>
  77. <View class="actionsheet-panel">
  78. <View class="actionsheet-hd">
  79. <View class="actionsheet-hd-tt">处方明细</View>
  80. <view
  81. class="actionsheet-icon-close"
  82. onTap="handleActionsheet"
  83. ></view>
  84. </View>
  85. <View class="actionsheet-bd">
  86. <View a:for="{{ prescriptionList }}" class="actionsheet-box" key="{{item.title}}">
  87. <View class="actionsheet-box-hd">{{item.title}}</View>
  88. <View class="actionsheet-box-bd">
  89. <View
  90. class="actionsheet-box-item"
  91. key="{{ boxItem.label }}"
  92. a:for="{{ item.list }}"
  93. a:for-item="boxItem"
  94. >
  95. <View class="actionsheet-box-item-label-wrap">
  96. <View class="actionsheet-box-item-label">
  97. {{boxItem.label}}
  98. </View>
  99. <View class="actionsheet-box-item-sublabel">
  100. {{boxItem.subLabel}}
  101. </View>
  102. </View>
  103. <View
  104. class="{{
  105. boxItem.highlight
  106. ? 'actionsheet-box-item-value em'
  107. : 'actionsheet-box-item-value'
  108. }}"
  109. >
  110. {{boxItem.value}}
  111. </View>
  112. </View>
  113. </View>
  114. </View>
  115. </View>
  116. </View>
  117. </View>
  118. </View>
  119. <View a:elif class="loading-page"></View>
  120. </View>
  121. </wrapper>