<template> <div class="dashboard-container"> <div class="dashboard-editor-container"> <panel-group @handleSetLineChartData="handleSetLineChartData" /> <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;"> <line-chart :chart-data="lineChartData" /> </el-row> </div> </div> </template> <script> import PanelGroup from './dashboard/PanelGroup' import LineChart from './dashboard/LineChart' const lineChartData = { newVisitis: { dataArr: [100, 120, 161, 134, 105, 160, 165], dataLable: '每日访问' }, messages: { dataArr: [200, 192, 120, 144, 160, 130, 140], dataLable: '每日新增客户' }, purchases: { dataArr: [80, 100, 121, 104, 105, 90, 100], dataLable: '每日新上产品' }, shoppings: { dataArr: [130, 140, 141, 142, 145, 150, 160], dataLable: '每日咨询情况' } } export default { name: 'Dashboard', components: { PanelGroup, LineChart }, data() { return { lineChartData: lineChartData.newVisitis } }, methods: { handleSetLineChartData(type) { this.lineChartData = lineChartData[type] } } } </script> <style rel="stylesheet/scss" lang="scss" scoped> .dashboard-editor-container { padding: 32px; background-color: rgb(240, 242, 245); position: relative; .github-corner { position: absolute; top: 0; border: 0; right: 0; } .chart-wrapper { background: #fff; padding: 16px 16px 0; margin-bottom: 32px; } } @media (max-width:1024px) { .chart-wrapper { padding: 8px; } } </style>