success.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view class="page">
  3. <!-- 顶部导航 -->
  4. <u-navbar title-width='300' title='' :is-back="true" :border-bottom="false"
  5. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  6. <view class="index-navbar">
  7. <view class="" style="position: relative;;">
  8. <view class="back"></view>
  9. </view>
  10. </view>
  11. <view class="success">
  12. 交易已完成
  13. </view>
  14. <view class="order">
  15. <view class="">订单信息</view>
  16. <view v-if="info.type==1" class="" style="display: flex;margin-top: 32rpx;" v-for="(item,index) in goodslist" :key="index">
  17. <view class="box">
  18. <image style="width: 200rpx;height: 160rpx;" :src="item.good_item.image" mode=""></image>
  19. </view>
  20. <view class="flexc" style="">
  21. <view class="">
  22. <view class="title u-line-1 ">{{item.good_item.title}}</view>
  23. <view class="" style="margin-top: 12rpx;">资源类型:付费资源</view>
  24. </view>
  25. <view class="" style="margin-top: 32rpx;">¥{{item.good_item.price}}</view>
  26. </view>
  27. </view>
  28. <view v-if="info.type==0" class="" style="display: flex;margin-top: 32rpx;" v-for="(item,index) in goodslist" :key="index">
  29. <view class="box">
  30. <image style="width: 120rpx;height: 160rpx;" :src="item.good_item.image" mode=""></image>
  31. </view>
  32. <view class="flexc" style="">
  33. <view class="">
  34. <view class="title u-line-1">{{item.good_item.title}}</view>
  35. <view class="" style="margin-top: 12rpx;">资源类型:付费资源</view>
  36. </view>
  37. <view class="" style="margin-top: 32rpx;">¥{{item.good_item.price}}</view>
  38. </view>
  39. </view>
  40. <view class="bottom" style="text-align: right;">
  41. <text class="fu">实付</text>
  42. <text class="yuan" style="font-size: 8rpx;">¥</text>
  43. <text class="money1">{{info.total_price}}</text>
  44. </view>
  45. </view>
  46. <view class="info">
  47. <view class="">订单信息</view>
  48. <view class="order1">
  49. <text class="info1">订单编号</text>
  50. <text class="math">{{info.order_on}}</text>
  51. </view>
  52. <view class="order1">
  53. <text class="info1">下单时间</text>
  54. <text class="math">{{info.createtime}}</text>
  55. </view>
  56. <view class="order1">
  57. <text class="info1">支付时间</text>
  58. <text class="math">{{info.paytime}}</text>
  59. </view>
  60. <view class="order1">
  61. <text class="info1">支付方式</text>
  62. <text class="math">微信支付</text>
  63. </view>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {
  71. id: '',
  72. goodslist: [],
  73. info: {
  74. order_on: '',
  75. total_price: '',
  76. createtime:'',
  77. paytime:'',
  78. type:''
  79. }
  80. };
  81. },
  82. onLoad(options) {
  83. this.id = options.id
  84. this.getOrderInfo()
  85. },
  86. methods: {
  87. getOrderInfo() {
  88. this.$u.post('api/order/getOrderInfo', {
  89. id: this.id
  90. }).then(res => {
  91. if (res.code == 1) {
  92. this.goodslist = res.data.goods
  93. this.info = res.data
  94. }
  95. })
  96. },
  97. toorder() {
  98. uni.navigateTo({
  99. url: '/pages/mine/myorder'
  100. })
  101. },
  102. tocard() {
  103. uni.navigateTo({
  104. url: '/pages/mine/card'
  105. })
  106. },
  107. tosetting() {
  108. uni.navigateTo({
  109. url: '/pages/mine/setting'
  110. })
  111. }
  112. }
  113. }
  114. </script>
  115. <style lang="scss" scoped>
  116. .flexc {
  117. margin-left: 20rpx;
  118. }
  119. .order1 {
  120. margin-top: 40rpx;
  121. }
  122. .info1 {
  123. font-size: 28rpx;
  124. font-family: PingFangSC, PingFang SC;
  125. font-weight: 400;
  126. color: #555555;
  127. }
  128. .math {
  129. font-size: 28rpx;
  130. font-family: SFPro, SFPro;
  131. font-weight: 400;
  132. color: #333333;
  133. margin-left: 44rpx;
  134. }
  135. .bottom {
  136. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  137. padding-top: 26rpx;
  138. margin-top: 32rpx;
  139. }
  140. .fu {
  141. font-size: 26rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 400;
  144. color: #222222;
  145. margin-right: 20rpx;
  146. }
  147. .money1 {
  148. font-size: 36rpx;
  149. font-family: JDZhengHT, JDZhengHT;
  150. font-weight: 400;
  151. color: #222222;
  152. }
  153. .money {
  154. font-size: 32rpx;
  155. font-family: SFPro, SFPro;
  156. font-weight: 400;
  157. color: #333333;
  158. }
  159. .yuan {
  160. font-size: 26rpx;
  161. font-family: JDZhengHT, JDZhengHT;
  162. font-weight: 300;
  163. color: #222222;
  164. }
  165. .fu {
  166. font-size: 24rpx;
  167. font-family: PingFangSC, PingFang SC;
  168. font-weight: 400;
  169. color: #444444;
  170. margin-top: 12rpx;
  171. }
  172. .box {
  173. // width: 160rpx;
  174. // height: 160rpx;
  175. border: 1rpx solid rgba(151, 151, 151, 0.2);
  176. padding: 0 20rpx;
  177. }
  178. .title {
  179. font-size: 28rpx;
  180. font-family: PingFangHK, PingFangHK;
  181. font-weight: 400;
  182. color: #333333;
  183. width: 400rpx;
  184. }
  185. .felxc {
  186. display: flex;
  187. justify-content: space-between;
  188. flex-direction: column;
  189. margin-left: 20rpx;
  190. padding: 4rpx 0;
  191. }
  192. .page {
  193. min-height: 100vh;
  194. position: relative;
  195. z-index: 1;
  196. background: #F4F5F7;
  197. padding: 0 28rpx 40rpx;
  198. }
  199. .order {
  200. width: 694rpx;
  201. // height: 592rpx;
  202. background: #FFFFFF;
  203. border-radius: 20rpx;
  204. padding: 30rpx 20rpx;
  205. }
  206. .success {
  207. font-size: 40rpx;
  208. font-family: PingFangSC, PingFang SC;
  209. font-weight: 500;
  210. color: #FFFFFF;
  211. margin-top: 12rpx;
  212. margin-bottom: 38rpx;
  213. }
  214. .info {
  215. width: 694rpx;
  216. height: 420rpx;
  217. background: #FFFFFF;
  218. border-radius: 20rpx;
  219. margin-top: 20rpx;
  220. padding: 30rpx 20rpx;
  221. }
  222. .index-navbar {
  223. position: fixed;
  224. top: 0;
  225. left: 0;
  226. width: 100vw;
  227. z-index: -1;
  228. // overflow: hidden;
  229. .back {
  230. position: absolute;
  231. top: 0;
  232. left: 0;
  233. z-index: -1;
  234. width: 750rpx;
  235. height: 636rpx;
  236. background: linear-gradient(180deg, #06A971 0%, #F4F4F4 100%);
  237. }
  238. }
  239. </style>