detail.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <view class="web_box">
  3. <!-- <u-navbar height="44" leftIcon="arrow-left" leftIconColor="#000" :leftText="leftText" @leftClick="leftClick" :autoBack="true" bgColor="#fff">
  4. </u-navbar> -->
  5. <view class="box hflex acenter">
  6. <image :src="order.course_info.img" mode="widthFix" style="width: 322rpx;border-radius: 16rpx;"></image>
  7. <view class="img_right">
  8. <view class="title">{{order.course_info.name}}</view>
  9. <view class="text_style1">总学时:{{order.period}}学时</view>
  10. <view class="text_style1">讲师:{{order.course_info.lecturer}}</view>
  11. <view class="order_price">¥{{order.course_info.price}}</view>
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="title">订单信息</view>
  16. <view class="hflex acenter jbetween cell">
  17. <view class="left">商品总价</view>
  18. <view class="order_price">¥{{order.course_info.price}}</view>
  19. </view>
  20. <view class="hflex acenter jbetween cell">
  21. <view class="left">订单编号</view>
  22. <view class="right">{{order.order_no}}</view>
  23. </view>
  24. <view class="hflex acenter jbetween cell">
  25. <view class="left">创建时间</view>
  26. <view class="right">{{order.create_at}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import $api from '@/static/js/api.js'
  33. export default {
  34. data() {
  35. return {
  36. leftText: '',
  37. order: {
  38. },
  39. order_no: ''
  40. }
  41. },
  42. onLoad(e) {
  43. this.order_no = e.order_no
  44. this.getData()
  45. },
  46. methods: {
  47. leftClick() {},
  48. getData() {
  49. var that = this
  50. $api.req({
  51. url: '/api/User/OrderDetail',
  52. data: {
  53. order_no: that.order_no
  54. }
  55. }, function(res) {
  56. if(res.code == 1) {
  57. that.order = res.data
  58. if(res.data.status == 1) {
  59. that.leftText="买家已付款"
  60. } else {
  61. that.leftText="等待买家付款"
  62. }
  63. }
  64. })
  65. }
  66. }
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. .web_box::v-deep {
  71. padding: 0 30rpx;
  72. .u-navbar {
  73. width: 100%;
  74. box-sizing: border-box;
  75. padding: 36px 16px 58rpx 0;
  76. }
  77. .box {
  78. width: 100%;
  79. box-sizing: border-box;
  80. padding: 24rpx 22rpx;
  81. margin-top: 20rpx;
  82. background: #FFFFFF;
  83. box-shadow: 0px 2px 6px 0px rgba(213,213,213,0.5);
  84. border-radius: 24rpx;
  85. }
  86. .img_right {
  87. width: calc(100% - 322rpx);
  88. padding-left: 12rpx;
  89. }
  90. .title {
  91. font-size: 28rpx;
  92. font-weight: 600;
  93. color: #333333;
  94. padding-bottom: 14rpx;
  95. }
  96. .text_style1 {
  97. font-size: 20rpx;
  98. font-weight: 400;
  99. color: #999999;
  100. padding-bottom: 12rpx;
  101. }
  102. .order_price {
  103. font-size: 32rpx;
  104. font-weight: 600;
  105. color: #FA6400;
  106. }
  107. .left {
  108. font-size: 28rpx;
  109. font-weight: 400;
  110. color: #333333;
  111. }
  112. .right {
  113. font-size: 28rpx;
  114. font-weight: 400;
  115. color: #333333;
  116. }
  117. .cell {
  118. padding-top: 28rpx;
  119. }
  120. .u-button {
  121. margin: 28rpx 0 0;
  122. width: 362rpx;
  123. height: 70rpx;
  124. background: linear-gradient(135deg, #53BDFF 0%, #2988FE 100%);
  125. border-radius: 40rpx;
  126. font-size: 36rpx;
  127. font-weight: 400;
  128. color: #FFFFFF;
  129. }
  130. }
  131. </style>