1
YM
2024-07-26 e00361c6bcbb1a56f6dcda22b91bdfcb2736e263
src/pages/knowledgeBase/knowledgeBase.vue
@@ -47,7 +47,16 @@
        class="advancedSeaTrue1"
      >
        <h3>高级搜索</h3>
        <MyForm @submit="onSubmit" @reset="resetForm" :from="from" />
        <MyForm
          @submit="
            (data) => {
              CurrentPage = 1;
              onSubmit(data);
            }
          "
          @reset="resetForm"
          :from="from"
        />
      </view>
    </view>
    <uni-row
@@ -382,7 +391,7 @@
      // 表格的数组
      tableData: [],
      // 分页的总数
      total: 100,
      total: 0,
      // 当前页
      CurrentPage: 1,
      // 一页显示多少条数据
@@ -641,6 +650,10 @@
          document.querySelector(".fbox1").style.height = box1Height + "px";
        }
      });
      if (this.isAdvancedSearch) {
        this.keywords = "";
        this.CurrentPage = 1;
      }
    },
    // 高级搜索
    async onSubmit(val) {
@@ -657,7 +670,7 @@
        this.dynasty.id = currentDynasty.dynastyId;
      }
      this.submitData = val;
      this.CurrentPage = 1;
      let Obj = {
        keywords: "", //搜索框检索
        name: val.name, //姓名
@@ -669,7 +682,6 @@
        dynasty: val.dynasty, //朝代id
        dynastyId: this.dynasty.id, //朝代id
        institution: val.institution, //机构
        bookId: null, //来源id
        page: this.CurrentPage,
        pageSize: this.pageSize
      };
@@ -760,14 +772,22 @@
    PrevClick(val) {
      if (this.CurrentPage != val) {
        this.CurrentPage = val;
        if (this.isAdvancedSearch) {
          this.onSubmit(this.aSearchData);
        } else {
        this.onSearch({ text: this.keywords });
        }
      }
    },
    // 下一页
    NextClick(val) {
      if (this.CurrentPage != val) {
        this.CurrentPage = val;
        if (this.isAdvancedSearch) {
          this.onSubmit(this.aSearchData);
        } else {
        this.onSearch({ text: this.keywords });
        }
      }
    }
  }
@@ -861,29 +881,26 @@
  .lightBo {
    font-size: 0.14rem !important;
  }
    .is-leaf {
  .lightBo .is-leaf {
      background-color: #c1d3ea !important;
      color: #2c2c2c !important;
      font-weight: 400;
  }
      .cell {
  .lightBo .is-leaf .cell {
        height: 0.3rem !important;
        line-height: 0.3rem !important;
      }
    }
  }
  .el-table__body-wrapper {
    .el-table__row {
  .el-table__body-wrapper .el-table__row {
      height: 0.46rem !important;
      line-height: 0.46rem !important;
      .cell {
  }
  .el-table__body-wrapper .el-table__row .cell {
        height: 0.3rem !important;
        line-height: 0.3rem !important;
      }
    }
  }
}