<template>
|
<div class="dashboard-editor-container">
|
<panel-group @handleSetLineChartData="handleSetLineChartData" />
|
|
<el-row style="padding:16px 16px 0;margin-bottom:32px;">
|
<line-chart :chart-data="lineChartData" />
|
</el-row>
|
|
<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 class="live">-->
|
<!--<div class="live_content">实时报警</div>-->
|
<!--<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";
|
|
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,
|
LineChart,
|
RaddarChart,
|
PieChart,
|
BarChart
|
},
|
data() {
|
return {
|
lineChartData: lineChartData.newVisitis
|
};
|
},
|
methods: {
|
handleSetLineChartData(type) {
|
this.lineChartData = lineChartData[type];
|
}
|
}
|
};
|
</script>
|
|
<style lang="scss" scoped>
|
.dashboard-editor-container {
|
padding: 32px;
|
position: relative;
|
|
.chart-wrapper {
|
padding: 16px 16px 0;
|
margin-bottom: 32px;
|
}
|
}
|
|
@media (max-width: 1024px) {
|
.chart-wrapper {
|
padding: 8px;
|
}
|
}
|
.live {
|
position: fixed;
|
right: 0px;
|
top: 70px;
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: center;
|
width: 100px;
|
height: 60px;
|
background-color: red;
|
animation: fade 600ms infinite;
|
-webkit-animation: fade 600ms infinite;
|
}
|
.live_content {
|
font-size: 18px;
|
color: white;
|
font-weight: bold;
|
}
|
.live_number {
|
font-size: 32px;
|
color: white;
|
font-weight: bolder;
|
}
|
@keyframes fade {
|
from {
|
opacity: 1;
|
}
|
50% {
|
opacity: 0.4;
|
}
|
to {
|
opacity: 1;
|
}
|
}
|
|
@-webkit-keyframes fade {
|
from {
|
opacity: 1;
|
}
|
50% {
|
opacity: 0.4;
|
}
|
to {
|
opacity: 1;
|
}
|
}
|
</style>
|