browse-history.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!-- 浏览记录 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="header">
  5. <view class="header-top">
  6. <image src="../../../static/return.png" class="return" mode="widthFix"></image>
  7. <view class="header-title">
  8. 浏览记录
  9. </view>
  10. <view class="header-msg">
  11. 管理 完成
  12. </view>
  13. </view>
  14. <view class="header-center">
  15. <view class="tab-list">
  16. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList"
  17. :key="index" @click="checked(index)">
  18. {{item.title}}
  19. </view>
  20. </view>
  21. </view>
  22. <view class="header-bottom">
  23. <scroll-view scroll-x="true" class="subtab-list">
  24. <view class="subtab-item" v-for="(item,index) in timeList">
  25. <view :class="{ 'active' : isSelected === index }" class="subtab-child" :key="index"
  26. @click="tabClick(index)">
  27. <text>{{item.week}}</text>
  28. <text>{{item.day}}</text>
  29. </view>
  30. </view>
  31. </scroll-view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. //选项卡
  41. isActive: 0,
  42. navList: [{
  43. index: 0,
  44. title: '商品',
  45. }, {
  46. index: 1,
  47. title: "资讯",
  48. }],
  49. isSelected: 6,
  50. timeList: [{
  51. index: 0,
  52. week: '日',
  53. day: "31",
  54. }, {
  55. index: 1,
  56. week: '一',
  57. day: "1",
  58. }, {
  59. index: 2,
  60. week: '二',
  61. day: "2",
  62. }, {
  63. index: 3,
  64. week: '三',
  65. day: "3",
  66. }, {
  67. index: 4,
  68. week: '四',
  69. day: "4",
  70. }, {
  71. index: 5,
  72. week: '五',
  73. day: "5",
  74. }, {
  75. index: 6,
  76. week: '六',
  77. day: "6",
  78. }],
  79. }
  80. },
  81. methods: {
  82. //选项卡
  83. checked(index) {
  84. this.isActive = index
  85. },
  86. //选项卡2
  87. tabClick(index) {
  88. this.isSelected = index
  89. },
  90. }
  91. }
  92. </script>
  93. <style scoped lang="scss">
  94. @import "./browse-history.css";
  95. </style>