| | |
| | | <el-form-item label="所属单位" prop="organizationId"> |
| | | <organization v-model="queryParams.organizationId" :schoolId="schoolId"></organization> |
| | | </el-form-item> |
| | | <el-form-item label="施工批次" prop="constructionBatchId"> |
| | | <construction-batch v-model="queryParams.constructionBatchId" :schoolId="schoolId"></construction-batch> |
| | | </el-form-item> |
| | | <el-form-item label="型号" prop="model"> |
| | | <el-input |
| | | <template v-if="showMoreCondition"> |
| | | <el-form-item label="施工批次" prop="constructionBatchId"> |
| | | <construction-batch v-model="queryParams.constructionBatchId" :schoolId="schoolId"></construction-batch> |
| | | </el-form-item> |
| | | <el-form-item label="型号" prop="model"> |
| | | <el-input |
| | | v-model="queryParams.model" |
| | | placeholder="请输入型号" |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | /> |
| | | </el-form-item> |
| | | </template> |
| | | <el-form-item> |
| | | <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 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> |
| | | |
| | |
| | | <el-table-column label="安装位置" align="center" min-width="240" prop="buildingId_dictText"/> |
| | | <el-table-column label="所属单位" align="center" min-width="200" prop="organizationId_dictText"/> |
| | | <el-table-column label="施工批次" align="center" prop="constructionBatchId_dictText"/> |
| | | <el-table-column label="序列号" align="center" prop="serialNumber"/> |
| | | <el-table-column label="型号" align="center" prop="model"/> |
| | | <el-table-column label="生产厂商" align="center" prop="manufacturerId_dictText"/> |
| | | <el-table-column label="序列号" min-width="180" align="center" prop="serialNumber"/> |
| | | <el-table-column label="型号" align="center" min-width="180" prop="model"/> |
| | | <el-table-column label="生产厂商" align="center" min-width="200" prop="manufacturerId_dictText"/> |
| | | <el-table-column label="操作" align="center" fixed="right" width="220" class-name="small-padding fixed-width"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | |
| | | import organization from '../../components/organization' |
| | | import constructionBatch from '../../components/constructionBatch' |
| | | import manufacturer from '../../components/manufacturer' |
| | | import ShowMore from "@/views/components/showMore"; |
| | | |
| | | export default { |
| | | name: "Nvr", |
| | |
| | | building, |
| | | organization, |
| | | constructionBatch, |
| | | manufacturer |
| | | manufacturer, |
| | | ShowMore |
| | | }, |
| | | props: { |
| | | schoolId: { |
| | |
| | | ] |
| | | }, |
| | | disabled: false, |
| | | fileOpen: false |
| | | fileOpen: false, |
| | | showMoreCondition: false |
| | | }; |
| | | }, |
| | | watch: { |