派生自 wuyushui/SewerAndRainNetwork

ChenZeping02609
2021-05-13 672f791281b80a61dbda7d2c2d426dd90b31b982
src/components/panel/RightSearchPanel.vue
@@ -154,7 +154,7 @@
        case '管道信息':
          this.gcComp = PipeInformationSearch
          break
        case '企业应急':
        case '应急图层':
          this.gcComp = ReportSearch
          break
      }
@@ -217,11 +217,15 @@
  mounted () {
    const that = this
    bus.$on('changeSearchBar', function (obj) {
      // console.log(obj.checked, obj.name)
      that.gcComp = ''
      that.topicList.forEach((item) => {
        if (item.name === obj.name) {
          item.isShow = obj.checked
          if (obj.type > 0) {
            item.isShow = true
          } else {
            item.isShow = false
          }
          // item.isShow = obj.checked
          if (item.isShow) {
            that.selected(item)
          } else {
@@ -230,6 +234,7 @@
        }
      })
    })
  //  console.log(that.topicList)
  }
}
</script>