paymentOrder.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="page">
  3. <view class="_top">
  4. <view class="title">
  5. 待支付订单
  6. </view>
  7. <view class="price">
  8. <text class="_text-1">¥</text>
  9. 1235.2
  10. </view>
  11. <view class="_weight">
  12. <text>实际重量</text>
  13. <text>168kg</text>
  14. </view>
  15. <view class="type-num">
  16. <text>包裹类型</text>
  17. <text>日用品</text>
  18. </view>
  19. <view class="type-num">
  20. <text>包裹数量</text>
  21. <text>5</text>
  22. </view>
  23. </view>
  24. <view class="pay" @click="switchType('balance')">
  25. <view style="display: flex;">
  26. <image class="balance-icon" src="../../static/mine/341.png" mode=""></image>
  27. <view class="">
  28. <view style="font-size: 26rpx; color: #333333;">余额支付</view>
  29. <view style="color: #f83224;font-size: 24rpx;margin-top: 10rpx;">当前余额:2546.2</view>
  30. </view>
  31. </view>
  32. <image v-if="payType == 'balance'" class="select" src="../../static/mine/342.png" mode=""></image>
  33. <image v-else class="select" src="../../static/mine/345.png" mode=""></image>
  34. </view>
  35. <view class="pay" @click="switchType('wx')">
  36. <view style="display: flex;">
  37. <image class="balance-icon" src="../../static/mine/343.png" mode=""></image>
  38. <view class="">
  39. <view style="font-size: 26rpx; color: #333333;">微信支付</view>
  40. <view style="color: #797979;font-size: 24rpx;margin-top: 10rpx;">适用微信支付</view>
  41. </view>
  42. </view>
  43. <image v-if="payType == 'wx'" class="select" src="../../static/mine/342.png" mode=""></image>
  44. <image v-else class="select" src="../../static/mine/345.png" mode=""></image>
  45. </view>
  46. <view class="pay" @click="switchType('service')">
  47. <view style="display: flex;">
  48. <image class="balance-icon" src="../../static/mine/344.png" mode=""></image>
  49. <view class="">
  50. <view style="font-size: 26rpx; color: #333333;">客服支付</view>
  51. <view style="color: #797979;font-size: 24rpx;margin-top: 10rpx;">联系微信支付</view>
  52. </view>
  53. </view>
  54. <image v-if="payType == 'service'" class="select" src="../../static/mine/342.png" mode=""></image>
  55. <image v-else class="select" src="../../static/mine/345.png" mode=""></image>
  56. </view>
  57. <view class="footer">
  58. <text>共一件</text>
  59. <text>合计</text>
  60. <view class="price">
  61. <text style="font-size: 20rpx;">¥</text>
  62. <text>133</text>.
  63. <text style="font-size: 20rpx;">22</text>
  64. </view>
  65. <button class="btn-2" @click="toPay">立即支付</button>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. data() {
  72. return {
  73. payType: "balance"
  74. };
  75. },
  76. methods: {
  77. switchType(str) {
  78. this.payType = str
  79. }
  80. },
  81. created() {
  82. uni.setNavigationBarTitle({
  83. title: "支付订单"
  84. })
  85. }
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .page {
  90. padding: 20rpx 24rpx;
  91. position: relative;
  92. ._top {
  93. padding: 48rpx 24rpx 36rpx;
  94. background-color: #fff;
  95. border-radius: 16rpx;
  96. .title {
  97. text-align: center;
  98. color: rgba(34, 34, 34, .7);
  99. font-size: 28rpx;
  100. }
  101. .price {
  102. font-size: 64rpx;
  103. font-weight: 500;
  104. text-align: center;
  105. margin-top: 20rpx;
  106. ._text-1 {
  107. font-size: 28rpx;
  108. }
  109. }
  110. ._weight {
  111. display: flex;
  112. justify-content: space-between;
  113. margin-top: 46rpx;
  114. font-size: 28rpx;
  115. color: rgba(34, 34, 34, 1);
  116. }
  117. .type-num {
  118. display: flex;
  119. justify-content: space-between;
  120. font-size: 28rpx;
  121. color: rgba(34, 34, 34, .7);
  122. margin-top: 32rpx;
  123. }
  124. }
  125. .pay {
  126. display: flex;
  127. align-items: center;
  128. background-color: #fff;
  129. margin-top: 20rpx;
  130. height: 140rpx;
  131. border-radius: 16rpx;
  132. padding: 0 24rpx;
  133. justify-content: space-between;
  134. .balance-icon {
  135. width: 40rpx;
  136. height: 40rpx;
  137. margin-right: 20rpx;
  138. }
  139. .select {
  140. width: 36rpx;
  141. height: 36rpx;
  142. }
  143. }
  144. .footer {
  145. display: flex;
  146. justify-content: flex-end;
  147. align-items: center;
  148. background-color: #fff;
  149. position: fixed;
  150. bottom: 0;
  151. left: 0;
  152. width: 100%;
  153. height: 146rpx;
  154. padding-top: 20rpx;
  155. .btn-2 {
  156. height: 76rpx;
  157. padding: 0;
  158. margin: 0;
  159. font-size: 28rpx;
  160. color: #fff;
  161. min-width: 188rpx;
  162. background-color: #f83224;
  163. border-radius: 38rpx;
  164. margin-right: 20rpx;
  165. }
  166. }
  167. }
  168. </style>