| | |
| | | <template> |
| | | <div class="dashboard-editor-container"> |
| | | |
| | | <panel-group @handleSetLineChartData="handleSetLineChartData" /> |
| | | |
| | | <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;"> |
| | | <el-row style="padding:16px 16px 0;margin-bottom:32px;"> |
| | | <line-chart :chart-data="lineChartData" /> |
| | | </el-row> |
| | | |
| | |
| | | <!--<div class="live_number">35</div>--> |
| | | <!--</div>--> |
| | | </div> |
| | | |
| | | </template> |
| | | |
| | | <script> |
| | | import PanelGroup from './dashboard/PanelGroup' |
| | | import LineChart from './dashboard/LineChart' |
| | | import RaddarChart from './dashboard/RaddarChart' |
| | | import PieChart from './dashboard/PieChart' |
| | | import BarChart from './dashboard/BarChart' |
| | | import PanelGroup from "./dashboard/PanelGroup"; |
| | | import LineChart from "./dashboard/LineChart"; |
| | | import RaddarChart from "./dashboard/RaddarChart"; |
| | | import PieChart from "./dashboard/PieChart"; |
| | | import BarChart from "./dashboard/BarChart"; |
| | | |
| | | const lineChartData = { |
| | | newVisitis: { |
| | |
| | | expectedData: [130, 140, 141, 142, 145, 150, 160], |
| | | actualData: [120, 82, 91, 154, 162, 140, 130] |
| | | } |
| | | } |
| | | }; |
| | | |
| | | export default { |
| | | name: 'Index', |
| | | name: "Index", |
| | | components: { |
| | | PanelGroup, |
| | | LineChart, |
| | |
| | | data() { |
| | | return { |
| | | lineChartData: lineChartData.newVisitis |
| | | } |
| | | }; |
| | | }, |
| | | methods: { |
| | | handleSetLineChartData(type) { |
| | | this.lineChartData = lineChartData[type] |
| | | this.lineChartData = lineChartData[type]; |
| | | } |
| | | } |
| | | } |
| | | }; |
| | | </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; |
| | | } |
| | |
| | | } |
| | | @keyframes fade { |
| | | from { |
| | | opacity: 1.0; |
| | | opacity: 1; |
| | | } |
| | | 50% { |
| | | opacity: 0.4; |
| | | } |
| | | to { |
| | | opacity: 1.0; |
| | | opacity: 1; |
| | | } |
| | | } |
| | | |
| | | @-webkit-keyframes fade { |
| | | from { |
| | | opacity: 1.0; |
| | | opacity: 1; |
| | | } |
| | | 50% { |
| | | opacity: 0.4; |
| | | } |
| | | to { |
| | | opacity: 1.0; |
| | | opacity: 1; |
| | | } |
| | | } |
| | | </style> |