payorder.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <view class="back">
  3. <view class="topbox">
  4. <view class="" style="position: absolute;top: -30rpx;right: 0;">
  5. <view class="state u-flex u-row-between" @click="stateshow = !stateshow">
  6. <text>{{state}}</text>
  7. <image src="static/images/pull_down.png" style="width: 24rpx;height: 24rpx;" mode=""></image>
  8. </view>
  9. <view class="state" v-if="stateshow">
  10. <view @click="statechange(item,idx)" :class="state_id==idx?'stateac':'unstate'"
  11. style="margin-bottom: 20rpx;" v-for="(item,idx) in array">{{item.name}}</view>
  12. </view>
  13. </view>
  14. <view class="u-row-center"
  15. style="display: flex;flex-direction: column;align-items: center;margin-top: 56rpx;">
  16. <view class="paysum">实付金额</view>
  17. <view class="numbe" style="margin-top: 40rpx;">
  18. <text>¥</text>
  19. <text style="font-size: 60rpx;font-weight: 500;">2792.5</text>
  20. </view>
  21. <!-- <view class="">
  22. <text>支付剩余时间 13:50</text>
  23. </view> -->
  24. </view>
  25. <!-- 余额支付 -->
  26. <view class="payitem" style="margin-top: 100rpx;display: flex;" @click="change(0)">
  27. <image src="static/images/yuer.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
  28. <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
  29. <view class="">
  30. <view class="">余额支付</view>
  31. <view class="" style="margin-top: 10rpx;color: rgba(248, 50, 36, 1);">
  32. 当前余额:2387.5
  33. </view>
  34. </view>
  35. <image v-if="mode==0" src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
  36. </image>
  37. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
  38. </view>
  39. </view>
  40. <!-- 微信支付 -->
  41. <view v-if="state_id==0" class="payitem" style="margin-top: 20rpx;display: flex;" @click="change(1)">
  42. <image src="static/images/wx.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
  43. <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
  44. <view class="">
  45. <view class="">微信支付</view>
  46. <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
  47. 适用微信支付
  48. </view>
  49. </view>
  50. <image v-if='mode==1' src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
  51. </image>
  52. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
  53. </view>
  54. </view>
  55. <!-- 客服支付 -->
  56. <view class="payitem" style="margin-top: 20rpx;display: flex;" @click="change(2)">
  57. <image src="static/images/kefu2.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
  58. <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
  59. <view class="">
  60. <view class="">客服支付</view>
  61. <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
  62. 联系微信支付
  63. </view>
  64. </view>
  65. <image v-if='mode==2' src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
  66. </image>
  67. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
  68. </view>
  69. </view>
  70. </view>
  71. <!-- 付款须知 -->
  72. <view class="">
  73. <view class="payment" style="margin-top: 24rpx;">付款须知</view>
  74. <view class="content" style="margin-top: 18rpx;">1.联系客服付款需走线下支付通道,付款成</view>
  75. </view>
  76. <view class="confirm" @click="confirm">
  77. 确认支付
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. export default {
  83. data() {
  84. return {
  85. mode: 0,
  86. stateshow: false,
  87. state: '人民币',
  88. state_id: 0,
  89. array: [{
  90. name: '人民币'
  91. }, {
  92. name: '欧元'
  93. }, {
  94. name: '美元'
  95. }]
  96. };
  97. },
  98. methods: {
  99. change(idx) {
  100. this.mode = idx
  101. },
  102. statechange(item, idx) {
  103. this.state = item.name
  104. this.state_id = idx
  105. this.stateshow = !this.stateshow
  106. },
  107. confirm(){
  108. uni.navigateTo({
  109. url:'confirm'
  110. })
  111. }
  112. }
  113. }
  114. </script>
  115. <style lang="scss" scoped>
  116. .payment {
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: 500;
  119. font-size: 24rpx;
  120. color: #222222;
  121. line-height: 34rpx;
  122. text-align: left;
  123. font-style: normal;
  124. }
  125. .content {
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 400;
  128. font-size: 20rpx;
  129. color: #777777;
  130. line-height: 28rpx;
  131. text-align: left;
  132. font-style: normal;
  133. }
  134. .stateac {
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 24rpx;
  138. color: #FF1515;
  139. line-height: 34rpx;
  140. text-align: left;
  141. font-style: normal;
  142. }
  143. .unstate {
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: 400;
  146. font-size: 24rpx;
  147. color: #222222;
  148. line-height: 34rpx;
  149. text-align: left;
  150. font-style: normal;
  151. }
  152. .confirm {
  153. position: fixed;
  154. bottom: 66rpx;
  155. width: 702rpx;
  156. height: 84rpx;
  157. background: #F83224;
  158. border-radius: 44rpx;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 500;
  161. font-size: 32rpx;
  162. color: #FFFFFF;
  163. line-height: 84rpx;
  164. text-align: center;
  165. font-style: normal;
  166. }
  167. .payitem {
  168. width: 702rpx;
  169. height: 140rpx;
  170. background: #FFFFFF;
  171. border-radius: 12rpx;
  172. padding: 34rpx 24rpx;
  173. box-sizing: border-box;
  174. }
  175. .back {
  176. padding: 20rpx 24rpx;
  177. box-sizing: border-box;
  178. .topbox {
  179. position: relative;
  180. .state {
  181. width: 128rpx;
  182. // height: 56rpx;
  183. background: #FFFFFF;
  184. border-radius: 6rpx;
  185. padding: 12rpx;
  186. box-sizing: border-box;
  187. }
  188. .paysum {
  189. font-family: PingFangSC, PingFang SC;
  190. font-weight: 400;
  191. font-size: 28rpx;
  192. color: #222222;
  193. line-height: 40rpx;
  194. text-align: left;
  195. font-style: normal;
  196. }
  197. .numbe {
  198. font-family: HarmonyOS_Sans_Medium;
  199. font-size: 28rpx;
  200. color: #000000;
  201. line-height: 38rpx;
  202. text-align: left;
  203. font-style: normal;
  204. margin-top: 20rpx;
  205. }
  206. }
  207. }
  208. </style>