Mosqkiller/src/views/dashboard/admin/index.vue

178 lines
4.9 KiB
Vue

<template>
<div class="dashboard-editor-container">
<!-- <github-corner></github-corner> -->
<panel-group
@handleSetLineChartData="handleSetLineChartData"
:totalCount="totalCount"
:dailyCount="dailyCount"
:onlineCount="onlineCount"
:offlineCount="offlineCount"
>
</panel-group>
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
<line-chart :chart-data="lineChartData" :xAxis="this.lineChartData.xAxis"></line-chart>
</el-row>
<el-row>
<log-history-table
@history="handleHistoryLine"
></log-history-table>
</el-row>
<!-- <el-row :gutter="32">
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<raddar-chart></raddar-chart>
</div>
</el-col>
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<pie-chart></pie-chart>
</div>
</el-col>
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<bar-chart></bar-chart>
</div>
</el-col>
</el-row> -->
<!-- <el-row :gutter="8"> -->
<!-- <el-col :xs="{span: 24}" :sm="{span: 24}" :md="{span: 24}" :lg="{span: 12}" :xl="{span: 12}" style="padding-right:8px;margin-bottom:30px;">
<transaction-table></transaction-table>
</el-col> -->
<!-- <el-col :xs="{span: 24}" :sm="{span: 12}" :md="{span: 12}" :lg="{span: 6}" :xl="{span: 5}" style="margin-bottom:30px;">
<todo-list></todo-list>
</el-col>
<el-col :xs="{span: 24}" :sm="{span: 12}" :md="{span: 12}" :lg="{span: 6}" :xl="{span: 5}" style="margin-bottom:30px;" >
<box-card></box-card>
</el-col>
</el-row> -->
</div>
</template>
<script>
import GithubCorner from '@/components/GithubCorner'
import PanelGroup from './components/PanelGroup'
import LineChart from './components/LineChart'
import LogHistoryTable from './components/LogHistoryTable'
import RaddarChart from './components/RaddarChart'
import PieChart from './components/PieChart'
import BarChart from './components/BarChart'
import TransactionTable from './components/TransactionTable'
import TodoList from './components/TodoList'
import BoxCard from './components/BoxCard'
import
{
fetchDeviceLogStatistic,
fetchDeviceInfoStatistic
// fetchLogStatisticHistory
} from '@/api/counter'
const lineChartData = {
historyData: {
totalHistoryData: [],
incrementHistoryData: [],
xAxis: []
},
messages: {
totalHistoryData: [200, 192, 120, 144, 160, 130, 140],
incrementHistoryData: [],
xAxis: [1, 2, 3, 4, 5, 6, 7]
},
purchases: {
totalHistoryData: [80, 100, 121, 104, 105, 90, 100]
},
shoppings: {
totalHistoryData: [130, 140, 141, 142, 145, 150, 160],
actualData: [120, 82, 91, 154, 162, 140, 130]
}
}
export default {
name: 'dashboard-admin',
components: {
GithubCorner,
PanelGroup,
LineChart,
LogHistoryTable,
RaddarChart,
PieChart,
BarChart,
TransactionTable,
TodoList,
BoxCard
},
data() {
return {
lineChartData: lineChartData.historyData,
totalCount: 0,
dailyCount: 0,
onlineCount: 0,
offlineCount: 0,
historyList: []
}
},
methods: {
handleSetLineChartData(type) {
this.lineChartData = lineChartData[type]
},
getDeviceInfoStatistic() {
fetchDeviceInfoStatistic().then(response => {
const infoData = response.data
this.onlineCount = infoData['online_count']
this.offlineCount = infoData['offline_count']
})
},
getDeviceLogStatistic() {
fetchDeviceLogStatistic().then(response => {
const logData = response.data
this.totalCount = logData['total_count']
this.dailyCount = logData['daily_count']
})
},
handleHistoryLine(historyList) {
var totalList = []
var dateList = []
historyList.forEach((item, index) => {
totalList.push(item.total)
dateList.push(item.date.substr(5))
})
this.lineChartData.totalHistoryData = totalList.reverse()
this.lineChartData.xAxis = dateList.reverse()
// console.log(this.lineChartData.totalHistoryData)
}
// getLogStatisticHistory() {
// fetchLogStatisticHistory().then(response => {
// var totalList = []
// this.historyList = response.data.results
// this.historyList.forEach((item, index) => {
// totalList.push(item.total)
// })
// this.lineChartData.totalHistoryData = totalList
// })
// }
},
created() {
this.getDeviceInfoStatistic()
this.getDeviceLogStatistic()
// this.getLogStatisticHistory()
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.dashboard-editor-container {
padding: 32px;
background-color: rgb(240, 242, 245);
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
}
</style>