Blame view

src/components/VisualPortal/HAreaChart/index.vue 632 Bytes
be009217   monkeyhouyi   处理,通知公告,任务中心
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <template>
    <el-card shadow="never" class="portal-eChart-box">
      <div slot="header" class="portal-common-title">
        <span>{{title}}</span>
      </div>
      <div class="eChart-box-body">
        <div ref="chart" id="chart" v-show="!isEmpty"></div>
        <div class="portal-common-noData portal-common-noData-eChart" v-show="isEmpty">
          <img src="@/assets/images/portal-nodata.png" alt="" class="noData-img">
          <p class="noData-txt">暂无数据</p>
        </div>
      </div>
    </el-card>
  </template>
  <script>
  import echartMixin from '@/components/VisualPortal/mixins'
  export default {
    mixins: [echartMixin]
  }
  </script>