|
@@ -114,6 +114,65 @@
|
|
|
</a-row>
|
|
|
</a-card>
|
|
|
</a-col>
|
|
|
+
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-card style="margin: 10px" title="访客数设备分布">
|
|
|
+ <a-row class="r5" :gutter="[20,20]">
|
|
|
+ <a-col :span="24">
|
|
|
+ <DeviceStatsUV :deviceStats="deviceStats"></DeviceStatsUV>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-card>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-card style="margin: 10px" title="浏览量设备分布">
|
|
|
+ <a-row class="r5" :gutter="[20,20]">
|
|
|
+ <a-col :span="24">
|
|
|
+ <DeviceStatsPV :deviceStats="deviceStats"></DeviceStatsPV>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-card>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <!-- 最多访问TOP10 -->
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-card style="margin: 10px" title="最多访问TOP10">
|
|
|
+ <a-row class="r5" :gutter="[20,20]">
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-table
|
|
|
+ :columns="mostAccessColumns"
|
|
|
+ :data-source="mostAccessDatasource"
|
|
|
+ size="middle"
|
|
|
+ rowKey="type"
|
|
|
+ :pagination="false">
|
|
|
+ <template #bodyCell="{ column, record, index, text }">
|
|
|
+ <template v-if="column.key ==='pagePathSlot' ">
|
|
|
+ <a-popover>
|
|
|
+ <template slot="content">
|
|
|
+ {{ text }}
|
|
|
+ </template>
|
|
|
+ <a :href="text" target="_blank">
|
|
|
+ <div
|
|
|
+ style="width: 700px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
|
|
|
+ {{ text }}
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </a-popover>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.key ==='centerSlot' ">
|
|
|
+ <span style="margin-left: 20px;">{{ text }}</span>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.key ==='avgTimeOnPageSlot' ">
|
|
|
+ <span style="margin-left: 30px;">{{ text }} s</span>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-card>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <!-- 来源媒介 -->
|
|
|
<a-col :span="24">
|
|
|
<a-card style="margin: 10px" title="来源媒介">
|
|
|
<a-row class="r5" :gutter="[20,20]">
|
|
@@ -169,42 +228,6 @@
|
|
|
</a-row>
|
|
|
</a-card>
|
|
|
</a-col>
|
|
|
- <a-col :span="24">
|
|
|
- <a-card style="margin: 10px" title="最多访问TOP10">
|
|
|
- <a-row class="r5" :gutter="[20,20]">
|
|
|
- <a-col :span="24">
|
|
|
- <a-table
|
|
|
- :columns="mostAccessColumns"
|
|
|
- :data-source="mostAccessDatasource"
|
|
|
- size="middle"
|
|
|
- rowKey="type"
|
|
|
- :pagination="false">
|
|
|
- <template #bodyCell="{ column, record, index, text }">
|
|
|
- <template v-if="column.key ==='pagePathSlot' ">
|
|
|
- <a-popover>
|
|
|
- <template slot="content">
|
|
|
- {{ text }}
|
|
|
- </template>
|
|
|
- <a :href="text" target="_blank">
|
|
|
- <div
|
|
|
- style="width: 700px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
|
|
|
- {{ text }}
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </a-popover>
|
|
|
- </template>
|
|
|
- <template v-if="column.key ==='centerSlot' ">
|
|
|
- <span style="margin-left: 20px;">{{ text }}</span>
|
|
|
- </template>
|
|
|
- <template v-if="column.key ==='avgTimeOnPageSlot' ">
|
|
|
- <span style="margin-left: 30px;">{{ text }} s</span>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </a-table>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-card>
|
|
|
- </a-col>
|
|
|
</a-row>
|
|
|
</a-spin>
|
|
|
</template>
|
|
@@ -212,9 +235,11 @@
|
|
|
<script lang="ts" name="data-trafficAnalysis" setup>
|
|
|
import selectSite from "@/components/Adweb/selectSite.vue";
|
|
|
import areaChart from "./chart/areaChart.vue";
|
|
|
-import { reactive, ref } from "vue";
|
|
|
+import { computed, reactive, ref } from "vue";
|
|
|
import { getAction } from "@/api/manage/manage";
|
|
|
import MapAdweb from "@/components/chart/mapAdweb.vue";
|
|
|
+import DeviceStatsPV from "./components/DeviceStatsPV.vue";
|
|
|
+import DeviceStatsUV from "./components/DeviceStatsUV.vue";
|
|
|
import "flag-icon-css/css/flag-icons.css";
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
@@ -354,6 +379,7 @@ function reloadData() {
|
|
|
getCountryMapData();
|
|
|
getMediaList();
|
|
|
getMostAccessList();
|
|
|
+ getDeviceStats();
|
|
|
}
|
|
|
|
|
|
const flowIndexNums = ref({
|
|
@@ -446,7 +472,6 @@ const getCountryMapData = async () => {
|
|
|
name: entry.countryName,
|
|
|
value: entry.totalUsers
|
|
|
}));
|
|
|
- console.log("countryMapData", countryMapData.value);
|
|
|
}
|
|
|
} catch (error) {
|
|
|
console.error(error);
|
|
@@ -454,6 +479,22 @@ const getCountryMapData = async () => {
|
|
|
};
|
|
|
const mediaDatasource = ref([]);
|
|
|
|
|
|
+const deviceStats = ref([]); // 设备统计数据
|
|
|
+
|
|
|
+// 新增获取设备统计数据的函数
|
|
|
+const getDeviceStats = async () => {
|
|
|
+ try {
|
|
|
+ const res = await getAction("/dmp-data/device/stats", queryParam);
|
|
|
+ if (res.code === 200) {
|
|
|
+ deviceStats.value = res.result; // Update the deviceStats with the response
|
|
|
+ } else {
|
|
|
+ deviceStats.value = []; // Reset if there's an error
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.error(error);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
//来源媒介列表、最多访问top10列表
|
|
|
const getMediaList = async () => {
|
|
|
try {
|
|
@@ -487,9 +528,7 @@ const rangeDate = ref([]);
|
|
|
|
|
|
const onChangeDatePicker = (date, dateString) => {
|
|
|
if (dateString.length > 0) {
|
|
|
- console.log("rangeDate:", rangeDate.value);
|
|
|
rangeDate.value = date;
|
|
|
- console.log("date:", date);
|
|
|
queryParam.start = dateString[0];
|
|
|
queryParam.end = dateString[1];
|
|
|
queryParam.dateType = undefined;
|