|
@@ -6,7 +6,7 @@
|
|
|
<div style="display: flex; align-items: center">
|
|
|
<span class="t1"> 站点: </span>
|
|
|
<select-site @set-site-info="changeUser" selectWidth="300px" />
|
|
|
- <a :href="siteDomain" class="web-link" target="_blank">{{ siteDomain }}</a>
|
|
|
+ <a :href="siteDomain" class="web-link" target="_blank">{{ displaySiteDomain }}</a>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
@@ -137,16 +137,16 @@
|
|
|
</div>
|
|
|
<!-- </router-link>-->
|
|
|
</a-col>
|
|
|
- <template v-if="planType=='SEO'">
|
|
|
+ <template v-if="planType == 'SEO'">
|
|
|
<a-col :span="4" class="border-right">
|
|
|
- <div class="wrap blue">
|
|
|
- <a-spin :spinning="coreInfoLoading">
|
|
|
- <div class="fr">
|
|
|
- <p class="title">SEO目标达成数</p>
|
|
|
- <p>{{ formatNumber(appointWordCount) }}</p>
|
|
|
- </div>
|
|
|
- </a-spin>
|
|
|
- </div>
|
|
|
+ <div class="wrap blue">
|
|
|
+ <a-spin :spinning="coreInfoLoading">
|
|
|
+ <div class="fr">
|
|
|
+ <p class="title">SEO目标达成数</p>
|
|
|
+ <p>{{ formatNumber(appointWordCount) }}</p>
|
|
|
+ </div>
|
|
|
+ </a-spin>
|
|
|
+ </div>
|
|
|
</a-col>
|
|
|
<a-col :span="4" class="border-right">
|
|
|
<div class="wrap blue">
|
|
@@ -171,14 +171,14 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<a-col :span="4" class="border-right">
|
|
|
- <div class="wrap blue">
|
|
|
- <a-spin :spinning="coreInfoLoading">
|
|
|
- <div class="fr">
|
|
|
- <p class="title">本周流量</p>
|
|
|
- <p>{{ formatNumber(thisWeekData.totalUsers) }}</p>
|
|
|
- </div>
|
|
|
- </a-spin>
|
|
|
- </div>
|
|
|
+ <div class="wrap blue">
|
|
|
+ <a-spin :spinning="coreInfoLoading">
|
|
|
+ <div class="fr">
|
|
|
+ <p class="title">本周流量</p>
|
|
|
+ <p>{{ formatNumber(thisWeekData.totalUsers) }}</p>
|
|
|
+ </div>
|
|
|
+ </a-spin>
|
|
|
+ </div>
|
|
|
</a-col>
|
|
|
<a-col :span="4" class="border-right">
|
|
|
<div class="wrap blue">
|
|
@@ -201,7 +201,7 @@
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</template>
|
|
|
-
|
|
|
+
|
|
|
<a-col :span="24" style="margin-top: 10px">
|
|
|
<a-table
|
|
|
class="ant-table-striped"
|
|
@@ -337,6 +337,7 @@
|
|
|
//网站概况
|
|
|
|
|
|
const siteDomain = ref('');
|
|
|
+ const displaySiteDomain = ref('临时链接');
|
|
|
const siteCode = ref('');
|
|
|
const siteStatus = ref(0);
|
|
|
let baseInfo = reactive<any>({});
|
|
@@ -355,7 +356,6 @@
|
|
|
const currentMonthEnquiryCount = ref(0);
|
|
|
const currentWeekEnquiryCount = ref(0);
|
|
|
const totalEnquiryCount = ref(0);
|
|
|
- let flowIndicator = ref({});
|
|
|
let coreDataTable = ref([]);
|
|
|
const coreDataChart = ref({
|
|
|
x: [],
|
|
@@ -381,6 +381,14 @@
|
|
|
function changeUser(selectedParamSiteInfo: any) {
|
|
|
siteCode.value = selectedParamSiteInfo.code;
|
|
|
siteDomain.value = selectedParamSiteInfo.domain;
|
|
|
+
|
|
|
+ // 如果站点域名中包含adweb,则显示临时链接
|
|
|
+ if (!siteDomain.value.includes('adweb')) {
|
|
|
+ displaySiteDomain.value = siteDomain.value;
|
|
|
+ } else {
|
|
|
+ displaySiteDomain.value = '临时链接';
|
|
|
+ }
|
|
|
+
|
|
|
siteStatus.value = selectedParamSiteInfo.status;
|
|
|
|
|
|
getAllInfo();
|
|
@@ -414,15 +422,13 @@
|
|
|
current.value = baseInfo.siteStatus;
|
|
|
isShow.value = true;
|
|
|
planType.value = baseInfo.planType;
|
|
|
- if (planType.value == "SEO") {
|
|
|
- getAction('/seo/seoKeywordsRank/comprehensiveInfo?siteCode='+ siteCode.value).then(function (res) {
|
|
|
+ if (planType.value == 'SEO') {
|
|
|
+ getAction('/seo/seoKeywordsRank/comprehensiveInfo?siteCode=' + siteCode.value).then(function (res) {
|
|
|
if (res.code == 200) {
|
|
|
- currentAchieveCount.value = (res.result.achievedAppointKeywordNum || 0) +
|
|
|
- (res.result.achievedLongTailKeywordNum || 0);
|
|
|
- appointWordCount.value = (res.result.planKeywordNum || 0) +
|
|
|
- (res.result.planLongTailKeywordNum || 0);
|
|
|
- achievePercent.value = appointWordCount.value > 0 ?
|
|
|
- ((currentAchieveCount.value / appointWordCount.value) * 100).toFixed(2) + '%' : '0%';
|
|
|
+ currentAchieveCount.value = (res.result.achievedAppointKeywordNum || 0) + (res.result.achievedLongTailKeywordNum || 0);
|
|
|
+ appointWordCount.value = (res.result.planKeywordNum || 0) + (res.result.planLongTailKeywordNum || 0);
|
|
|
+ achievePercent.value =
|
|
|
+ appointWordCount.value > 0 ? ((currentAchieveCount.value / appointWordCount.value) * 100).toFixed(2) + '%' : '0%';
|
|
|
}
|
|
|
});
|
|
|
}
|