164 lines
4.8 KiB
Vue
164 lines
4.8 KiB
Vue
<template>
|
|
<div class="page-container">
|
|
<a-row :gutter="24">
|
|
<a-col :span="6">
|
|
<TopCard
|
|
title="设备数量"
|
|
:img="getImage('/media/dashboard-1.png')"
|
|
:footer="deviceFooter"
|
|
:value="deviceTotal"
|
|
/>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<TopCard
|
|
title="通道数量"
|
|
:img="getImage('/media/dashboard-2.png')"
|
|
:footer="channelFooter"
|
|
:value="channelTotal"
|
|
/>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<TopCard
|
|
title="录像数量"
|
|
:img="getImage('/media/dashboard-3.png')"
|
|
:footer="aggFooter"
|
|
:value="aggTotal"
|
|
/>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<TopCard
|
|
title="播放中数量"
|
|
tooltip="当前正在播放的通道数量之和"
|
|
:img="getImage('/media/dashboard-4.png')"
|
|
:footer="aggPlayingFooter"
|
|
:value="aggPlayingTotal"
|
|
/>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<Card title="播放数量(人次)" :chartData="chartData" />
|
|
</a-col>
|
|
</a-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import TopCard from '@/views/media/DashBoard/components/TopCard.vue';
|
|
import Card from '@/views/media/DashBoard/components/Card.vue';
|
|
import { getImage } from '@/utils/comm';
|
|
import homeApi from '@/api/media/home';
|
|
import dashboardApi from '@/api/media/dashboard';
|
|
import type { Footer } from '@/views/media/DashBoard/typings';
|
|
import encodeQuery from '@/utils/encodeQuery';
|
|
import { timestampFormat } from '@/utils/utils';
|
|
|
|
// 设备
|
|
const deviceFooter = ref<Footer[]>([]);
|
|
const deviceTotal = ref(0);
|
|
const getDeviceData = () => {
|
|
homeApi.deviceCount({}).then((res) => {
|
|
deviceTotal.value = res.result;
|
|
});
|
|
|
|
homeApi
|
|
.deviceCount(encodeQuery({ terms: { state: 'online' } }))
|
|
.then((res) => {
|
|
deviceFooter.value[0] = {
|
|
title: '在线',
|
|
value: res.result,
|
|
status: 'success',
|
|
};
|
|
});
|
|
homeApi
|
|
.deviceCount(encodeQuery({ terms: { state: 'offline' } }))
|
|
.then((res) => {
|
|
deviceFooter.value[1] = {
|
|
title: '离线',
|
|
value: res.result,
|
|
status: 'error',
|
|
};
|
|
});
|
|
};
|
|
getDeviceData();
|
|
|
|
// 通道
|
|
const channelFooter = ref<Footer[]>([]);
|
|
const channelTotal = ref(0);
|
|
const getChannelData = () => {
|
|
homeApi.channelCount({}).then((res) => {
|
|
channelTotal.value = res.result;
|
|
});
|
|
homeApi
|
|
.channelCount({ terms: [{ column: 'status', value: 'online' }] })
|
|
.then((res) => {
|
|
channelFooter.value[0] = {
|
|
title: '在线',
|
|
value: res.result,
|
|
status: 'success',
|
|
};
|
|
});
|
|
homeApi
|
|
.channelCount({ terms: [{ column: 'status$not', value: 'online' }] })
|
|
.then((res) => {
|
|
channelFooter.value[1] = {
|
|
title: '离线',
|
|
value: res.result,
|
|
status: 'error',
|
|
};
|
|
});
|
|
};
|
|
getChannelData();
|
|
|
|
// 录像
|
|
const aggFooter = ref<Footer[]>([]);
|
|
const aggTotal = ref(0);
|
|
const getAggData = () => {
|
|
dashboardApi.agg().then((res) => {
|
|
aggTotal.value = res.result.total;
|
|
aggFooter.value.push({
|
|
title: '总时长',
|
|
value: timestampFormat(res.result.duration),
|
|
});
|
|
});
|
|
};
|
|
getAggData();
|
|
|
|
// 播放中
|
|
const aggPlayingFooter = ref<Footer[]>([]);
|
|
const aggPlayingTotal = ref(0);
|
|
const getAggPlayingData = () => {
|
|
dashboardApi.aggPlaying().then((res) => {
|
|
aggTotal.value = res.result.playingTotal;
|
|
aggPlayingFooter.value.push({
|
|
title: '播放人数',
|
|
value: res.result.playerTotal,
|
|
});
|
|
});
|
|
};
|
|
getAggPlayingData();
|
|
|
|
/**
|
|
* 获取播放数量(人次)
|
|
*/
|
|
const chartData = ref([]);
|
|
const getPlayCount = async () => {
|
|
const params = {};
|
|
dashboardApi.getPlayCount(params).then((res) => {
|
|
let result: any = [];
|
|
res.result.forEach((item: any) => {
|
|
result = [...result, ...item.data];
|
|
});
|
|
chartData.value = result.map((m: any) => ({
|
|
x: m.timeString,
|
|
value: m.value,
|
|
}));
|
|
});
|
|
};
|
|
getPlayCount();
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.page-container {
|
|
padding: 24px;
|
|
}
|
|
</style>
|