xiangpei
2025-02-25 9ada813d51a0a7da7a22143af4b548a44472f0d6
src/views/projectEngineering/projectLibrary/index.vue
@@ -307,7 +307,7 @@
      :total="total"
      :page.sync="queryParams.currentPage"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
      @pagination="() => getList(null)"
    />
    <FileDialog
@@ -372,6 +372,7 @@
      queryParams: {
        currentPage: 1,
        pageSize: 10,
        center: 0,  // 1 代表项目中心
        projectName: null,
        projectCode: null,
        projectStartTime: null,
@@ -405,6 +406,9 @@
  created() {
    this.queryParams.importanceType = this.$route.query.importanceType;
    const projectPhase = this.$route.query.projectPhase;
    if (projectPhase === '6') {
      this.queryParams.center = 1
    }
    if (!projectPhase || projectPhase === '1' || projectPhase === '6') {
      this.isReserve = true;
    }
@@ -608,7 +612,7 @@
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.currentPage = 1;
      this.getList();
      this.getList(null);
    },
    /** 重置按钮操作 */
    resetQuery() {