派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-04-01 fa8fee96d1ca9341d54c86c6c75cf578761d7b2f
修改文件名称
1个文件已删除
1个文件已修改
3 文件已重命名
44 ■■■■ 已修改文件
src/components/BaseNav/PublicBounced/GasComponents/ECharts.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/EchartsInfo.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/GasTable.vue 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/PublicTab.vue 24 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/PublicBounced.vue 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/BaseNav/PublicBounced/GasComponents/ECharts.vue
File was renamed from src/components/BaseNav/PublicBounced/GasComponents/GasECharts.vue
@@ -4,7 +4,7 @@
<script>
export default {
  name: 'GasECharts',
  name: 'ECharts',
  methods: {
    drawChart: function () {
      const myChart = this.$echarts.init(this.$refs.main)
@@ -88,7 +88,7 @@
        xAxis: {
          type: 'category',
          boundaryGap: false,
          data: ['12:00:01', '12:00:02', '12:00:03', '12:00:04', '12:00:05', '12:00:06', '12:00:07'],
          data: ['2021.01.01', '2021.01.02', '2021.01.03', '2021.01.04', '2021.01.05', '2021.01.06', '2021.01.07'],
          axisLabel: { // x轴全部显示
            rotate: 20,
            interval: 0,
@@ -178,6 +178,6 @@
    margin: 0;
    padding: 0;
    border: 1px solid #396d83;
    /*margin: 10px 10px 10px 10px;*/
    margin: 10px 10px 10px 10px;
  }
</style>
src/components/BaseNav/PublicBounced/GasComponents/EchartsInfo.vue
File was renamed from src/components/BaseNav/PublicBounced/GasComponents/EchartsTab.vue
@@ -9,7 +9,7 @@
<script>
export default {
  name: 'EchartsTab',
  name: 'EchartsInfo',
  props: ['displayContent'],
  data () {
    return {}
src/components/BaseNav/PublicBounced/GasComponents/GasTable.vue
src/components/BaseNav/PublicBounced/GasComponents/PublicTab.vue
File was renamed from src/components/BaseNav/PublicBounced/GasComponents/GasTabs.vue
@@ -5,30 +5,30 @@
        <div class="border_corner border_corner_left_bottom"></div>
        <div class="border_corner border_corner_right_bottom"></div>
        <el-tabs type="card" v-model="activeName">
            <el-tab-pane label="实试数据" name="first">
                <EchartsTab></EchartsTab>
                <GasECharts></GasECharts>
            <el-tab-pane label="实试数据" name="first"></el-tab-pane>
            <el-tab-pane label="日数据" name="second">
                <EchartsInfo></EchartsInfo>
                <ECharts></ECharts>
            </el-tab-pane>
            <el-tab-pane label="日数据" name="second"><EchartsTab></EchartsTab><GasECharts></GasECharts></el-tab-pane>
            <el-tab-pane label="月数据" name="third"><EchartsTab></EchartsTab><GasECharts></GasECharts></el-tab-pane>
            <el-tab-pane label="人工数据" name="fourth"><EchartsTab></EchartsTab><GasECharts></GasECharts></el-tab-pane>
            <el-tab-pane label="月数据" name="third"></el-tab-pane>
            <el-tab-pane label="人工数据" name="fourth"></el-tab-pane>
        </el-tabs>
    </div>
</template>
<script>
import GasECharts from './GasECharts'
import EchartsTab from './EchartsTab'
import ECharts from './ECharts'
import EchartsInfo from './EchartsInfo'
export default {
  name: 'GasTabs',
  name: 'PublicTab',
  components: {
    GasECharts,
    EchartsTab
    ECharts,
    EchartsInfo
  },
  data () {
    return {
      activeName: 'first'
      activeName: 'second'
    }
  },
  methods: {
src/components/BaseNav/PublicBounced/PublicBounced.vue
@@ -9,7 +9,8 @@
        <GasTab :displayContentTab="displayContentTab" ></GasTab>
        <div class="public-bounced-content-left-bottom">
          <PublicTable v-if="value === 'gufei'"></PublicTable>
          <GasECharts v-else></GasECharts>
<!--          <GasECharts v-else></GasECharts>-->
          <PublicTab v-else></PublicTab>
        </div>
      </div>
      <div class="public-bounced-content-right">
@@ -24,17 +25,18 @@
import '@/components/BaseNav/SolidWaste/directive/dir'
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 GasECharts from '@components/BaseNav/PublicBounced/GasComponents/GasECharts'
import GasVideo from '@components/BaseNav/PublicBounced/GasComponents/GasVideo'
// import GasTabs from './GasComponents/GasTabs'
import PublicTab from './GasComponents/PublicTab'
export default {
  name: 'PublicBounced',
  components: {
    GasTab,
    PublicTable,
    GasECharts,
    GasVideo
    // GasECharts,
    GasVideo,
    PublicTab
  },
  data () {
    return {