Browse Source

首页展示套餐信息

chenlei1231 4 months ago
parent
commit
b84e326d63

+ 1 - 1
src/api/manage/manage.ts

@@ -9,7 +9,7 @@ const api = {
 };
 
 //post
-export function postAction(url, parameter, timeout) {
+export function postAction(url, parameter, timeout: 120000) {
   return defHttp.post(
     {
       url: url,

+ 5 - 3
src/components/Adweb/selectSite.vue

@@ -18,11 +18,11 @@
   import { getAction } from '/@/api/manage/manage';
 
   import { useMessage } from '/@/hooks/web/useMessage';
-  import { onBeforeMount, onMounted, reactive, ref, watch } from 'vue';
+  import { onBeforeMount, reactive, ref, watch } from 'vue';
 
   const { createMessage } = useMessage();
 
-  const emit = defineEmits(['setSiteInfo']);
+  const emit = defineEmits(['setSiteInfo', 'initSiteList']);
 
   const props = defineProps({
     label: {
@@ -49,7 +49,7 @@
   };
 
   let siteInfo = reactive([{ code: '', id: '', name: '' }]);
-  let selectSiteInfo = reactive({ code: '', id: '', name: '' });
+  let selectSiteInfo = reactive({ code: '', id: '', name: '', status: '' });
   let siteCode = ref();
 
   onBeforeMount(() => {
@@ -86,6 +86,8 @@
           localStorage.setItem('siteCode', res.result[0].code);
           localStorage.setItem('siteID', res.result[0].id);
         }
+
+        emit('initSiteList', siteInfo, selectSiteInfo);
       } else {
         createMessage.error('站点获取失败,请刷新重试');
       }

+ 171 - 364
src/views/dashboard/Analysis/homePage/adweb3Home.vue

@@ -5,33 +5,7 @@
       <a-col :span="24">
         <div style="display: flex; margin-top: 20px">
           <span class="t1"> 站点: </span>
-          <template v-if="siteinfo.length > 1">
-            <select-site @com-methods="changeUser" :comProps="parentValue" selectWidth="300px" ref="selectSite" />
-            <a v-if="selectSiteInfo.domain" :href="selectSiteInfo.domain" style="margin-left: 24px" class="t1 t2" target="_blank">{{
-              selectSiteInfo.domain
-            }}</a>
-            <a
-              v-else-if="selectSiteInfo.domainDev"
-              :href="'http://' + selectSiteInfo.domainDev"
-              style="margin-left: 24px"
-              class="t1 t2"
-              target="_blank"
-              >http://{{ selectSiteInfo.domainDev }}</a
-            >
-          </template>
-          <template v-else>
-            <a v-if="selectSiteInfo.domain" :href="selectSiteInfo.domain" style="margin-left: 24px" class="t1 t2" target="_blank">{{
-              selectSiteInfo.domain
-            }}</a>
-            <a
-              v-else-if="selectSiteInfo.domainDev"
-              :href="'http://' + selectSiteInfo.domainDev"
-              style="margin-left: 24px"
-              class="t1 t2"
-              target="_blank"
-              >http://{{ selectSiteInfo.domainDev }}</a
-            >
-          </template>
+          <select-site @set-site-info="changeUser" selectWidth="300px" />
         </div>
       </a-col>
     </a-row>
@@ -43,31 +17,30 @@
           <a-spin :spinning="baseInfoLoading">
             <div class="wrap">
               <p class="mb"
-                >交付状态:<span class="big">{{ baseInfo.deliveryProgress | filter_Null_format }}</span></p
+                >交付状态:<span class="big">{{ filter_Null_format(baseInfo.deliveryProgress) }}</span></p
               >
               <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>网站运行:{{ baseInfo.runDays | filter_Null_format }}天</p>
+              <p>网站运行:{{ filter_Null_format(baseInfo.runDays) }}天</p>
             </div>
           </a-spin>
         </a-col>
         <a-col :span="6" class="c2">
           <a-spin :spinning="baseInfoLoading">
             <div class="wrap">
-              <p class="big mb">{{ baseInfo.planName | filter_Null_format }}</p>
-              <p>提单时间:{{ baseInfo.createTime | filter_Null_format }}</p>
-              <p>预计服务到期时间:{{ baseInfo.endTime | filter_Null_format }}</p>
+              <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-spin>
         </a-col>
       </a-row>
     </a-card>
 
-    <!--核心数据-->
-    <a-row class="r3" v-if="selectSiteInfo.status == 1">
+    <a-row class="r3" v-if="siteStatus == 1">
       <a-col :span="24">
         <a-card title="核心数据">
           <a-row class="r5" :gutter="[20, 20]">
@@ -78,7 +51,7 @@
                     <img src="../../../../assets/home/weekEnquiry.svg" />
                     <div class="fr">
                       <p>本周询盘数</p>
-                      <p class="theme-color">{{ currentWeekEnquiryCount | filter_Null_format }}</p>
+                      <p class="theme-color">{{ filter_Null_format(currentWeekEnquiryCount) }}</p>
                     </div>
                   </router-link>
                 </a-spin>
@@ -91,7 +64,7 @@
                     <img src="../../../../assets/home/monthEnquiry.svg" />
                     <div class="fr">
                       <p>本月询盘数</p>
-                      <p class="theme-color">{{ currentMonthEnquiryCount | filter_Null_format }}</p>
+                      <p class="theme-color">{{ filter_Null_format(currentMonthEnquiryCount) }}</p>
                     </div>
                   </router-link>
                 </a-spin>
@@ -104,7 +77,7 @@
                     <img src="../../../../assets/home/totalEnquiry.svg" />
                     <div class="fr">
                       <p>累计询盘数</p>
-                      <p class="theme-color">{{ totalEnquiryCount | filter_Null_format }}</p>
+                      <p class="theme-color">{{ filter_Null_format(totalEnquiryCount) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -118,7 +91,7 @@
                     <img src="../../../../assets/home/seoReach.svg" />
                     <div class="fr">
                       <p>SEO目标达成数</p>
-                      <p>{{ appointWordCount | filter_Null_format }}</p>
+                      <p>{{ filter_Null_format(appointWordCount) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -130,7 +103,7 @@
                       <img src="../../../../assets/home/nowReach.svg" />
                       <div class="fr">
                         <p>实际达成数</p>
-                        <p class="theme-color">{{ currentAchieveCount | filter_Null_format }}</p>
+                        <p class="theme-color">{{ filter_Null_format(currentAchieveCount) }}</p>
                       </div>
                     </a-spin>
                   </div>
@@ -142,7 +115,7 @@
                     <img src="../../../../assets/home/seoReachRate.svg" />
                     <div class="fr">
                       <p>目标达成率</p>
-                      <p>{{ achievePercent | filter_Null_format }}</p>
+                      <p>{{ filter_Null_format(achievePercent) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -156,7 +129,7 @@
                     <img src="../../../../assets/home/seoReach.svg" />
                     <div class="fr">
                       <p>本周流量</p>
-                      <p>{{ flowIndicator.uvWeekCount | filter_Null_format }}</p>
+                      <p>{{ filter_Null_format(flowIndicator.uvWeekCount) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -167,7 +140,7 @@
                     <img src="../../../../assets/home/nowReach.svg" />
                     <div class="fr">
                       <p>本月流量</p>
-                      <p>{{ flowIndicator.uvMonthCount | filter_Null_format }}</p>
+                      <p>{{ filter_Null_format(flowIndicator.uvMonthCount) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -178,7 +151,7 @@
                     <img src="../../../../assets/home/seoReachRate.svg" />
                     <div class="fr">
                       <p>累计流量</p>
-                      <p>{{ flowIndicator.uvAllCount | filter_Null_format }}</p>
+                      <p>{{ filter_Null_format(flowIndicator.uvAllCount) }}</p>
                     </div>
                   </a-spin>
                 </div>
@@ -272,16 +245,16 @@
   </div>
 </template>
 
-<script>
-  import dashChart from '../chart/DashChartDemo.vue';
+<script lang="ts" setup name="Adweb3Home">
   import areaChart from '../chart/areaChart.vue';
-  import { getAction, getFileAccessHttpUrl, postAction } from '/@/api/manage/manage';
+  import { getAction } from '/@/api/manage/manage';
   import { useUserStore } from '/@/store/modules/user';
   import selectSite from '/@/components/Adweb/selectSite.vue';
-  import '../../../../assets/less/home.less';
+  import '/@/assets/less/home.less';
   import { useMessage } from '/@/hooks/web/useMessage';
+  import { onMounted, reactive, ref } from 'vue';
 
-  const { createMessage, createConfirm } = useMessage();
+  const { createMessage } = useMessage();
 
   const columns = [
     {
@@ -320,324 +293,158 @@
     },
   ];
 
-  export default {
-    name: 'Adweb3Home',
-    components: { dashChart, areaChart, selectSite },
-    filters: {
-      filter_Null_format(value) {
-        if (value === '' || value === null || value === undefined) {
-          return '--';
-        } else {
-          return value;
-        }
-      },
-    },
-    data() {
-      return {
-        parentValue: '父组件的值',
-        userRole: '',
-        columns,
-        timeChooseIndex: '7',
-        //网站概况
-        siteinfo: [],
-        selectSiteInfo: {},
-        siteCode: '',
-        baseInfo: {},
-        baseInfoLoading: false,
-        //物料完成情况
-        enterpriseInfoList: [],
-        enterpriseInfoOK: 0,
-        enterpriseInfoNO: 0,
-        enterpriseInfoPercent: 0,
-        newsInfoList: [],
-        newsInfoOK: 0,
-        newsInfoNO: 0,
-        newsInfoPercent: 0,
-        productInfoList: [],
-        productInfoOK: 0,
-        productInfoNO: 0,
-        productInfoPercent: 0,
-        infoLoading: false,
-        //服务团队
-        customerList: [],
-        //核心数据
-        coreInfoLoading: false,
-        coreDetailLoading: false,
-        achievePercent: 0,
-        appointWordCount: 0,
-        currentAchieveCount: 0,
-        currentMonthEnquiryCount: 0,
-        currentWeekEnquiryCount: 0,
-        totalEnquiryCount: 0,
-        flowIndicator: {},
-        coreDataTable: [],
-        coreDataChart: {
-          x: [],
-          uv: [],
-          pv: [],
-        },
-        averageVisit: 0,
-        averageVisitDuration: 0,
-        averageVisitPage: 0,
-        bounceRate: 0,
-        conversionRate: 0,
-        showMaterialStatistics: false,
-        promoteCustomerService: {},
-        // 首页弹出消息
-        showHomeMsg: false,
-        message: {},
-        isShow: false,
-      };
-    },
-    created() {
-      // 跳出消息通知弹窗
-      // this.getSysUpdateMsg();
-    },
-    mounted() {
-      this.userRole = useUserStore().roleList;
-      this.getSiteInfo();
-    },
-    methods: {
-      // 从后台获取系统更新消息
-      // getSysUpdateMsg() {
-      //   let that = this
-      //   getAction('/message/adwebMessage/home/message').then(function (res) {
-      //     console.log('首页弹出信息', res);
-      //     if (res.code === 200 && res.result) {
-      //       that.message = res.result;
-      //       that.showHomeMsg = true;
-      //       let msgId = res.result.id;
-      //       postAction('/message/adwebMessage/readmessage?msgId=' + msgId);
-      //     }
-      //   })
-      // },
-      splitText(text) {
-        if (!text) {
-          return '';
-        }
-        let res = '';
-        let arr = text.split('\n');
-        for (let item of arr) {
-          res = res + '<p>' + item + '</p>\n';
-        }
-        return res;
-      },
-      getFileAccessHttpUrl,
-      //保证先获取到站点列表,获取到siteCode及siteId后再进行此方法
-      getAllInfo() {
-        this.getBaseInfo();
-        this.getMaterialStatistics();
-        this.getCoreData();
-        this.getCoreDataChart();
-      },
-      //进入获取站点code
-      getSiteInfo() {
-        let that = this;
-        getAction('/adweb/adwebSite/getSiteListByUid').then(function (res) {
-          if (res.code == 200) {
-            that.siteinfo = res.result;
-            let isInSite = false;
-            for (let i in res.result) {
-              if (localStorage.getItem('siteCode') !== null && res.result[i].code === localStorage.getItem('siteCode')) {
-                isInSite = true;
-                that.selectSiteInfo = res.result[i];
-              }
-            }
-            if (localStorage.getItem('siteCode') !== null && isInSite) {
-              that.siteCode = localStorage.getItem('siteCode');
-            } else {
-              that.siteCode = res.result[0].code;
-              that.selectSiteInfo = res.result[0];
-              localStorage.setItem('siteCode', res.result[0].code);
-            }
-            that.getAllInfo();
-          } else {
-            createMessage.error('站点获取失败,请刷新重试');
-          }
-        });
-      },
-
-      //改变站点
-      changeUser(value, e) {
-        this.siteCode = value;
-
-        this.selectSiteInfo = e.info;
-        this.showMaterialStatistics = false;
-        this.getAllInfo();
-      },
-      //站点搜索
-      filterOption(input, option) {
-        return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0;
-      },
-      //获取基础信息
-      getBaseInfo() {
-        let that = this;
-        let d = {
-          siteCode: that.siteCode,
-        };
-        that.baseInfoLoading = true;
-        getAction('/serp/averApiSearchKeywords/siteBasicInfo', d).then(function (res) {
-          that.baseInfoLoading = false;
-          if (res.code == 200) {
-            that.baseInfo = res.result;
-            that.isShow = true;
-          } else {
-            that.$message.error('获取站点基础信息失败,请刷新重试');
-          }
-        });
-      },
-      //获取物料完成情况
-      resetMaterialStatistics() {
-        this.enterpriseInfoList = [];
-        this.enterpriseInfoOK = 0;
-        this.enterpriseInfoNO = 0;
-        this.enterpriseInfoPercent = 0;
-        this.newsInfoList = [];
-        this.newsInfoOK = 0;
-        this.newsInfoNO = 0;
-        this.newsInfoPercent = 0;
-        this.productInfoList = [];
-        this.productInfoOK = 0;
-        this.productInfoNO = 0;
-        this.productInfoPercent = 0;
-      },
-      getMaterialStatistics() {
-        let that = this;
-        let d = {
-          siteCode: that.siteCode,
-        };
-        that.infoLoading = true;
-        getAction('/materialcollect/materialStatistics', d).then(function (res) {
-          that.infoLoading = false;
-          that.resetMaterialStatistics();
-          if (res.code == 200) {
-            if (res.result.status == '已发布') {
-              that.showMaterialStatistics = false;
-            } else {
-              that.showMaterialStatistics = true;
-            }
+  const userRole = ref('');
+  const timeChooseIndex = ref('7');
+  //网站概况
+
+  let selectSiteInfo = reactive<any>({});
+  const siteCode = ref('');
+  const siteStatus = ref(0);
+  let baseInfo = reactive<any>({});
+  const baseInfoLoading = ref(false);
+
+  //物料完成情况
+  // TODO
+
+  //核心数据
+  const coreInfoLoading = ref(false);
+  const coreDetailLoading = ref(false);
+  const achievePercent = ref(0);
+  const appointWordCount = ref(0);
+  const currentAchieveCount = ref(0);
+  const currentMonthEnquiryCount = ref(0);
+  const currentWeekEnquiryCount = ref(0);
+  const totalEnquiryCount = ref(0);
+  let flowIndicator = reactive({});
+  let coreDataTable = reactive([]);
+  const coreDataChart = reactive({
+    x: [],
+    uv: [],
+    pv: [],
+  });
+  const averageVisit = ref(0);
+  const averageVisitDuration = ref(0);
+  const averageVisitPage = ref(0);
+  const bounceRate = ref(0);
+  const conversionRate = ref(0);
+
+  const isShow = ref(false);
+
+  onMounted(() => {
+    userRole.value = useUserStore().roleList;
+  });
+
+  //改变站点
+  function changeUser(selectedParamSiteInfo: any) {
+    siteCode.value = selectedParamSiteInfo.code;
+
+    siteStatus.value = selectedParamSiteInfo.status;
+
+    getAllInfo();
+  }
 
-            that.enterpriseInfoList = res.result.enterpriseInfo.detectList;
-            if (res.result.enterpriseInfo.detectList.length > 0) {
-              for (let i in res.result.enterpriseInfo.detectList) {
-                if (res.result.enterpriseInfo.detectList[i].finish) {
-                  that.enterpriseInfoOK++;
-                } else {
-                  that.enterpriseInfoNO++;
-                }
-              }
-            }
-            that.enterpriseInfoPercent = res.result.enterpriseInfo.percent;
-            that.newsInfoList = res.result.newsInfo.detectList;
-            if (res.result.newsInfo.detectList.length > 0) {
-              for (let i in res.result.newsInfo.detectList) {
-                if (res.result.newsInfo.detectList[i].finish) {
-                  that.newsInfoOK++;
-                } else {
-                  that.newsInfoNO++;
-                }
-              }
-            }
-            that.newsInfoPercent = res.result.newsInfo.percent;
-            that.productInfoList = res.result.productInfo.detectList;
-            if (res.result.productInfo.detectList.length > 0) {
-              for (let i in res.result.productInfo.detectList) {
-                if (res.result.productInfo.detectList[i].finish) {
-                  that.productInfoOK++;
-                } else {
-                  that.productInfoNO++;
-                }
-              }
-            }
-            that.productInfoPercent = res.result.productInfo.percent;
-          } else if (res.code == 500) {
-            that.showMaterialStatistics = true;
-            that.$message.warning(res.message);
-          } else {
-            that.showMaterialStatistics = false;
-            that.$message.error('获取站点获取物料完成情况失败,请刷新重试');
-          }
-        });
-      },
-
-      //获取核心数据
-      getCoreData() {
-        // http://127.0.0.1:8080/adwebv21/adweb/dashboard/coreData/info?siteCode=2111237a6q9m&siteId=1069
-        let that = this;
-        let d = {
-          siteCode: that.siteCode,
-          // siteId:'1069',
-          // siteCode:'2111237a6q9m'
-        };
-        that.coreInfoLoading = true;
-        that.flowIndicator = {};
-        getAction('/adweb/dashboard/coreData/info', d).then(function (res) {
-          that.coreInfoLoading = false;
-          if (res.code == 0) {
-            that.achievePercent = res.data.achievePercent;
-            that.appointWordCount = res.data.appointWordCount;
-            that.currentAchieveCount = res.data.currentAchieveCount;
-            that.currentMonthEnquiryCount = res.data.currentMonthEnquiryCount;
-            that.currentWeekEnquiryCount = res.data.currentWeekEnquiryCount;
-            that.totalEnquiryCount = res.data.totalEnquiryCount;
-            that.flowIndicator = res.data.flowIndicator;
-          } else {
-            that.$message.error('获取核心数据信息失败,请刷新重试');
-          }
-        });
-      },
-      //改变图表的时间维度
-      changeTime(time) {
-        this.timeChooseIndex = time;
-        this.getCoreDataChart();
-      },
-      //核心数据的面积图
-      getCoreDataChart() {
-        let that = this;
-        let d = {
-          siteCode: that.siteCode,
-          // siteId:'1069',
-          // siteCode:'2111237a6q9m',
-          days: that.timeChooseIndex,
-        };
-        that.coreDetailLoading = true;
-        getAction('/adweb/dashboard/coreData/detail', d).then(function (res) {
-          that.coreDetailLoading = false;
-          if (res.code == 0) {
-            let r = res.data;
-            that.averageVisit = r.averageVisit == null ? '0' : r.averageVisit;
-            that.averageVisitDuration = r.averageVisitDuration == null ? '0' : r.averageVisitDuration;
-            that.averageVisitPage = r.averageVisitPage == null ? '0' : r.averageVisitPage;
-            that.bounceRate = r.bounceRate == null ? '0' : r.bounceRate;
-            that.coreDataTable = r.countInfo == null ? [] : r.countInfo;
-            let x = [],
-              pv = [],
-              uv = [];
-            if (r.trendInfo != null && r.trendInfo.length > 0) {
-              for (let i in r.trendInfo) {
-                x.push(r.trendInfo[i].date);
-                pv.push(r.trendInfo[i].pvCount);
-                uv.push(r.trendInfo[i].uvCount);
-              }
-            }
-            that.coreDataChart.x = x;
-            that.coreDataChart.pv = pv;
-            that.coreDataChart.uv = uv;
-          } else {
-            that.averageVisit = '0';
-            that.averageVisitDuration = '0';
-            that.averageVisitPage = '0';
-            that.bounceRate = '0';
-            that.coreDataTable = [];
-            that.coreDataChart.x = [];
-            that.coreDataChart.pv = [];
-            that.coreDataChart.uv = [];
-            that.$message.error('获取核心数据图表信息失败,请刷新重试');
+  function filter_Null_format(value) {
+    if (value === '' || value === null || value === undefined) {
+      return '--';
+    } else {
+      return value;
+    }
+  }
+  //保证先获取到站点列表,获取到siteCode及siteId后再进行此方法
+  function getAllInfo() {
+    getBaseInfo();
+    getCoreData();
+    getCoreDataChart();
+  }
+
+  //获取基础信息
+  function getBaseInfo() {
+    let d = {
+      siteCode: siteCode.value,
+    };
+    baseInfoLoading.value = true;
+    getAction('/adweb/adwebSiteManage/siteBasicInfo', d).then(function (res) {
+      baseInfoLoading.value = false;
+      if (res.code == 200) {
+        baseInfo = res.result;
+        isShow.value = true;
+      } else {
+        createMessage.error('获取站点基础信息失败,请刷新重试');
+      }
+    });
+  }
+
+  //获取核心数据
+  function getCoreData() {
+    let d = {
+      siteCode: siteCode.value,
+    };
+    coreInfoLoading.value = true;
+    flowIndicator = {};
+    getAction('/adweb/dashboard/coreData/info', d).then(function (res) {
+      coreInfoLoading.value = false;
+      if (res.code == 0) {
+        achievePercent.value = res.data.achievePercent;
+        appointWordCount.value = res.data.appointWordCount;
+        currentAchieveCount.value = res.data.currentAchieveCount;
+        currentMonthEnquiryCount.value = res.data.currentMonthEnquiryCount;
+        currentWeekEnquiryCount.value = res.data.currentWeekEnquiryCount;
+        totalEnquiryCount.value = res.data.totalEnquiryCount;
+        flowIndicator = res.data.flowIndicator;
+      } else {
+        createMessage.error('获取核心数据信息失败,请刷新重试');
+      }
+    });
+  }
+  //改变图表的时间维度
+  function changeTime(time) {
+    timeChooseIndex.value = time;
+    getCoreDataChart();
+  }
+  //核心数据的面积图
+  function getCoreDataChart() {
+    let d = {
+      siteCode: siteCode.value,
+      // siteId:'1069',
+      // siteCode:'2111237a6q9m',
+      days: timeChooseIndex.value,
+    };
+    coreDetailLoading.value = true;
+    getAction('/adweb/dashboard/coreData/detail', d).then(function (res) {
+      coreDetailLoading.value = false;
+      if (res.code == 0) {
+        let r = res.data;
+        averageVisit.value = r.averageVisit == null ? '0' : r.averageVisit;
+        averageVisitDuration.value = r.averageVisitDuration == null ? '0' : r.averageVisitDuration;
+        averageVisitPage.value = r.averageVisitPage == null ? '0' : r.averageVisitPage;
+        bounceRate.value = r.bounceRate == null ? '0' : r.bounceRate;
+        coreDataTable = r.countInfo == null ? [] : r.countInfo;
+        let x = [],
+          pv = [],
+          uv = [];
+        if (r.trendInfo != null && r.trendInfo.length > 0) {
+          for (let i in r.trendInfo) {
+            x.push(r.trendInfo[i].date);
+            pv.push(r.trendInfo[i].pvCount);
+            uv.push(r.trendInfo[i].uvCount);
           }
-        });
-      },
-    },
-  };
+        }
+        coreDataChart.x = x;
+        coreDataChart.pv = pv;
+        coreDataChart.uv = uv;
+      } else {
+        averageVisit.value = '0';
+        averageVisitDuration.value = '0';
+        averageVisitPage.value = '0';
+        bounceRate.value = '0';
+        coreDataTable = [];
+        coreDataChart.x = [];
+        coreDataChart.pv = [];
+        coreDataChart.uv = [];
+        createMessage.error('获取核心数据图表信息失败,请刷新重试');
+      }
+    });
+  }
 </script>
 
 <style lang="less">