From 3da1818bf94543c9f48191df52f76e1ac92bf542 Mon Sep 17 00:00:00 2001
From: chenzeping <ChenZeping02609@163.com>
Date: 星期四, 15 四月 2021 16:46:54 +0800
Subject: [PATCH] Merge branch 'develop' of http://xearth.cn:6600/r/wuyushui/SewerAndRainNetwork into develop

---
 src/components/panel/topicSearch/GasWasteSearch.vue |  108 ++++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 85 insertions(+), 23 deletions(-)

diff --git a/src/components/panel/topicSearch/GasWasteSearch.vue b/src/components/panel/topicSearch/GasWasteSearch.vue
index 102b5e5..b4d485f 100644
--- a/src/components/panel/topicSearch/GasWasteSearch.vue
+++ b/src/components/panel/topicSearch/GasWasteSearch.vue
@@ -64,11 +64,11 @@
       </el-form>
     </div>
     <el-scrollbar style="height:264px">
-      <div class="environmental-risk-list" ><!-- v-for="(item,index) in list" :key="index" -->
-        <i class="state"></i>
+      <div class="environmental-risk-list" v-for="(item,index) in list" :key="index" @click="handleLocation(item)"><!--  -->
+        <img src="../../../../public/assets/images/map/exhaust/fq_green2.png" alt="" class="state"/>
         <div>
-          <h3>###鐐煎寲閮�</h3>
-          <p>鎵�灞為儴闂細<span>鐐煎寲閮�</span></p>
+          <h3>{{ item.Name }}</h3>
+          <p>鎵�灞為儴闂細<span>{{ item.porltName }}</span></p>
           <p>椋庨櫓绾у埆锛�<span>涓夌骇</span></p>
         </div>
       </div>
@@ -98,15 +98,17 @@
 
 <script>
 import mapApi from '@/api/mapApi'
-
-// import WfsHelper from '@components/helpers/WfsHelper'
+import publicBounced from '@/components/BaseNav/PublicBounced/PublicBounced'// import WfsHelper from '@components/helpers/WfsHelper'
+import ImagGreen from '../../../../public/assets/images/map/exhaust/fq_green2.png'
 export default {
   name: 'GasWasteSearch',
   data () {
     return {
+      layer: window.map,
+      L: window.L,
       gdVisible: true,
+      instance: null,
       list: [],
-      // labelList: PipelineTypeOptions[0].labelList,
       total: 0,
       inareaTypeOptions: [],
       enterpriseTypeOptions: [],
@@ -158,24 +160,84 @@
         pipelineType: this.form.pipelineType,
         dataType: this.form.dataType
       }
-      console.log(param)
-      // var wfsHelper = new WfsHelper()
-      // wfsHelper.addTypeName(this.form.query.layerName)
-      // wfsHelper.addLike(this.form.query.key, this.form.keyword)
-      // const _this = this
-      // const res = await AjaxUtils.GetDataAsynByUrl(wfsHelper.getUrl(), {})
-      const res = await mapApi.getWasteGas()
-      console.log(res)
-      if (res.data instanceof Object && Object.prototype.hasOwnProperty.call(res.data, 'features')) {
-        this.list = res.data.features
-      }
+      // console.log(param)
+      const res = await mapApi.getWasteGas(param)
+      // console.log(res)
+      this.list = res.Result.DataInfo
+      console.log(this.list)
     },
-    handleLocation (val) {
+    // 寮圭獥灞曠ず
+    async handleLocation (val) {
       console.log(val)
-      const bound = this.L.geoJSON([val], {}).getBounds()
-      var layer = window.serviceLayerHelper.getByLayerId(val.id)
-      layer && layer.openPopup()
-      this.$store.state.map.map.flyToBounds(bound)
+      const pos = [val.Latitude, val.Longitude]
+      window.map.flyTo(pos, 15)
+      const positionX = val.Latitude
+      const positionY = val.Longitude
+
+      // 瀹氫箟绫诲瀷 鐢ㄦ潵鍖哄垎鏁版嵁鐨勪笉鍚� 1.鎺ュ彛鎺ュ彛鏁版嵁鏉ヨ繘琛屾暟鎹殑鍒ゆ柇 2.鏍规嵁鏁版嵁绫诲瀷鐨勪笉鍚岋紝杩涜涓嶅悓绫诲瀷鐨勫浘鐗囨樉绀�
+      const ContrLevel = val.ContrLevel
+      var iconUrl = this.differentTypes(ContrLevel)
+
+      const marker = this.L.marker([positionX, positionY], {
+        icon: this.L.icon({
+          iconUrl: iconUrl,
+          iconSize: [30, 30],
+          iconAnchor: [15, 15]
+        })
+      })
+      this.layer.addLayer(marker)
+      const t1 = setTimeout(async () => {
+        const dataValue = {
+          StoragePlaceId: val.StoragePlaceId
+        }
+        // 寮规鏍囬
+        const title = val
+        console.log(title)
+        // 鍩烘湰淇℃伅 tabs
+        const result = await mapApi.getWasteGas(dataValue)
+        const GasOnlinedata = {
+          onLineMonEmissPointId: '23',
+          monItemId: '28,31',
+          beginTime: '2020-04-06 15:13:20',
+          endTime: '2020-04-07 15:13:20',
+          dataType: '1'
+        }
+        const GasManualData = {
+          companyId: '3900100145',
+          labMonPointId: '219',
+          beginTime: '2020-04-06 15:13:20',
+          endTime: ' 2020-04-07 15:13:20'
+        }
+        const ManualData = await mapApi.getWasteGasManualData(GasManualData)
+        const Mondata = await mapApi.getWasteGasMonData(GasOnlinedata)
+        // 缁戝畾寮规瀹炰緥
+        this.instance && this.instance.closePopup()
+        const PublicBounced = window.Vue.extend(publicBounced)
+        this.instance = new PublicBounced().$mount()
+        document.body.appendChild(this.instance.$el)
+        // document.body.removeChild(instance.$el)
+        // 閫氳繃鏂规硶 鍚戠粦瀹氬脊妗嗕紶閫掓暟鎹�
+        this.instance.setGasData(title, result.Result.DataInfo, Mondata.Result.DataInfo, ManualData.Result.DataInfo, 'feiqi')
+        // console.log(title, result.Result.DataInfo, Mondata.Result.DataInfo, ManualData.Result.DataInfo)
+        // this.setPanTo(pos, 250)
+      }, 100)
+      console.log(t1)
+    },
+    // 涓嶅悓绫诲瀷鍥剧墖鍔犺浇
+    differentTypes (ContrLevel) {
+      // effectOfChange
+      /*
+       if (ContrLevel === 1) {
+         effectOfChange = ImgBlue
+       } else if (ContrLevel === 2) {
+      */
+      const effectOfChange = ImagGreen
+      // } else if (ContrLevel === 3) {
+      //   effectOfChange = ImagBright
+      // } else {
+      //   effectOfChange = ImgGray
+      // }
+      return effectOfChange
     }
   }
 }

--
Gitblit v1.8.0