|
@@ -2,41 +2,85 @@
|
|
|
<div class="home">
|
|
|
<!--网站概况-->
|
|
|
<a-row class="top-title">
|
|
|
- <a-col :span="24">
|
|
|
+ <a-col :span="6">
|
|
|
<div style="display: flex; margin-top: 20px">
|
|
|
<span class="t1"> 站点: </span>
|
|
|
<select-site @set-site-info="changeUser" selectWidth="300px" />
|
|
|
- <a :href="siteDomain" style="margin-left: 24px" class="t1 t2" target="_blank">{{ siteDomain }}</a>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <div class="web-link">
|
|
|
+ <a :href="siteDomain" target="_blank">{{ siteDomain }}</a>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
|
|
|
<!--基础信息-->
|
|
|
<a-card title="网站概况">
|
|
|
- <a-row :gutter="[16, 16]" class="r2">
|
|
|
- <a-col :span="6" class="c1">
|
|
|
+ <a-row >
|
|
|
+ <a-col class="border-right" :span="12" >
|
|
|
<a-spin :spinning="baseInfoLoading">
|
|
|
- <div class="wrap">
|
|
|
- <p class="mb"
|
|
|
- >交付状态:<span class="big">{{ filter_Null_format(baseInfo.deliveryProgress) }}</span>
|
|
|
- </p>
|
|
|
- <a-progress :steps="6" :percent="baseInfo.percentage" />
|
|
|
- <p
|
|
|
- >运行状态:<span v-if="baseInfo.runStatus == 0">创建失败</span><span v-if="baseInfo.runStatus == 1">正常运行</span
|
|
|
- ><span v-if="baseInfo.runStatus == 2">运行异常</span>
|
|
|
- <span v-if="baseInfo.runStatus == 3">站点停止</span>
|
|
|
- </p>
|
|
|
- <p>网站运行:{{ filter_Null_format(baseInfo.runDays) }}天</p>
|
|
|
- </div>
|
|
|
+ <a-row class="web-info">
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">交付状态</p>
|
|
|
+ <p class="content">
|
|
|
+ <span>{{ filter_Null_format(baseInfo.deliveryProgress) }}</span>
|
|
|
+ </p>
|
|
|
+ <a-progress style="width: 40%" :steps="6" :percent="baseInfo.percentage" />
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">运行状态</p>
|
|
|
+ <p class="content">
|
|
|
+ <span v-if="baseInfo.runStatus == 0">创建失败</span><span v-if="baseInfo.runStatus == 1">正常运行</span
|
|
|
+ ><span v-if="baseInfo.runStatus == 2">运行异常</span>
|
|
|
+ <span v-if="baseInfo.runStatus == 3">站点停止</span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">网站运行</p>
|
|
|
+ <p class="content">
|
|
|
+ <span>
|
|
|
+ {{ filter_Null_format(baseInfo.runDays) }}天
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
</a-spin>
|
|
|
</a-col>
|
|
|
- <a-col :span="6" class="c2">
|
|
|
+ <a-col :span="12">
|
|
|
<a-spin :spinning="baseInfoLoading">
|
|
|
- <div class="wrap">
|
|
|
- <p class="big mb">{{ filter_Null_format(baseInfo.planName) }}</p>
|
|
|
- <p>提单时间:{{ filter_Null_format(baseInfo.createTime) }}</p>
|
|
|
- <p>预计服务到期时间:{{ filter_Null_format(baseInfo.endTime) }}</p>
|
|
|
- </div>
|
|
|
+ <a-row class="web-info">
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">套餐类型</p>
|
|
|
+ <p class="content">
|
|
|
+ <span>{{ filter_Null_format(baseInfo.planName) }}</span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">提单时间</p>
|
|
|
+ <p class="content">
|
|
|
+ <span>{{ filter_Null_format(baseInfo.createTime) }}</span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="8">
|
|
|
+ <div class="web-content">
|
|
|
+ <p class="title">预计服务到期时间</p>
|
|
|
+ <p class="content">
|
|
|
+ <span >{{ filter_Null_format(baseInfo.endTime) }}</span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
</a-spin>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
@@ -46,62 +90,57 @@
|
|
|
<a-col :span="24">
|
|
|
<a-card title="核心数据">
|
|
|
<a-row class="r5" :gutter="[20, 20]">
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="4" class="border-right">
|
|
|
<div class="wrap effect">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
<router-link :to="{ path: '/inquiry/list', query: { timeType: 'thisWeek' } }">
|
|
|
- <img src="../../../../assets/home/weekEnquiry.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>本周询盘数</p>
|
|
|
+ <p class="title">本周询盘数</p>
|
|
|
<p class="theme-color">{{ filter_Null_format(currentWeekEnquiryCount) }}</p>
|
|
|
</div>
|
|
|
</router-link>
|
|
|
</a-spin>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="4" class="border-right">
|
|
|
<div class="wrap effect">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
<router-link :to="{ path: '/inquiry/list', query: { timeType: 'thisMonth' } }">
|
|
|
- <img src="../../../../assets/home/monthEnquiry.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>本月询盘数</p>
|
|
|
+ <p class="title">本月询盘数</p>
|
|
|
<p class="theme-color">{{ filter_Null_format(currentMonthEnquiryCount) }}</p>
|
|
|
</div>
|
|
|
</router-link>
|
|
|
</a-spin>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="4" class="border-right">
|
|
|
<router-link :to="{ path: '/inquiry/list' }">
|
|
|
<div class="wrap effect">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
- <img src="../../../../assets/home/totalEnquiry.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>累计询盘数</p>
|
|
|
+ <p class="title">累计询盘数</p>
|
|
|
<p class="theme-color">{{ filter_Null_format(totalEnquiryCount) }}</p>
|
|
|
</div>
|
|
|
</a-spin>
|
|
|
</div>
|
|
|
</router-link>
|
|
|
</a-col>
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="4" class="border-right">
|
|
|
<div class="wrap blue">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
- <img src="../../../../assets/home/seoReach.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>本周流量</p>
|
|
|
+ <p class="title">本周流量</p>
|
|
|
<p>{{ filter_Null_format(thisWeekData.totalUsers) }}</p>
|
|
|
</div>
|
|
|
</a-spin>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="4" class="border-right">
|
|
|
<div class="wrap blue">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
- <img src="../../../../assets/home/nowReach.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>本月流量</p>
|
|
|
+ <p class="title">本月流量</p>
|
|
|
<p>{{ filter_Null_format(thisMonthData.totalUsers) }}</p>
|
|
|
</div>
|
|
|
</a-spin>
|
|
@@ -110,9 +149,8 @@
|
|
|
<a-col :span="4">
|
|
|
<div class="wrap blue">
|
|
|
<a-spin :spinning="coreInfoLoading">
|
|
|
- <img src="../../../../assets/home/seoReachRate.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>累计流量</p>
|
|
|
+ <p class="title">累计流量</p>
|
|
|
<p>{{ filter_Null_format(allTimeData.totalUsers) }}</p>
|
|
|
</div>
|
|
|
</a-spin>
|
|
@@ -120,18 +158,14 @@
|
|
|
</a-col>
|
|
|
<a-col :span="24" style="margin-top: 10px">
|
|
|
<a-table
|
|
|
+ class="ant-table-striped"
|
|
|
:loading="coreDetailLoading"
|
|
|
:columns="columns"
|
|
|
- :rowKey="(record, index) => index"
|
|
|
:pagination="false"
|
|
|
:data-source="coreDataTable"
|
|
|
+ :row-class-name="(_record, index) => (index % 2 === 1 ? 'table-striped' : null)"
|
|
|
+ bordered
|
|
|
>
|
|
|
- <!-- <template slot="b" slot-scope="text,record">-->
|
|
|
- <!-- {{text}}<a-icon type="arrow-up" style="color:red" />-->
|
|
|
- <!-- </template>-->
|
|
|
- <!-- <template slot="c" slot-scope="text,record">-->
|
|
|
- <!-- {{text}}<a-icon type="arrow-down" style="color:#58CBA8" />-->
|
|
|
- <!-- </template>-->
|
|
|
</a-table>
|
|
|
<p style="color: #999; font-size: 13px">注:今日数据每小时更新一次。</p>
|
|
|
</a-col>
|
|
@@ -144,9 +178,9 @@
|
|
|
</div>
|
|
|
<a-col :span="24">
|
|
|
<div class="fr" v-if="coreDataChart.x.length > 0">
|
|
|
- <span><i style="background: #544beb"></i>访客数(UV)</span>
|
|
|
- <span><i style="background: #f0b358"></i>浏览量(PV)</span>
|
|
|
- <span><i style="background: #58cca8"></i>询盘数</span>
|
|
|
+ <span><i style="background: #53A2D3"></i>访客数(UV)</span>
|
|
|
+ <span><i style="background: #FF951A"></i>浏览量(PV)</span>
|
|
|
+ <span><i style="background: #399C5C"></i>询盘数</span>
|
|
|
</div>
|
|
|
<a-spin :spinning="chartsLoading" style="float: left; width: 100%">
|
|
|
<area-chart v-if="coreDataChart.x.length > 0" :dataSource="coreDataChart" />
|
|
@@ -155,47 +189,42 @@
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
<a-row class="r5-1" :gutter="[20, 20]">
|
|
|
- <a-col style="width: 20%">
|
|
|
+ <a-col style="width: 20%" class="border-right">
|
|
|
<div class="wrap">
|
|
|
- <img src="@/assets/trafficAnalysis/dailyVisitCount.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>日均访问量</p>
|
|
|
+ <p class="title">日均访问量</p>
|
|
|
<p style="font-size: 25px">{{ averageVisit }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col style="width: 20%">
|
|
|
+ <a-col style="width: 20%" class="border-right">
|
|
|
<div class="wrap">
|
|
|
- <img src="@/assets/trafficAnalysis/avgVisitTime.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>平均访问时长</p>
|
|
|
+ <p class="title">平均访问时长</p>
|
|
|
<p style="font-size: 25px">{{ averageVisitDuration }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col style="width: 20%">
|
|
|
+ <a-col style="width: 20%" class="border-right">
|
|
|
<div class="wrap">
|
|
|
- <img src="@/assets/trafficAnalysis/avgVisitPage.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>访客平均访问页面数</p>
|
|
|
+ <p class="title">访客平均访问页面数</p>
|
|
|
<p style="font-size: 25px">{{ averageVisitPage }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col style="width: 20%">
|
|
|
+ <a-col style="width: 20%" class="border-right">
|
|
|
<div class="wrap">
|
|
|
- <img src="@/assets/trafficAnalysis/tiaochu.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>跳出率</p>
|
|
|
+ <p class="title">跳出率</p>
|
|
|
<p style="font-size: 25px">{{ bounceRate }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
<a-col style="width: 20%">
|
|
|
<div class="wrap">
|
|
|
- <img src="@/assets/trafficAnalysis/uvTransfer.svg" />
|
|
|
<div class="fr">
|
|
|
- <p>UV到询盘转化率</p>
|
|
|
+ <p class="title">UV到询盘转化率</p>
|
|
|
<p style="font-size: 25px">{{ conversionRate }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -518,7 +547,6 @@
|
|
|
.wrap {
|
|
|
width: 400px;
|
|
|
padding: 20px 20px;
|
|
|
- background: url('../../../../assets/home/pop-bg.svg') no-repeat;
|
|
|
background-position: bottom right;
|
|
|
|
|
|
p {
|