wx
qx
2025-04-15 7a2d49aeff16e1122ed33ebb858f093a379fb960
src/views/advice/advice/index.vue
@@ -9,6 +9,14 @@
      label-width="68px"
      @submit.native.prevent
    >
    <el-form-item label="标题" prop="bt">
        <el-input
          v-model="queryParams.bt"
          placeholder="请输入标题"
          clearable
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="项目名称" prop="proName">
        <el-input
          v-model="queryParams.proName"
@@ -336,6 +344,7 @@
        page: 1,
        pageSize: 10,
        proName: null,
        bt: null,
      },
      // 表单参数
      form: {},
@@ -380,8 +389,8 @@
    },
    // 节点单击事件
    handleNodeClick(data) {
      // this.queryParams.deptId = data.id;
      this.queryParams.deptId = null;;
      this.queryParams.deptId = data.id;
      // this.queryParams.deptId = null;
      this.handleQuery();
    },