派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-04-01 e584192ac0f3f93d1e8324b85a56cc102a2bd963
修改弹窗中基本信息字段名
3个文件已修改
24 ■■■■ 已修改文件
src/components/BaseNav/PublicBounced/GasComponents/PublicTabs.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/LayerController/logic/WasteGas.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/LayerController/logic/WasteWater.js 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/PublicTabs.vue
@@ -34,14 +34,14 @@
       </div>
        <div v-else-if="value == 'feishui'">
          <el-row type="flex" class="row-bg row-item-one" justify="space-around">
            <el-col :span="8">监测点名称:{{ displayContentTab2.StoragePlaceName }}</el-col>
            <el-col :span="8">生产单位:{{ displayContentTab2.StoragePlaceName }}</el-col>
            <el-col :span="8">排放类型加载:{{ displayContentTab2.DesignFloorArea }}</el-col>
            <el-col :span="8">监测点名称:{{ displayContentTab.Name }}</el-col>
            <el-col :span="8">生产单位:{{ displayContentTab.porltName }}</el-col>
            <el-col :span="8">排放类型名称:{{ displayContentTab.MonTypeName }}</el-col>
          </el-row>
          <el-row type="flex" class="row-bg" justify="space-around">
            <el-col :span="8">排放去向:{{ displayContentTab2.StorageQty }}</el-col>
            <el-col :span="8">控制级别名称:{{ displayContentTab2.SurplusFloorArea }}</el-col>
            <el-col :span="8">内/外排口:{{ displayContentTab2.StorageDate }}</el-col>
            <el-col :span="8">排放去向:{{ displayContentTab.EmissDirecti }}</el-col>
            <el-col :span="8">控制级别名称:{{ displayContentTab.ContrLevelShowName }}</el-col>
            <el-col :span="8">内/外排口:{{ displayContentTab.OrOutPortName }}</el-col>
          </el-row>
        </div>
      </div>
src/components/LayerController/logic/WasteGas.js
@@ -57,6 +57,7 @@
    const PublicBounced = window.Vue.extend(publicBounced)
    const instance = new PublicBounced()
    instance.setGasData(e.layer.options.test, 'feiqi')
    console.log(e.layer.options.test)
    instance.$mount()
    document.body.appendChild(instance.$el)
  }
src/components/LayerController/logic/WasteWater.js
@@ -52,14 +52,15 @@
  this.clickListener = async (e) => {
    // console.log(e)
    this.animalService.pulseEffect(e.latlng)
    const dataValue = {
      StoragePlaceId: e.layer.options.test.StoragePlaceId
    }
    const result = await mapApi.getWasteWater(dataValue)
    // const dataValue = {
    //   StoragePlaceId: e.layer.options.test.StoragePlaceId
    // }
    // const result = await mapApi.getWasteWater(dataValue)
    // console.log(result)
    const PublicBounced = window.Vue.extend(publicBounced)
    const instance = new PublicBounced()
    instance.setGasData(result, 'feishui')
    instance.setGasData(e.layer.options.test, 'feishui')
    console.log(e.layer.options.test)
    instance.$mount()
    document.body.appendChild(instance.$el)
  }