order-detail.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="content">
  3. <view class="top vflex acenter jcenter">
  4. <text v-if="detail.status == 'applied'">已提交,请添加客服</text>
  5. <text v-if="detail.status == 'passed'">兑换成功</text>
  6. <text v-if="detail.status == 'applied'">已兑换请与客服沟通</text>
  7. <text v-if="detail.status == 'passed'">恭喜您成功兑换商品</text>
  8. </view>
  9. <view class="box address vflex">
  10. <text>{{detail.province_name}}{{detail.city_name}}{{detail.district_name}}{{detail.address}}</text>
  11. <text>{{detail.name}} {{detail.mobile}}</text>
  12. </view>
  13. <view class="box good">
  14. <view class="hflex good-detail">
  15. <image :src="detail.goods.image" mode="aspectFill"></image>
  16. <view class="vflex center jbetween">
  17. <view class="name text_hide2">{{detail.goods.name}}</view>
  18. <!-- <view class="spec">{{detail.goods.spec}}</view> -->
  19. </view>
  20. <view class="right vflex aend">
  21. <view class="price">{{detail.goods.price}}积分</view>
  22. <!-- <view class="num">X{{detail.goods.num}}</view> -->
  23. </view>
  24. </view>
  25. <view class="cell hflex acenter jbetween">
  26. <view class="label">商品积分</view>
  27. <view class="value">{{detail.goods.price}}</view>
  28. </view>
  29. <view class="cell hflex acenter jbetween">
  30. <view class="label">运费</view>
  31. <view class="value">免邮</view>
  32. </view>
  33. <view class="cell hflex acenter jbetween">
  34. <view class="label">优惠券</view>
  35. <view class="value text_hide">{{detail.coupon_name || '-'}}</view>
  36. </view>
  37. <view class="cell hflex acenter jbetween">
  38. <view class="label">优惠积分</view>
  39. <view class="value" style="color: #EE5850;">{{detail.coupon_discount_amount || 0}}</view>
  40. </view>
  41. <view class="cell hflex acenter jbetween">
  42. <view class="label">实付积分</view>
  43. <view class="value" style="color: #EE5850;">{{detail.pay_amount}}</view>
  44. </view>
  45. <view class="cell hflex acenter jbetween" style="border-top: 1px solid #F1F8FE; padding-top: 30rpx;">
  46. <view class="label">订单编号</view>
  47. <view class="value">{{detail.order_no}} | <span style="padding-left: 10rpx;"
  48. @click="copy(detail.order)">复制</span></view>
  49. </view>
  50. <view class="cell hflex acenter jbetween">
  51. <view class="label">下单时间</view>
  52. <view class="value">{{detail.created_at}}</view>
  53. </view>
  54. <view class="cell hflex acenter jbetween" style="padding-bottom: 0;">
  55. <view class="label">兑换时间</view>
  56. <view class="value">{{detail.created_at}}</view>
  57. </view>
  58. </view>
  59. <view class="btn hflex acenter jcenter" @click="show_wx = true">
  60. <image src="static/kefu.png" mode="aspectFill"></image>
  61. <text>添加客服</text>
  62. </view>
  63. <u-popup :show="show_wx" @close="toclose" mode="center" :round="10">
  64. <kefu-wx :wxcode="wxcode" @submit="toclose"></kefu-wx>
  65. </u-popup>
  66. </view>
  67. </template>
  68. <script>
  69. import $api from '@/static/js/api.js'
  70. import kefuWx from './components/kefu-wx.vue'
  71. var that = ''
  72. export default {
  73. components: {
  74. kefuWx
  75. },
  76. data() {
  77. return {
  78. id: '',
  79. detail: {},
  80. show_wx: false,
  81. wxcode: ''
  82. }
  83. },
  84. onLoad(option) {
  85. that = this
  86. if (option.id) {
  87. this.id = option.id
  88. }
  89. this.getdata()
  90. },
  91. onShow() {
  92. },
  93. onPullDownRefresh() {
  94. },
  95. onReachBottom() {
  96. },
  97. methods: {
  98. toclose() {
  99. this.show_wx = false
  100. },
  101. copy(val) {
  102. uni.setClipboardData({
  103. data: val,
  104. success: function() {
  105. $api.info('复制成功')
  106. }
  107. });
  108. },
  109. getdata() {
  110. $api.req({
  111. url: 'integral/order/' + that.id
  112. }, function(res) {
  113. that.detail = res.data
  114. })
  115. $api.req({
  116. url: 'config',
  117. data: {
  118. module: 'basic'
  119. }
  120. }, function(res) {
  121. that.wxcode = res.data.customer_service_qrcode
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss">
  128. .content {
  129. padding: 0 24rpx;
  130. background: #f4f4f4;
  131. .btn {
  132. width: 702rpx;
  133. height: 88rpx;
  134. background: #00B0B0;
  135. border-radius: 44rpx;
  136. margin: 40rpx 0 0;
  137. text {
  138. font-size: 28rpx;
  139. font-family: PingFangSC, PingFang SC;
  140. font-weight: 400;
  141. color: #ffffff;
  142. }
  143. image {
  144. width: 48rpx;
  145. height: 48rpx;
  146. margin: 0 12rpx 0 0;
  147. }
  148. }
  149. .box {
  150. background: #FFFFFF;
  151. border-radius: 20rpx;
  152. padding: 20rpx;
  153. box-sizing: border-box;
  154. margin: 0 0 20rpx;
  155. }
  156. .good {
  157. padding: 24rpx 20rpx;
  158. box-sizing: border-box;
  159. .title {
  160. font-size: 32rpx;
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 500;
  163. color: #222222;
  164. padding: 0 0 26rpx;
  165. }
  166. .good-detail {
  167. padding: 0 0 40rpx;
  168. .right {
  169. .price {
  170. font-size: 28rpx;
  171. font-family: SFPro, SFPro;
  172. font-weight: 500;
  173. color: #222222;
  174. }
  175. .num {
  176. font-size: 24rpx;
  177. font-family: SFPro, SFPro;
  178. font-weight: 400;
  179. color: #999999;
  180. padding: 18rpx 0 0;
  181. }
  182. }
  183. image {
  184. width: 160rpx;
  185. height: 160rpx;
  186. margin: 0 20rpx 0 0;
  187. }
  188. .center {
  189. width: 330rpx;
  190. .name {
  191. font-size: 28rpx;
  192. font-family: PingFangSC, PingFang SC;
  193. font-weight: 400;
  194. color: #222222;
  195. }
  196. .spec {
  197. max-width: max-content;
  198. font-size: 22rpx;
  199. font-family: PingFangSC, PingFang SC;
  200. font-weight: 400;
  201. color: #888888;
  202. margin: 16rpx 0 0;
  203. }
  204. }
  205. }
  206. .cell {
  207. padding: 0 0 36rpx;
  208. .label {
  209. font-size: 28rpx;
  210. font-family: PingFangSC, PingFang SC;
  211. font-weight: 400;
  212. color: #666666;
  213. }
  214. .value {
  215. white-space: nowrap;
  216. max-width: 350rpx;
  217. font-size: 28rpx;
  218. font-family: SFPro, SFPro;
  219. font-weight: 400;
  220. color: #222222;
  221. }
  222. image {
  223. width: 28rpx;
  224. height: 28rpx;
  225. margin: 0 0 0 16rpx;
  226. }
  227. }
  228. }
  229. .address {
  230. text:first-child {
  231. font-size: 30rpx;
  232. font-family: PingFangSC, PingFang SC;
  233. font-weight: 600;
  234. color: #222222;
  235. }
  236. text:last-child {
  237. font-size: 24rpx;
  238. font-family: SFPro, SFPro;
  239. font-weight: 300;
  240. color: #666666;
  241. padding: 16rpx 0 0;
  242. }
  243. }
  244. .top {
  245. width: 100%;
  246. padding: 40rpx 0 28rpx;
  247. text:first-child {
  248. font-size: 36rpx;
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 600;
  251. color: #222222;
  252. }
  253. text:last-child {
  254. font-size: 24rpx;
  255. font-family: PingFangSC, PingFang SC;
  256. font-weight: 400;
  257. color: #888888;
  258. }
  259. }
  260. }
  261. </style>