my-custom.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-content">
  13. <image src="../../../static/img-4.png" class="product-img" mode="aspectFill"></image>
  14. <view class="item-content-sidebar">
  15. <view class="product-item-name">
  16. 冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器
  17. </view>
  18. <view class="product-item-tag">
  19. <text>一盒15g*20袋</text>
  20. <text class="product-item-price">¥394.00</text>
  21. </view>
  22. <view class="row-between">
  23. <view class="color-box">
  24. <text>颜色:</text>
  25. <view class="fangkuai"></view>
  26. </view>
  27. <text class="num">x4</text>
  28. </view>
  29. <view class="product-item-remark">
  30. 备注:需要大量定制,用于元旦送给VIP客户
  31. </view>
  32. </view>
  33. </view>
  34. <view class="item-bottom">
  35. <text class="date-time">2021-11-16</text>
  36. <text class="express-information">中通快递:ZT456789415213</text>
  37. <!-- 待确认显示 -->
  38. <button type="default">确认</button>
  39. <!-- 待付款显示 -->
  40. <!-- <button type="default">去支付</button> -->
  41. <!-- 待发货显示 -->
  42. <!-- <button type="default">催发货</button> -->
  43. <!-- 待收货显示 -->
  44. <!-- <button type="default">确认收货</button> -->
  45. </view>
  46. </view>
  47. <!-- 无内容时显示 -->
  48. <!-- <view class="normal-box">
  49. <image src="../../../static/normal-3.png" mode="widthFix"></image>
  50. <text>暂无订单</text>
  51. <button type="default">去逛逛</button>
  52. </view> -->
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. //选项卡
  61. isActive: 0,
  62. navList: [{
  63. index: 0,
  64. title: '待确认',
  65. }, {
  66. index: 1,
  67. title: "待付款",
  68. }, {
  69. index: 2,
  70. title: "待发货",
  71. }, {
  72. index: 3,
  73. title: "待收货",
  74. }],
  75. }
  76. },
  77. methods: {
  78. //选项卡
  79. checked(index) {
  80. this.isActive = index
  81. },
  82. }
  83. }
  84. </script>
  85. <style scoped lang="scss">
  86. @import "./my-custom.css";
  87. </style>