|
@@ -3,15 +3,17 @@
|
|
<!-- 站点选择和时间筛选 -->
|
|
<!-- 站点选择和时间筛选 -->
|
|
<a-row class="r1">
|
|
<a-row class="r1">
|
|
<a-col :span="6">
|
|
<a-col :span="6">
|
|
- <span class="t1">站点:</span>
|
|
|
|
- <select-site @comMethods="changeSite" selectWidth="300px" />
|
|
|
|
|
|
+ <div class="choose-site">
|
|
|
|
+ <span class="t1">站点:</span>
|
|
|
|
+ <select-site @set-site-info="changeSite" select-width="100%" />
|
|
|
|
+ </div>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :span="6">
|
|
|
|
|
|
+ <a-col :span="8">
|
|
<span class="t1">统计时间:</span>
|
|
<span class="t1">统计时间:</span>
|
|
<a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate"
|
|
<a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate"
|
|
style="width:70%" />
|
|
style="width:70%" />
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :span="12">
|
|
|
|
|
|
+ <a-col :span="10">
|
|
<a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间
|
|
<a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间
|
|
</a-button>
|
|
</a-button>
|
|
<a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''"
|
|
<a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''"
|
|
@@ -194,16 +196,8 @@
|
|
{{ record.type.split("/")[1] }}
|
|
{{ record.type.split("/")[1] }}
|
|
</a-popover>
|
|
</a-popover>
|
|
</template>
|
|
</template>
|
|
- <template v-if="column.key === 'avgPageNumSlot' ">
|
|
|
|
- <span
|
|
|
|
- style="margin-left: 20px;"></span>{{ record.pageViewsPerSession * record.sessions
|
|
|
|
- }}
|
|
|
|
- </template>
|
|
|
|
- <template v-if="column.key === 'centerSlot' ">
|
|
|
|
- <span style="margin-left: 20px;">{{ text }}</span>
|
|
|
|
- </template>
|
|
|
|
<template v-if="column.key === 'avgSessionDurationSlot' ">
|
|
<template v-if="column.key === 'avgSessionDurationSlot' ">
|
|
- <span style="margin-left: 30px;">{{ text }} s</span>
|
|
|
|
|
|
+ <span style="margin-left: 30px;">{{ record.avgSessionDuration }} s</span>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -255,14 +249,14 @@
|
|
<script lang="ts" name="data-trafficAnalysis" setup>
|
|
<script lang="ts" name="data-trafficAnalysis" setup>
|
|
import selectSite from "@/components/Adweb/selectSite.vue";
|
|
import selectSite from "@/components/Adweb/selectSite.vue";
|
|
import areaChart from "./chart/areaChart.vue";
|
|
import areaChart from "./chart/areaChart.vue";
|
|
-import { reactive, ref, watch } from "vue";
|
|
|
|
|
|
+import { onMounted, reactive, ref, watch } from "vue";
|
|
import { getAction } from "@/api/manage/manage";
|
|
import { getAction } from "@/api/manage/manage";
|
|
import moment from "moment";
|
|
import moment from "moment";
|
|
import MapAdweb from "@/components/chart/mapAdweb.vue";
|
|
import MapAdweb from "@/components/chart/mapAdweb.vue";
|
|
|
|
|
|
-const siteList = ref([]);
|
|
|
|
-const selectSiteInfo = ref({});
|
|
|
|
const queryParam = reactive<any>({});
|
|
const queryParam = reactive<any>({});
|
|
|
|
+queryParam.limit = 10;
|
|
|
|
+queryParam.siteCode = localStorage.getItem("siteCode");
|
|
const loading = ref(false);
|
|
const loading = ref(false);
|
|
const chartheight = ref(400);
|
|
const chartheight = ref(400);
|
|
const chartDetailDataCol = ref([
|
|
const chartDetailDataCol = ref([
|
|
@@ -291,12 +285,14 @@ const chartDetailDataCol = ref([
|
|
const mediaListColumns = ref([
|
|
const mediaListColumns = ref([
|
|
{
|
|
{
|
|
title: "来源",
|
|
title: "来源",
|
|
|
|
+ key: "typeSlotFirst",
|
|
scopedSlots: {
|
|
scopedSlots: {
|
|
customRender: "typeSlotFirst"
|
|
customRender: "typeSlotFirst"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "媒介",
|
|
title: "媒介",
|
|
|
|
+ key: "typeSlotLast",
|
|
scopedSlots: {
|
|
scopedSlots: {
|
|
filterDropdown: "filterDropdown",
|
|
filterDropdown: "filterDropdown",
|
|
filterIcon: "filterIcon",
|
|
filterIcon: "filterIcon",
|
|
@@ -305,54 +301,39 @@ const mediaListColumns = ref([
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "访客数(UV)",
|
|
title: "访客数(UV)",
|
|
- dataIndex: "users",
|
|
|
|
- defaultSortOrder: "descend",
|
|
|
|
- sorter: (a, b) => a.users - b.users,
|
|
|
|
- scopedSlots: {
|
|
|
|
- customRender: "centerSlot"
|
|
|
|
- }
|
|
|
|
|
|
+ dataIndex: "totalUsers",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "占比",
|
|
title: "占比",
|
|
- dataIndex: "userProportion"
|
|
|
|
|
|
+ dataIndex: "totalUsersProportion"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "新访客数",
|
|
title: "新访客数",
|
|
dataIndex: "newUsers",
|
|
dataIndex: "newUsers",
|
|
- sortDirections: ["descend", "ascend"],
|
|
|
|
- sorter: (a, b) => a.newUsers - b.newUsers,
|
|
|
|
- scopedSlots: {
|
|
|
|
- customRender: "centerSlot"
|
|
|
|
- }
|
|
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "新客占比",
|
|
title: "新客占比",
|
|
- customRender: function(text, record, index) {
|
|
|
|
- return (record.newUsers * 100 / record.users).toFixed(2) + " %";
|
|
|
|
- }
|
|
|
|
|
|
+ dataIndex: "newUsersRatio"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "浏览量(PV)",
|
|
title: "浏览量(PV)",
|
|
- scopedSlots: {
|
|
|
|
- customRender: "avgPageNumSlot"
|
|
|
|
- }
|
|
|
|
|
|
+ dataIndex: "pageViews",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "平均访问页面数",
|
|
title: "平均访问页面数",
|
|
dataIndex: "pageViewsPerSession",
|
|
dataIndex: "pageViewsPerSession",
|
|
- sortDirections: ["descend", "ascend"],
|
|
|
|
- sorter: (a, b) => a.pageviewsPerSession - b.pageviewsPerSession,
|
|
|
|
- scopedSlots: {
|
|
|
|
- customRender: "centerSlot"
|
|
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: "会话数",
|
|
|
|
+ dataIndex: "sessions",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "平均会话时长",
|
|
title: "平均会话时长",
|
|
- dataIndex: "avgSessionDuration",
|
|
|
|
- sortDirections: ["descend", "ascend"],
|
|
|
|
|
|
+ key: "avgSessionDurationSlot",
|
|
|
|
+ sortDirections: ['descend', 'ascend'],
|
|
sorter: (a, b) => a.avgSessionDuration - b.avgSessionDuration,
|
|
sorter: (a, b) => a.avgSessionDuration - b.avgSessionDuration,
|
|
scopedSlots: {
|
|
scopedSlots: {
|
|
- customRender: "avgSessionDurationSlot"
|
|
|
|
|
|
+ customRender: 'avgSessionDurationSlot',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]);
|
|
]);
|
|
@@ -378,7 +359,7 @@ const mostAccessColumns = ref([
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: "浏览量占比",
|
|
title: "浏览量占比",
|
|
- dataIndex: "accessProportion",
|
|
|
|
|
|
+ dataIndex: "pvProportion",
|
|
width: 160,
|
|
width: 160,
|
|
scopedSlots: {
|
|
scopedSlots: {
|
|
customRender: "centerSlot"
|
|
customRender: "centerSlot"
|
|
@@ -395,20 +376,15 @@ const mostAccessColumns = ref([
|
|
// },
|
|
// },
|
|
]);
|
|
]);
|
|
|
|
|
|
-function changeSite(value, e) {
|
|
|
|
- selectSiteInfo.value = e.data.attrs.info;
|
|
|
|
- queryParam.siteId = selectSiteInfo.id;
|
|
|
|
- reloadData(queryParam.siteId);
|
|
|
|
|
|
+function changeSite(selectedSiteInfo: any) {
|
|
|
|
+ queryParam.siteCode = selectedSiteInfo.code;
|
|
|
|
+ localStorage.setItem("siteCode", queryParam.siteCode);
|
|
|
|
+ reloadData();
|
|
}
|
|
}
|
|
|
|
|
|
//重新刷新页面数据
|
|
//重新刷新页面数据
|
|
-function reloadData(value) {
|
|
|
|
|
|
+function reloadData() {
|
|
loading.value = true;
|
|
loading.value = true;
|
|
- for (let i in siteList.value) {
|
|
|
|
- if (value === siteList[i].id) {
|
|
|
|
- localStorage.setItem("siteCode", siteList[i].code);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
getFlowIndexNumber();
|
|
getFlowIndexNumber();
|
|
getCountryMapData();
|
|
getCountryMapData();
|
|
getMediaList();
|
|
getMediaList();
|
|
@@ -504,7 +480,7 @@ const mediaDatasource = ref([]);
|
|
//来源媒介列表、最多访问top10列表
|
|
//来源媒介列表、最多访问top10列表
|
|
const getMediaList = async () => {
|
|
const getMediaList = async () => {
|
|
try {
|
|
try {
|
|
- const res = await getAction("/datacenter/sourcemedia/list", queryParam);
|
|
|
|
|
|
+ const res = await getAction("/ga-data/source-medium/stats", queryParam);
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
mediaDatasource.value = res.result;
|
|
mediaDatasource.value = res.result;
|
|
} else {
|
|
} else {
|
|
@@ -519,7 +495,8 @@ const mostAccessDatasource = ref([]);
|
|
//
|
|
//
|
|
const getMostAccessList = async () => {
|
|
const getMostAccessList = async () => {
|
|
try {
|
|
try {
|
|
- const res = await getAction("/datacenter/mostaccess/list", queryParam);
|
|
|
|
|
|
+ const res = await getAction("/ga-data/page-path/stats", queryParam);
|
|
|
|
+ console.log("res", res);
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
mostAccessDatasource.value = res.result;
|
|
mostAccessDatasource.value = res.result;
|
|
} else {
|
|
} else {
|
|
@@ -538,7 +515,7 @@ const onChangeDatePciker = (date, dateString) => {
|
|
queryParam.value.start = dateString[0];
|
|
queryParam.value.start = dateString[0];
|
|
queryParam.value.end = dateString[1];
|
|
queryParam.value.end = dateString[1];
|
|
queryParam.value.dateType = undefined;
|
|
queryParam.value.dateType = undefined;
|
|
- reloadData(queryParam.siteId);
|
|
|
|
|
|
+ reloadData();
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
|
|
@@ -564,13 +541,17 @@ const setTime = (time) => {
|
|
rangeDate.value = [moment(), moment()];
|
|
rangeDate.value = [moment(), moment()];
|
|
}
|
|
}
|
|
|
|
|
|
- reloadData(queryParam.siteId);
|
|
|
|
|
|
+ reloadData();
|
|
};
|
|
};
|
|
|
|
|
|
// 监听queryParam的变化,当它变化时重新加载数据
|
|
// 监听queryParam的变化,当它变化时重新加载数据
|
|
-watch(queryParam, (newValue, oldValue) => {
|
|
|
|
- reloadData(queryParam.siteId);
|
|
|
|
-});
|
|
|
|
|
|
+// watch(queryParam, (newValue, oldValue) => {
|
|
|
|
+// reloadData();
|
|
|
|
+// });
|
|
|
|
+
|
|
|
|
+// onMounted(() => {
|
|
|
|
+// reloadData();
|
|
|
|
+// });
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
@@ -614,32 +595,19 @@ watch(queryParam, (newValue, oldValue) => {
|
|
|
|
|
|
.r1 {
|
|
.r1 {
|
|
margin: 20px;
|
|
margin: 20px;
|
|
- display: flex;
|
|
|
|
-
|
|
|
|
- /deep/ .ant-select-selection {
|
|
|
|
- background: transparent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /deep/ .ant-select-selection__clear {
|
|
|
|
- background: transparent;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /deep/ i, /deep/ .ant-calendar-range-picker-separator {
|
|
|
|
|
|
+ .choose-site {
|
|
|
|
+ display: flex;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
.t1 {
|
|
.t1 {
|
|
font-size: 18px;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
|
|
.ant-calendar-picker {
|
|
.ant-calendar-picker {
|
|
margin-right: 20px;
|
|
margin-right: 20px;
|
|
-
|
|
|
|
- /deep/ .ant-input {
|
|
|
|
- background: transparent;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
/deep/ .ant-btn {
|
|
/deep/ .ant-btn {
|
|
background: transparent;
|
|
background: transparent;
|
|
margin-right: 10px;
|
|
margin-right: 10px;
|