success.vue 4.6 KB

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