yiming
2024-07-08 c6abdfaf883e35e9c930dbdbe533d36e2966eb23
pages/retrievalPage/index.js
@@ -38,8 +38,41 @@
      page: 1,
      total: 0,
    },
    tabValue: '0',
    tabValue: 0,
    tabPanelstyle: 'display:flex;justify-content:center;align-items:center;',
    // tab选项
    tabList: [{
        title: "图书",
        index: "0",
        // bookTotal: this.data.bookTotal
      },
      {
        title: "课程",
        index: "1",
        // bookTotal: this.data.courseTotal
      },
      {
        title: "数字教材",
        index: "2",
        // bookTotal: this.data.digitalTextbooksTotal
      }, {
        title: "专题",
        index: "3",
        // bookTotal: this.data.seminarTotal
      },
      {
        title: "书目",
        index: "4",
        // bookTotal: this.data.bookFairTotal
      },
      {
        title: "书展",
        index: "5",
        // bookTotal: this.data.biblioClassificationTotal
      },
    ],
    tabsId: 0, //默认选型为装备
  },
  /**
@@ -139,11 +172,6 @@
    } else {
      this.retrievalPageGet()
    }
  },
  retrievalPageGet() {
@@ -874,5 +902,21 @@
  },
  tabClick() {
    console.log(2323);
  }
  },
  // 滑动时触发的事件
  slideOn(e) {
    // 拿到当前索引并动态改变
    this.setData({
      tabsId: e.detail.current
    })
  },
  //点击tab时触发
  tabsOn(e) {
    this.setData({
      //拿到当前索引并动态改变
      tabsId: e.currentTarget.dataset.idx
    })
  },
})