liuchengxin
2022-05-23 1c01e669cca92f94eea5d1a73ff60f3bd34b9079
src/views/construction/exchange/index.vue
@@ -10,6 +10,7 @@
      <el-form-item label="施工批次" prop="constructionBatchId">
        <construction-batch v-model="queryParams.constructionBatchId" :schoolId="schoolId"></construction-batch>
      </el-form-item>
      <template v-if="showMoreCondition">
      <el-form-item label="型号" prop="model">
        <el-input
            v-model="queryParams.model"
@@ -62,9 +63,13 @@
          />
        </el-select>
      </el-form-item>
      </template>
      <el-form-item>
        <div class="show-more-search">
          <ShowMore :showMoreCondition.sync="showMoreCondition"></ShowMore>
        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
        </div>
      </el-form-item>
    </el-form>
@@ -291,6 +296,7 @@
import constructionBatch from "../../components/constructionBatch";
import manufacturer from "../../components/manufacturer";
import nvr from "../../components/nvr";
import ShowMore from "@/views/components/showMore";
export default {
  name: "Exchange",
@@ -300,7 +306,8 @@
    organization,
    constructionBatch,
    manufacturer,
    nvr
    nvr,
    ShowMore
  },
  props: {
    schoolId: {
@@ -378,7 +385,8 @@
        ],
      },
      disabled: false,
      fileOpen: false
      fileOpen: false,
      showMoreCondition: false
    };
  },
  created() {