src/components/panel/RightSearchPanel.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/DischargeSearch.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/EnvRiskSearch.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/GasWasteSearch.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/SewersSearch.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/SoilGroundWaterSearch.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/SolidWasteSearch.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/components/panel/topicSearch/WaterWasteSearch.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/conf/Topic.js | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/components/panel/RightSearchPanel.vue
@@ -9,7 +9,6 @@ <el-tooltip :popper-class="'map-tooltip'" effect="dark" :content="item.name" placement="left"> <li style=" "> <!-- <span>{{item.name}}</span>--> <!-- <div >--> <img src="../../assets/images/map-pages/icon/sl.png" class="icon"> <!-- </div>--> @@ -38,9 +37,6 @@ <div :class="'search-container map-background'"> <div class="el-message-box__content" style="padding:6px;font-size: 13px;"> <div class="search-title"> 污雨水 </div> <component :title="title" :is="gcComp"></component> </div> </div> @@ -49,14 +45,18 @@ </template> <script> import EnvProtectSearch from './topicSearch/EnvProtectSearch' import EnvRiskSearch from './topicSearch/EnvRiskSearch' import DischargeSearch from './topicSearch/DischargeSearch' import { TopicList } from '../../conf/Topic' import GasWasteSearch from '@components/panel/topicSearch/GasWasteSearch' import WaterWasteSearch from '@components/panel/topicSearch/WaterWasteSearch' import SolidWasteSearch from '@components/panel/topicSearch/SolidWasteSearch' import SewersSearch from '@components/panel/topicSearch/SewersSearch' import SoilGroundWaterSearch from '@components/panel/topicSearch/SoilGroundWaterSearch.vue' export default { name: 'MonitorPanel', components: { EnvProtectSearch, DischargeSearch }, components: { GasWasteSearch, WaterWasteSearch, SolidWasteSearch, EnvRiskSearch, DischargeSearch }, data () { return { isShow: true, @@ -100,6 +100,29 @@ this.topicList.forEach((itm) => { itm.checked = val.name === itm.name }) switch (val.name) { case '污染源': this.gcComp = DischargeSearch break case '废水监测': this.gcComp = WaterWasteSearch break case '废气监测': this.gcComp = GasWasteSearch break case '固废管理': this.gcComp = SolidWasteSearch break case '环境风险': this.gcComp = EnvRiskSearch break case '土壤及地下水': this.gcComp = SoilGroundWaterSearch break case '污雨水管网': this.gcComp = SewersSearch break } }, handlePage (page) { }, src/components/panel/topicSearch/DischargeSearch.vue
@@ -1,5 +1,8 @@ <template> <div> <div class="search-title"> 污雨水 </div> <el-card class="search-panel"> <el-form ref="form" :model="form" label-width="90px" class="search-form"> <el-form-item label="查询类型:"> src/components/panel/topicSearch/EnvRiskSearch.vue
File was renamed from src/components/panel/topicSearch/EnvProtectSearch.vue @@ -1,5 +1,8 @@ <template> <div> <div class="search-title"> 污雨水 </div> <el-card class="search-panel"> <el-form ref="form" :model="form" label-width="90px" class="search-form"> <el-form-item label="类型:"> src/components/panel/topicSearch/GasWasteSearch.vue
src/components/panel/topicSearch/SewersSearch.vue
@@ -1,5 +1,8 @@ <template> <div class="sewers-search" v-if="gdVisible"> <div class="search-title"> 污雨水 </div> <div class="search-panel "> <el-form ref="form" :model="form" label-width="90px" class="search-form"> <el-form-item label="设施类型:" size="mini" class="search-panel-item"> src/components/panel/topicSearch/SoilGroundWaterSearch.vue
src/components/panel/topicSearch/SolidWasteSearch.vue
src/components/panel/topicSearch/WaterWasteSearch.vue
src/conf/Topic.js
@@ -6,7 +6,7 @@ export const TopicComp = { dischargeSearch: () => import('@components/panel/topicSearch/DischargeSearch'), envProtectSearch: () => import('@components/panel/topicSearch/EnvProtectSearch'), envProtectSearch: () => import('@components/panel/topicSearch/EnvRiskSearch'), sewersSearch: () => import('@components/panel/topicSearch/SewersSearch.vue') }