success.vue 5.4 KB

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