yiming
2024-03-27 feead902a64345472895b9d4d9a335574ab728ad
pages/bibliographyList/index.js
@@ -18,7 +18,8 @@
      BarHeight: '',
      navBarHeight: '',
      start: 1,
      tabValue: ''
      tabValue: '',
      keyword: ''
    },
    /**
@@ -126,6 +127,7 @@
    //高等教育
    higherGet(keyword) {
      console.log(keyword, 'keyword');
      let searchObj = {
        'Name*': keyword,
        '||author*': keyword,
@@ -288,6 +290,7 @@
      this.higherGet(keyword)
      this.vocationalGet(keyword)
      this.teacherGet(keyword)
    },
@@ -360,15 +363,21 @@
    },
    onPullDownRefresh() {
      let keyword = this.data.value
      this.setData({
        start: 1
        start: 1,
      })
      this.vocationalGet()
      this.higherGet()
      this.teacherGet()
      this.higherGet(keyword)
      this.vocationalGet(keyword)
      this.teacherGet(keyword)
    },