index_v1.vue 3.25 KB
<template>
  <div class="dashboard-editor-container">

    <panel-group @handleSetLineChartData="handleSetLineChartData" ref="zong" />
    <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;margin-top:32px;display: flex;justify-content: space-around;">
      <div style="width:50%;">
        <Ex1 ref="bing"></Ex1>
      </div>
      <div style="width:50%;">
        <Ex3 ref="zhu"></Ex3>
      </div>
      <!-- <line-chart :chart-data="lineChartData" /> -->
    </el-row>
    <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
      <Ex2 ref="xian"></Ex2> 
    </el-row>
    <!-- <el-divider content-position="left">决策节点通过率分析</el-divider> -->
    <!-- <el-row :gutter="32">
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <raddar-chart />
        </div>
      </el-col>
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <pie-chart />
        </div>
      </el-col>
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <bar-chart />
        </div>
      </el-col>
    </el-row> -->


  </div>
</template>

<script>
import PanelGroup from './dashboard/PanelGroup'
import Ex1 from './dashboard/ex1.vue'
import Ex2 from './dashboard/ex2.vue'
import { approval, todayApproval, passAnalysis, applyNum } from "@/api/postList/list";
import Ex3 from "./dashboard/ex3.vue";
// import LineChart from './dashboard/LineChart'
// import RaddarChart from './dashboard/RaddarChart'
// import PieChart from './dashboard/PieChart'
// import BarChart from './dashboard/BarChart'

const lineChartData = {
  newVisitis: {
    expectedData: [100, 120, 161, 134, 105, 160, 165],
    actualData: [120, 82, 91, 154, 162, 140, 145]
  },
  messages: {
    expectedData: [200, 192, 120, 144, 160, 130, 140],
    actualData: [180, 160, 151, 106, 145, 150, 130]
  },
  purchases: {
    expectedData: [80, 100, 121, 104, 105, 90, 100],
    actualData: [120, 90, 100, 138, 142, 130, 130]
  },
  shoppings: {
    expectedData: [130, 140, 141, 142, 145, 150, 160],
    actualData: [120, 82, 91, 154, 162, 140, 130]
  }
}

export default {
  name: 'Index',
  components: {
    PanelGroup,
    Ex1,
    Ex2,
    Ex3
},
  data() {
    return {
      lineChartData: lineChartData.newVisitis,
    }
  },
  created() {
    this.getList();
  },
  methods: {
    handleSetLineChartData(type) {
      this.lineChartData = lineChartData[type]
    },
    getList() {
      approval().then(res => {
        this.$refs.zong.initData(res.data.name,res.data.data)
      });
      todayApproval().then(res => {
        this.$refs.bing.initData(res.data.name,res.data.data)
      });
      passAnalysis().then(res => {
        this.$refs.zhu.initData(res.data.name,res.data.bigDecimalsData)
      });
      applyNum().then(res => {
        this.$refs.xian.initEcharts(res.data.name,res.data.data)
      });
    }
  }
}
</script>

<style lang="scss" scoped>
.dashboard-editor-container {
  padding: 32px;
  background-color: rgb(240, 242, 245);
  position: relative;

  .chart-wrapper {
    background: #fff;
    padding: 16px 16px 0;
    margin-bottom: 32px;
  }
}

@media (max-width:1024px) {
  .chart-wrapper {
    padding: 8px;
  }
}

.el-divider {
  background-color: #b6d7fb;
  height: 2px;
}
</style>