派生自 wuyushui/SewerAndRainNetwork

wangqi
2021-03-30 8e2f05701ae08a22630b3ff1bd490945e5a936ba
弹窗样式修改
8个文件已添加
3个文件已修改
80 ■■■■■ 已修改文件
src/assets/images/map-pages/basenav/flugas/exhaust/fq_blue.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_bright_green.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_gray.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_green.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_green_xc.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_orange.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_red.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_yellow.png 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/GasECharts.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/PublicTable.vue 36 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/PublicBounced.vue 32 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/map-pages/basenav/flugas/exhaust/fq_blue.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_bright_green.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_gray.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_green.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_green_xc.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_orange.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_red.png
src/assets/images/map-pages/basenav/flugas/exhaust/fq_yellow.png
src/components/BaseNav/PublicBounced/GasComponents/GasECharts.vue
@@ -8,7 +8,7 @@
    <div class="border_corner border_corner_right_bottom"></div>
    <div class="main">
      <div class="main-echarts">
        <div id="echarts" style="width:100%;height:100%" ref="main"></div>
        <div  id="echarts" ref="main"></div>
      </div>
    </div>
  </div>
@@ -116,8 +116,8 @@
<style scoped lang="less">
.win {
  width: 100%;
  height: 100%;
  //width: 100%;
  //height: 100%;
  position: relative;
  //display: inline-block;
  background-color: rgba(33, 41, 69,0.9);
@@ -158,7 +158,13 @@
  width: 100%;
  height: 100%;
  .main-echarts{
    width: 100%;
    height: 100%;
    border: 1px solid #396d83;
  }
    #echarts{
      width: 425px;
      height: 300px;
  }
}
</style>
src/components/BaseNav/PublicBounced/GasComponents/PublicTable.vue
@@ -1,23 +1,23 @@
<template>
  <div class="public-table">
    <el-table
        :data="tableData"
        style="width: 100%">
      <el-table-column
          prop="date"
          label="日期"
          width="180">
      </el-table-column>
      <el-table-column
          prop="name"
          label="姓名"
          width="180">
      </el-table-column>
      <el-table-column
          prop="address"
          label="地址">
      </el-table-column>
    </el-table>
    <table border="1">
      <tr>
        <th>111</th>
        <th>111</th>
        <th>111</th>
        <th>111</th>
        <th>111</th>
        <th>111</th>
      </tr>
      <tr>
        <td>4444444444</td>
        <td>4444444444</td>
        <td>4444444444</td>
        <td>4444444444</td>
        <td>4444444444</td>
        <td>4444444444</td>
      </tr>
    </table>
  </div>
</template>
src/components/BaseNav/PublicBounced/PublicBounced.vue
@@ -6,8 +6,9 @@
    </div>
    <div class="public-bounced-content">
      <div class="public-bounced-content-left">
        <GasTable :displayContent="displayContent"></GasTable>
        <GasECharts></GasECharts>
        <GasTab :displayContent="displayContent"></GasTab>
        <PublicTable v-if="value === 'gufei'"></PublicTable>
        <GasECharts v-else></GasECharts>
      </div>
      <div class="public-bounced-content-right">
        <GasVideo></GasVideo>
@@ -19,14 +20,16 @@
<script>
import '@/components/BaseNav/SolidWaste/directive'
import GasTable from '@components/BaseNav/PublicBounced/GasComponents/GasTab'
import GasTab from '@components/BaseNav/PublicBounced/GasComponents/GasTab'
import PublicTable from '@components/BaseNav/PublicBounced/GasComponents/PublicTable'
import GasECharts from '@components/BaseNav/PublicBounced/GasComponents/GasECharts'
import GasVideo from '@components/BaseNav/PublicBounced/GasComponents/GasVideo'
export default {
  name: 'PublicBounced',
  components: {
    GasTable,
    GasTab,
    PublicTable,
    GasECharts,
    GasVideo
  },
@@ -37,9 +40,10 @@
    }
  },
  methods: {
    setData (data) {
    setData (data, value) {
      this.displayContent = data
      this.flag = true
      this.value = value
    },
    closePopup () {
      this.flag = false
@@ -51,11 +55,11 @@
<style lang="less" scoped>
.public-bounced {
  z-index: 999;
  position: fixed;
  position: absolute;
  top: 50%;
  left: 50%;
  //transform: translate(-50%, -50%);
  background-color: #0f1432;
  width: 60%;
  background-color: #002432;
  border: 1px #9fc5c8 solid;
  .public-bounced-title {
@@ -84,15 +88,23 @@
    align-items: center;
    justify-content: space-around;
    padding: 12px;
    //width: 100%;
    //height: 100%;
    .public-bounced-content-left {
      //flex: 1;
      //float: left;
      //display: flex;
      flex: 1;
      width: 100%;
      flex-direction: column;
      margin-right: 13px;
    }
    .public-bounced-content-right {
      //flex: 1;
      width: 100%;
      height: 100%;
      //float: left;
      flex: 1;
    }
  }