orderinfo.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="page">
  3. <view class="info">
  4. <view class="u-flex u-row-between">
  5. <text class="shang">商品信息</text>
  6. <text class="more" @click="open">展开</text>
  7. </view>
  8. <view class="u-flex" style="margin-top: 32rpx;" v-for="(item,index) in orderlist.slice(0,3)" :key="index">
  9. <view class="box">
  10. <image :src="item.image" style="width: 120rpx;height: 160rpx;" mode=""></image>
  11. </view>
  12. <view class=""
  13. style="margin-left: 20rpx;justify-content: space-between;display: flex;flex-direction: column;height: 160rpx;">
  14. <view class="">
  15. <view class="title u-line-1">{{item.title}}</view>
  16. <view class="fufei">资源类型:付费资源</view>
  17. </view>
  18. <view class="money">¥{{item.price}}</view>
  19. </view>
  20. </view>
  21. <view class="jiner ">
  22. <view class="" style="margin-top: 24rpx;" class="u-flex u-row-between">
  23. <text class="sum">商品金额</text>
  24. <view class="">
  25. <text class="figure">¥</text>
  26. <text class="figure" style="font-size: 32rpx;font-weight: 400;">{{orderinfo.total_price}}</text>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="pay">
  32. <u-radio-group v-model="value" @change="radioGroupChange">
  33. <view class="u-flex u-row-between" style="width: 680rpx;">
  34. <view class="u-flex">
  35. <image src="/static/images/wei.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
  36. <view class="weipay">微信支付</view>
  37. </view>
  38. <view class="">
  39. <u-radio @change="radioChange">
  40. </u-radio>
  41. </view>
  42. </view>
  43. <view class="u-flex u-row-between"
  44. style="width: 680rpx;border-top: rgba(151, 151, 151, 0.1);margin-top: 30rpx;padding-top: 26rpx;">
  45. <view class="u-flex">
  46. <image src="/static/images/zhi.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
  47. <view class="weipay">支付宝支付</view>
  48. </view>
  49. <view class="">
  50. <u-radio @change="radioChange"></u-radio>
  51. </view>
  52. </view>
  53. </u-radio-group>
  54. </view>
  55. <view class="" style="height: 166rpx;"></view>
  56. <view class="bottom u-flex u-row-right">
  57. <view class="">
  58. <text>合计:</text>
  59. <text>¥</text>
  60. <text>325.00</text>
  61. </view>
  62. <view class="btn" @click="pay">
  63. 确认支付
  64. </view>
  65. </view>
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. data() {
  71. return {
  72. value: 0,
  73. orderlist: [],
  74. orderinfo: {
  75. total_price: ''
  76. },
  77. index: ''
  78. };
  79. },
  80. onLoad(options) {
  81. this.orderid = options.id
  82. this.index = options.index
  83. this.getOrderList()
  84. },
  85. methods: {
  86. open() {
  87. },
  88. //获取订单列表
  89. getOrderList() {
  90. this.$u.post('api/order/getOrderInfo', {
  91. id: this.orderid
  92. }).then(res => {
  93. this.orderlist = res.data.goods
  94. this.orderinfo = res.data
  95. console.log(res);
  96. })
  97. },
  98. // 选中某个单选框时,由radio时触发
  99. radioChange(e) {
  100. // console.log(e);
  101. },
  102. // 选中任一radio时,由radio-group触发
  103. radioGroupChange(e) {
  104. // console.log(e);
  105. },
  106. pay() {
  107. uni.navigateTo({
  108. url: '/pages/index/pay/pay'
  109. })
  110. }
  111. }
  112. }
  113. </script>
  114. <style lang="scss" scoped>
  115. .weipay {
  116. font-size: 26rpx;
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: 400;
  119. color: #333333;
  120. margin-left: 20rpx;
  121. }
  122. .bottom {
  123. width: 750rpx;
  124. height: 166rpx;
  125. background: #FFFFFF;
  126. position: fixed;
  127. bottom: 0;
  128. padding: 0 28rpx;
  129. left: 0;
  130. .btn {
  131. width: 212rpx;
  132. height: 88rpx;
  133. background: #06A971;
  134. border-radius: 12rpx;
  135. font-size: 32rpx;
  136. font-family: PingFangSC, PingFang SC;
  137. font-weight: 500;
  138. color: #FFFFFF;
  139. line-height: 88rpx;
  140. text-align: center;
  141. margin-left: 24rpx;
  142. }
  143. }
  144. .pay {
  145. width: 694rpx;
  146. height: 200rpx;
  147. background: #FFFFFF;
  148. border-radius: 16rpx;
  149. margin-top: 20rpx;
  150. padding: 32rpx 20rpx;
  151. }
  152. .jiner {
  153. width: 654rpx;
  154. height: 2rpx;
  155. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  156. margin-top: 32rpx;
  157. .sum {
  158. font-size: 26rpx;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 400;
  161. color: #222222;
  162. }
  163. .figure {
  164. font-size: 26rpx;
  165. font-family: JDZhengHT, JDZhengHT;
  166. font-weight: 300;
  167. color: #222222;
  168. }
  169. }
  170. .shang {
  171. font-size: 26rpx;
  172. font-family: PingFangSC, PingFang SC;
  173. font-weight: 400;
  174. color: #222222;
  175. }
  176. .more {
  177. font-size: 26rpx;
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. color: #06A971;
  181. }
  182. .fufei {
  183. font-size: 24rpx;
  184. font-family: PingFangSC, PingFang SC;
  185. font-weight: 400;
  186. color: #444444;
  187. }
  188. .money {
  189. font-size: 32rpx;
  190. font-family: SFPro, SFPro;
  191. font-weight: 400;
  192. color: #CF1534;
  193. }
  194. .title {
  195. font-size: 28rpx;
  196. font-family: PingFangSC, PingFang SC;
  197. font-weight: 500;
  198. color: #333333;
  199. }
  200. .info {
  201. width: 694rpx;
  202. height: 944rpx;
  203. background: #FFFFFF;
  204. border-radius: 16rpx;
  205. padding: 24rpx 20rpx 30rpx;
  206. }
  207. .page {
  208. background-color: rgba(244, 244, 244, 1);
  209. padding: 20rpx 28rpx;
  210. min-height: 94vh;
  211. }
  212. .box {
  213. width: 160rpx;
  214. height: 160rpx;
  215. border: 2rpx solid rgba(151, 151, 151, 0.2);
  216. padding: 0 20rpx
  217. }
  218. </style>