payorder.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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;font-size: 24rpx;" 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">{{i18n.Actual}}</view>
  17. <view class="numbe" style="margin-top: 40rpx;">
  18. <text>¥</text>
  19. <text style="font-size: 60rpx;font-weight: 500;">{{sum}}</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="">{{i18n.Balancepayment}}</view>
  31. <view class="" style="margin-top: 10rpx;color: rgba(248, 50, 36, 1);">
  32. {{i18n.Currentbalance}}:{{balance}}
  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="">{{i18n.WechatPay}}</view>
  46. <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
  47. {{i18n.applicable}}
  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="">{{i18n.Customerservicepayment}}</view>
  61. <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
  62. {{i18n.Contactpayment}}
  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;">{{i18n.Paymentinstructions}}</view>
  74. <view class="content" style="margin-top: 18rpx;">1.联系客服付款需走线下支付通道,付款成</view>
  75. </view>
  76. <view class="confirm" @click="confirm">
  77. {{i18n.Confirmpayment}}
  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. sum: '',
  97. pay_type: 'balance',
  98. orderid: '',
  99. balance:'',
  100. };
  101. },
  102. onLoad(options) {
  103. this.sum = options.sum
  104. this.orderid = options.orderid
  105. this.userinfo()
  106. },
  107. computed: {
  108. i18n() {
  109. return this.$t('index')
  110. }
  111. },
  112. methods: {
  113. userinfo() {
  114. uni.$u.http.get('/api/member/info', {}).then((res) => {
  115. this.balance = res.balance
  116. }).catch(() => {
  117. })
  118. },
  119. change(idx) {
  120. this.mode = idx
  121. },
  122. statechange(item, idx) {
  123. this.state = item.name
  124. this.state_id = idx
  125. if (idx == 0) {
  126. this.pay_type = 'balance'
  127. }
  128. if (idx == 1) {
  129. this.pay_type = 'wechat'
  130. }
  131. if (idx == 2) {
  132. this.pay_type = 'customer'
  133. }
  134. this.stateshow = !this.stateshow
  135. },
  136. confirm() {
  137. uni.$u.http.post('/api/order/payment', {
  138. order_id: this.orderid,
  139. pay_type: this.pay_type
  140. }).then((res) => {
  141. uni.navigateTo({
  142. url: 'confirm'
  143. })
  144. }).catch(() => {})
  145. }
  146. }
  147. }
  148. </script>
  149. <style lang="scss" scoped>
  150. .payment {
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 500;
  153. font-size: 24rpx;
  154. color: #222222;
  155. line-height: 34rpx;
  156. text-align: left;
  157. font-style: normal;
  158. }
  159. .content {
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 400;
  162. font-size: 20rpx;
  163. color: #777777;
  164. line-height: 28rpx;
  165. text-align: left;
  166. font-style: normal;
  167. }
  168. .stateac {
  169. font-family: PingFangSC, PingFang SC;
  170. font-weight: 400;
  171. font-size: 24rpx;
  172. color: #FF1515;
  173. line-height: 34rpx;
  174. text-align: left;
  175. font-style: normal;
  176. }
  177. .unstate {
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. font-size: 24rpx;
  181. color: #222222;
  182. line-height: 34rpx;
  183. text-align: left;
  184. font-style: normal;
  185. }
  186. .confirm {
  187. position: fixed;
  188. bottom: 66rpx;
  189. width: 702rpx;
  190. height: 84rpx;
  191. background: #F83224;
  192. border-radius: 44rpx;
  193. font-family: PingFangSC, PingFang SC;
  194. font-weight: 500;
  195. font-size: 32rpx;
  196. color: #FFFFFF;
  197. line-height: 84rpx;
  198. text-align: center;
  199. font-style: normal;
  200. }
  201. .payitem {
  202. width: 702rpx;
  203. height: 140rpx;
  204. background: #FFFFFF;
  205. border-radius: 12rpx;
  206. padding: 34rpx 24rpx;
  207. box-sizing: border-box;
  208. }
  209. .back {
  210. padding: 20rpx 24rpx;
  211. box-sizing: border-box;
  212. .topbox {
  213. position: relative;
  214. .state {
  215. width: 128rpx;
  216. // height: 56rpx;
  217. background: #FFFFFF;
  218. border-radius: 6rpx;
  219. padding: 12rpx;
  220. box-sizing: border-box;
  221. }
  222. .paysum {
  223. font-family: PingFangSC, PingFang SC;
  224. font-weight: 400;
  225. font-size: 28rpx;
  226. color: #222222;
  227. line-height: 40rpx;
  228. text-align: left;
  229. font-style: normal;
  230. }
  231. .numbe {
  232. font-family: HarmonyOS_Sans_Medium;
  233. font-size: 28rpx;
  234. color: #000000;
  235. line-height: 38rpx;
  236. text-align: left;
  237. font-style: normal;
  238. margin-top: 20rpx;
  239. }
  240. }
  241. }
  242. </style>