my-order.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <!-- 我的订单 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="tab-list">
  5. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList" :key="index"
  6. @click="checked(index)">
  7. {{item.title}}
  8. </view>
  9. </view>
  10. <view class="list">
  11. <view class="item">
  12. <view class="item-top">
  13. <text>限源预售</text>
  14. <text>交易成功</text>
  15. </view>
  16. <view class="item-content">
  17. <image src="../../static/img-4.png" class="product-img" mode="aspectFill"></image>
  18. <view class="item-content-sidebar">
  19. <view class="product-item-row-between">
  20. <view class="product-item-name">
  21. 冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器
  22. </view>
  23. <view class="row-end">
  24. <text class="product-item-price">¥394.00</text>
  25. <text class="product-item-num">x <text>1</text></text>
  26. </view>
  27. </view>
  28. <view class="product-item-tag">
  29. <text>一盒15g*20袋</text>
  30. <text class="status-msg">退款关闭</text>
  31. </view>
  32. <view class="product-item-msg">
  33. 7天无理由退换货
  34. </view>
  35. </view>
  36. </view>
  37. <view class="msg-box">
  38. <view class="freight-insurance-row">
  39. <text class="font-1">运费险</text>
  40. <text class="font-2">退换货可自动理赔</text>
  41. <text class="font-3">¥0.00 x1</text>
  42. </view>
  43. <view class="price-row">
  44. <text class="margin">总价¥<text class="big-font">29.90</text></text>
  45. <text class="margin">优惠¥<text class="big-font">1.75</text></text>
  46. <text class="margin">实付款¥<text class="big-font-black">28.15</text></text>
  47. </view>
  48. </view>
  49. <view class="item-bottom">
  50. <button type="default">加入购物车</button>
  51. <button type="default">查看物流</button>
  52. <!-- 待付款显示 -->
  53. <!-- <button type="default" class="border-gray">取消订单</button>
  54. <button type="default" class="border-gray">取消订单</button>
  55. <button type="default" class="border-red">付款</button> -->
  56. <!-- 待发货显示 -->
  57. <!-- <button type="default">申请开票</button>
  58. <button type="default">修改地址</button> -->
  59. <!-- 待收货显示 -->
  60. <!-- <button type="default">申请开票</button>
  61. <button type="default">查看物流</button>
  62. <button type="default" class="border-red">确认收货</button> -->
  63. <!-- 待评价显示 -->
  64. <!-- <button type="default" class="border-red">评价</button> -->
  65. <!-- 已完成 -->
  66. <!-- <button type="default" class="border-gray">删除订单</button> -->
  67. </view>
  68. </view>
  69. <!-- 无内容时显示 -->
  70. <!-- <view class="normal-box">
  71. <image src="../../static/normal-3.png" mode="widthFix"></image>
  72. <text>暂无订单</text>
  73. <button type="default">去逛逛</button>
  74. </view> -->
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. data() {
  81. return {
  82. //选项卡
  83. isActive: 0,
  84. navList: [{
  85. index: 0,
  86. title: '全部',
  87. }, {
  88. index: 1,
  89. title: "待付款",
  90. }, {
  91. index: 2,
  92. title: "待发货",
  93. }, {
  94. index: 3,
  95. title: "待收货",
  96. }, {
  97. index: 4,
  98. title: "待评价",
  99. }],
  100. }
  101. },
  102. methods: {
  103. //选项卡
  104. checked(index) {
  105. this.isActive = index
  106. },
  107. }
  108. }
  109. </script>
  110. <style scoped lang="scss">
  111. @import "./my-order.css";
  112. </style>