transaction-logistics.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!-- 交易物流 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="list">
  5. <view class="item">
  6. <view class="item-top">
  7. <text>您的订单已发货</text>
  8. <text>10:47</text>
  9. </view>
  10. <view class="item-content">
  11. <image src="../../../static/img-4.png" class="item-img" mode="widthFix"></image>
  12. <view class="item-sidebar">
  13. <view class="item-name">
  14. 您购买的【狂欢季】MINISO名创优品…已…
  15. </view>
  16. <view class="item-msg" @tap="logisticsDetails">
  17. 查看物流信息
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="item">
  23. <view class="item-top">
  24. <text>您的订单已发货</text>
  25. <text>昨天</text>
  26. </view>
  27. <view class="item-content">
  28. <image src="../../../static/img-4.png" class="item-img" mode="widthFix"></image>
  29. <view class="item-sidebar">
  30. <view class="item-name">
  31. 您购买的【狂欢季】MINISO名创优品…已…
  32. </view>
  33. <view class="item-msg" @tap="logisticsDetails">
  34. 查看物流信息
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. // 跳转物流详情
  47. logisticsDetails(){
  48. uni.navigateTo({
  49. url:'../../my-order/logistics-details/logistics-details'
  50. })
  51. }
  52. }
  53. },
  54. methods: {
  55. }
  56. }
  57. </script>
  58. <style scoped lang="scss">
  59. @import "./transaction-logistics.css";
  60. </style>