orderinfo.vue 7.2 KB

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