派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-04-18 d35bd1a0d9190438f31c8e6639b435070dae7364
弹框内容修改
3个文件已修改
88 ■■■■■ 已修改文件
src/components/BaseNav/WasteSolid/PublicTabs.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/WasteSolid/WasteSolidIndex.vue 21 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/layer/src/layer.vue 65 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/WasteSolid/PublicTabs.vue
@@ -29,7 +29,7 @@
  },
  mounted () {
    this.$nextTick(() => {
      this.refsDataTabs()
      // this.refsDataTabs()
    })
  },
  methods: {
src/components/BaseNav/WasteSolid/WasteSolidIndex.vue
@@ -34,30 +34,13 @@
    })
  },
  data () {
    return {
      displayContentTabs: [{
        StoragePlaceId: 0,
        StoragePlaceName: '取水单元干泥暂存库',
        DesignFloorArea: 0.024,
        StorageQty: 0.016,
        SurplusFloorArea: 0.018,
        StorageDate: '2021-01-17'
      }]
    }
    return {}
  },
  methods: {
    refsData () {
      const data = this.storagePlaceId
      this.$refs.refsTabsData.refsDataTabs(data)
      this.$refs.refsTableData.refsDataTable(data)
    },
    // 固废相关信息设置
    setData (title, dataBasic, dataDetailed, value) {
      this.flag = true
      this.value = value
      this.displayContentTitle = title
      this.displayContentTab = dataBasic[0]
      this.displayContentTable = dataDetailed[0]
    }
  }
}
@@ -97,7 +80,7 @@
  }
  .public-bounced-content {
    padding: 0.1rem;
    //padding: 0.1rem;
    display: flex;
    //align-items: center;
    //justify-content: space-around;
src/components/layer/src/layer.vue
@@ -1,7 +1,7 @@
<template>
  <div class="public-bounced map-background" v-drag :style="style">
    <div class="public-bounced-title panel-title" ref="publicBounced">
      <span>{{title}}</span>
      <span>{{ title }}</span>
      <i class="el-icon-circle-close" @click="close"></i>
    </div>
    <div class="public-bounced-content" :id="id">
@@ -27,8 +27,7 @@
      }
    }
  },
  computed: {
  },
  computed: {},
  mounted () {
  },
  methods: {
@@ -71,11 +70,11 @@
</script>
<style lang="less" scoped>
  .public-bounced {
    z-index: 2000;
    position: absolute;
    top: 35%;
    left: 20%;
.public-bounced {
  z-index: 2000;
  position: absolute;
  top: 35%;
  left: 20%;
  .public-bounced-title {
    cursor: move;
@@ -85,38 +84,38 @@
    align-items: center;
    justify-content: space-between;
  span {
    color: #f4f7ff;
    margin: 0 15px;
    font-size: 14px;
  }
    span {
      color: #f4f7ff;
      margin: 0 15px;
      font-size: 14px;
    }
  i {
    color: #C0C4CC;
    margin: 0 15px;
    font-size: 22px;
    cursor: pointer;
  }
    i {
      color: #C0C4CC;
      margin: 0 15px;
      font-size: 22px;
      cursor: pointer;
    }
  i:hover {
    color: #00fff6;
  }
    i:hover {
      color: #00fff6;
    }
  }
  .public-bounced-content {
    padding: 0.1rem;
    //padding: 0.1rem;
    display: flex;
  //align-items: center;
  //justify-content: space-around;
    //align-items: center;
    //justify-content: space-around;
  .public-bounced-content-left {
  //width: 4.8rem;
  }
    .public-bounced-content-left {
      //width: 4.8rem;
    }
  .public-bounced-content-right {
  //width: 3rem;
    margin-left: 0.1rem;
    .public-bounced-content-right {
      //width: 3rem;
      margin-left: 0.1rem;
    }
  }
  }
  }
}
</style>