chenlei1231 il y a 5 mois
Parent
commit
434e4c39d5

+ 1 - 0
package.json

@@ -73,6 +73,7 @@
     "vue-router": "^4.3.0",
     "vue-types": "^5.1.1",
     "vuedraggable": "^4.1.0",
+    "vuex": "^3.6.2",
     "vxe-table": "4.6.17",
     "vxe-table-plugin-antd": "4.0.7",
     "xe-utils": "3.5.26",

+ 12 - 0
pnpm-lock.yaml

@@ -164,6 +164,9 @@ importers:
       vuedraggable:
         specifier: ^4.1.0
         version: 4.1.0(vue@3.4.21(typescript@4.9.5))
+      vuex:
+        specifier: ^3.1.0
+        version: 3.6.2(vue@3.4.21(typescript@4.9.5))
       vxe-table:
         specifier: 4.6.17
         version: 4.6.17(vue@3.4.21(typescript@4.9.5))
@@ -6082,6 +6085,11 @@ packages:
     peerDependencies:
       vue: ^3.0.1
 
+  vuex@3.6.2:
+    resolution: {integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==, tarball: https://registry.npmmirror.com/vuex/-/vuex-3.6.2.tgz}
+    peerDependencies:
+      vue: ^2.0.0
+
   vxe-table-plugin-antd@4.0.7:
     resolution: {integrity: sha512-DFdvHBdpdkvFiRMhvsc6cNPiIL+3cLd2gGF2pu/lRE1ZSqK82OkZKY3onQO2dnE4zByN/szdCDIKV5Lk8iH8rg==}
     peerDependencies:
@@ -12599,6 +12607,10 @@ snapshots:
       sortablejs: 1.14.0
       vue: 3.4.21(typescript@4.9.5)
 
+  vuex@3.6.2(vue@3.4.21(typescript@4.9.5)):
+    dependencies:
+      vue: 3.4.21(typescript@4.9.5)
+
   vxe-table-plugin-antd@4.0.7(vxe-table@4.6.17(vue@3.4.21(typescript@4.9.5))):
     dependencies:
       vxe-table: 4.6.17(vue@3.4.21(typescript@4.9.5))

+ 190 - 0
src/components/adweb/selectSite.vue

@@ -0,0 +1,190 @@
+<template>
+  <span>
+    <a-select show-search
+              option-filter-prop="children"
+              :filter-option="filterOption"
+              v-model="siteCode" @change="changeUser"  :style="'width:'+selectWidth">
+      <a-select-option v-for="data in siteinfo" :key="data.code" :value="data.code" :info="data">
+        {{ data.name }}
+      </a-select-option>
+    </a-select>
+
+    <a-modal
+      title="温馨提示"
+      :visible="visible"
+      :closable="false"
+      :keyboard="false"
+      :maskClosable="false"
+      :footer="null"
+      centered
+      dialogClass="wp-tips"
+    >
+      <div style="text-align: center;line-height: 2">
+         <p>您当前选择的是 WordPress 嵌套网站,需要在系统操作之前,请返回首页重新选择站点操作。本网站的产品类型是 {{ productType }}。</p>
+          <router-link :to="{ path: '/websiteManage/dashboard/analysis' }">
+            <a-button type="primary">返回首页</a-button>
+          </router-link>
+      </div>
+    </a-modal>
+  </span>
+
+</template>
+
+<script>
+import { getAction, postAction } from '/@/api/manage/manage'
+import { mapActions } from 'vuex'
+import {store}  from '/@/store'
+import { generateIndexRouter } from '/@/utils/util'
+import { router } from '/@/router';
+
+export default {
+  data(){
+    return{
+      siteinfo:[],
+      siteCode:'',
+      selectSiteInfo:{},
+      visible:false,
+      productType:''
+    }
+  },
+  props:{
+    comProps:{},
+    siteListUrl:{
+      default:'/sys/api/getSiteListByUid'
+    },
+    selectWidth:{
+      default:'300px'
+    }
+  },
+  mounted() {
+    this.getSiteInfo()
+  },
+  methods:{
+    ...mapActions(['GetPermissionList']),
+    //进入获取站点code
+    getSiteInfo() {
+      let route = this.$route.name
+      let that = this
+      getAction(that.siteListUrl).then(function (res) {
+        if (res.code == 0) {
+          that.siteinfo = res.data
+          let isInSite = false
+          for (let i in res.data){
+            if(localStorage.getItem('siteCode') !== null && res.data[i].code === localStorage.getItem('siteCode')){
+              isInSite = true
+              that.selectSiteInfo = res.data[i]
+            }
+          }
+          if (localStorage.getItem('siteCode') !== null && isInSite) {
+            that.siteCode = localStorage.getItem("siteCode")
+          }else {
+            that.siteCode = res.data[0].code
+            that.selectSiteInfo = res.data[0]
+            localStorage.setItem("siteCode",res.data[0].code)
+          }
+          that.$nextTick(()=>{
+            that.$emit('setSiteInfo',res.data,that.selectSiteInfo)
+          })
+          if(route == 'websiteManage-dashboard-analysis'){
+            that.getPermissionList(that.siteCode)
+          }
+          // that.getAllInfo()
+        } else {
+          that.$message.error('站点获取失败,请刷新重试')
+        }
+      })
+    },
+
+
+    //改变站点
+    changeUser(value,e) {
+      let that = this
+      let route = this.$route.name
+      that.siteCode = value
+      localStorage.setItem("siteCode",value)
+      postAction('/adweb/adwebSiteManage/queryWordPressConfig', {  siteCode: value }).then(function (res) {
+        if(res.code == 200 && res.result.wordpressSwitch && res.result.wordpressSwitch == 1
+          && (route == 'pageManage-allPage'
+            || route == 'pageManage-addPage'
+
+            || route == 'website-enterpriseInfo-baseInfo'
+            || route == 'website-enterpriseInfo-bannerAdv'
+            || route == 'website-enterpriseInfo-customRevier'
+            || route == 'website-enterpriseInfo-enterpriseintroduction'
+            || route == 'company-advantage'
+            || route == 'website-enterpriseInfo-projectApplication'
+            || route == 'website-enterpriseInfo-honor'
+            || route == 'website-productSummary-productList5684'
+
+            || route == 'website-productSummary-category'
+            || route == 'website-productSummary-productsTag'
+            || route == 'product-draft'
+            || route == 'website-productSummary-productList'
+            || route == 'website-productSummary-downloadDocument'
+            || route == 'website-productSummary-faq'
+            || route == 'website-productSummary-productAdd'
+
+            || route == 'website-newsSummary-category'
+            || route == 'website-newsSummary-contentTag'
+            || route == 'website-newsSummary-AdwebMaterialNewsList'
+            || route == 'websit-newsSummary-addContent'
+            || route == 'website-enterpriseInfo-enterprisehistory'
+            || route == 'website-enterpriseInfo-FactoryEnvironment'
+            || route == 'website-enterpriseInfo-serviceGuarantee'
+            || route == 'website-enterpriseInfo-QuestionList'
+            || route == 'website-enterpriseInfo-socialmedialinks'
+
+            || route == 'website-productSummary-category1'
+            || route == 'website-productSummary-productList1'
+            || route == 'website-newsSummary-category1'
+            || route == 'operate-blog-update')
+
+        ){
+          that.productType = res.result.productType
+          that.visible = true;
+        }else{
+          that.getPermissionList(value)
+          that.$emit('comMethods',value,e)
+        }
+      })
+    },
+    //站点搜索
+    filterOption(input, option) {
+      return (
+        option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
+      )
+    },
+
+    getPermissionList(value){
+      let that = this
+      that.$store.dispatch('GetPermissionList', value).then(res => {
+        const menuData = res.result.menu;
+        if (menuData === null || menuData === "" || menuData === undefined) {
+          return;
+        }
+        let constRoutes = [];
+        constRoutes = generateIndexRouter(menuData);
+        that.$store.dispatch('UpdateAppRouter',  { constRoutes }).then(() => {
+          router.addRoutes(store.getters.addRouters)
+        })
+      })
+    }
+
+
+  }
+}
+</script>
+
+<style lang="less">
+.wp-tips{
+  .ant-modal-header{
+    padding: 10px;
+  }
+  .ant-modal-body{
+    padding: 24px;
+    p{
+      margin-bottom: 10px;
+    }
+  }
+}
+</style>

+ 118 - 0
src/hooks/component/useIframe.js

@@ -0,0 +1,118 @@
+import { postAction } from '/@/api/manage/manage'
+
+// TODO 先兼容vue2代码迁移,后期替换为vue3的写法, 当前from src/mixins/iframeMixin.js
+export const useIframe = {
+  data() {
+    return {
+      src: '',
+      loading: true,
+      isUsing: true,
+      wordpressSwitch: '3',
+      pageError: false,
+      wpConfig: {},
+      wordpressSetting: '',
+      openSetting: []
+    }
+  },
+
+  mounted() {
+    // 监听子页面的消息
+    if (typeof window.addEventListener != 'undefined') {
+      window.addEventListener('message', this.dealMessage, false)
+    } else if (typeof window.attachEvent != 'undefined') {
+      window.attachEvent('onmessage', this.dealMessage)
+    }
+    this.queryWordPressConfig()
+  },
+
+  methods: {
+    dealMessage(e) {
+      if (e.data.status == 2000) {
+        if (!e.data.data['wp-auth-check']) {
+          this.src = ''
+          this.queryWordPressConfig()
+        }
+      }
+    },
+    // 调用方法
+    iframeLoad() {
+      this.$nextTick(() => {
+        this.loading = true
+        const iframe = this.$refs.a.$refs.b
+        // 兼容处理
+        if (iframe.attachEvent) {
+          // IE
+          iframe.attachEvent('onload', () => {
+            this.loading = false
+          })
+        } else {
+          //表示页面加载错误
+          this.pageError = true
+          // 非IE
+          iframe.onload = () => {
+            this.loading = false
+          }
+        }
+      })
+
+    },
+
+    async queryWordPressConfig() {
+      let that = this
+      that.wordpressSwitch = ''
+      that.pageError = false
+      let url = ''
+      let params = {
+        siteCode: localStorage.getItem('siteCode'),
+      }
+      await postAction('/adweb/adwebSiteManage/queryWordPressConfig', params).then(function (res) {
+        if (res.code == 200) {
+          that.wordpressSwitch = res.result.wordpressSwitch ? res.result.wordpressSwitch : 2
+          if (res.result.wordpressSetting != null) {
+            that.wordpressSetting = res.result.wordpressSetting
+          }
+          if (res.result.openSetting != null) {
+            that.openSetting = res.result.openSetting
+          }
+          console.log(res.result)
+          if (res.result.productType == 'woocommerce') {
+            url = that.wooUrl ? that.wooUrl : that.url
+          }else{
+            url = that.url
+          }
+
+          let isIframe = 0
+          if (that.wordpressSwitch == 1 && (that.wordpressSetting == 'all' || that.openSetting.includes(that.iframePage))) {
+            isIframe = 1
+          }
+
+          if (that.parantEvent) {
+            that.parantEvent(res.result.wordpressSwitch)
+          }
+
+          if (res.result.wordpressSwitch == 1 &&
+            (that.wordpressSetting == 'all' || that.openSetting.includes('product') || that.openSetting.includes('article')) &&
+            isIframe == 1) {
+            let domainUrl = res.result.domain
+            let token = res.result.wordpressToken
+            let username = res.result.wordpressName
+            let page_no_login = domainUrl + '/wp-html.php?token=' + token + '&username=' + username + '&jumpUrl=' + encodeURIComponent(url)
+            // let page_ready =  domainUrl + "/wp-admin/"+ that.loginUrl +""
+            // let ssoResKey =  res.result.ssoResKey
+            // if(ssoResKey){
+            //   that.src =   page_ready
+            // }else{
+            that.src = page_no_login
+            // }
+            that.iframeLoad()
+          }
+        }
+      }).catch((err) => {
+        console.log(err)
+        that.wordpressSwitch = '3'
+      })
+    },
+
+  }
+
+}

+ 9 - 7
src/views/adweb/website/enterpriseInfo/baseInfo/baseInfoForm.vue

@@ -1,18 +1,20 @@
 <template>
   <div>
-      <iframe-com :loading="false"  ref="a" :src="src" v-if="wordpressSwitch == 1 && (wordpressSetting == 'all' || openSetting.includes('baseInfo'))" />
-    <base-info-form-back v-if="(wordpressSwitch == 2) || (wordpressSwitch == 1 && wordpressSetting != 'all' && !openSetting.includes('baseInfo'))"/>
+    <iframe-com ref="a" :src="src"/>
+<!--    <base-info-form-back-->
+<!--      v-if="(wordpressSwitch == 2) || (wordpressSwitch == 1 && wordpressSetting != 'all' && !openSetting.includes('baseInfo'))"/>-->
   </div>
 </template>
 
 <script>
-import BaseInfoFormBack from '/@/views/adweb/website/enterpriseInfo/baseInfo/baseInfoFormBack'
-import iframeCom from '/@/views/adweb/wpInTo/iframeCom'
-import { iframeMixin } from '/@/mixins/iframeMixin'
+// import BaseInfoFormBack from './baseInfoFormBack.vue'
+
+import iframeCom from '/@/views/adweb/wpInTo/iframeCom.vue'
+import { useIframe } from '/src/hooks/component/useIframe'
 
 export default {
-  components:{BaseInfoFormBack,iframeCom},
-  mixins: [iframeMixin],
+  components:{ iframeCom },
+  mixins: [ useIframe ],
   data(){
     return{
       noloading:true,

+ 2 - 2
src/views/adweb/website/enterpriseInfo/baseInfo/baseInfoFormBack.vue

@@ -198,7 +198,7 @@
 </template>
 
 <script>
-import { getAction, getFileAccessHttpUrl, httpAction } from '@api/manage'
+import { getAction, getFileAccessHttpUrl, httpAction } from '/@/api/manage/manage'
 import pick from 'lodash.pick'
 import Vue from 'vue'
 import { ACCESS_TOKEN } from '@/store/mutation-types'
@@ -552,4 +552,4 @@ export default {
   color: rgba(0, 0, 0, 0.65);
   line-height: 2em;
 }
-</style>
+</style>

+ 6 - 3
src/views/adweb/wpInTo/iframeCom.vue

@@ -1,14 +1,17 @@
 <template>
   <div class="vesselBox" >
-    <a-spin :spinning="loading">
-      <iframe  ref="b" width="100%" height="100%" frameborder="0" :src="src" class="self_iframe"></iframe>
-    </a-spin>
+    <Spin :spinning="loading" size="large">
+      <iframe ref="b" width="100%" height="100%" frameborder="0" :src="src" class="self_iframe"></iframe>
+    </Spin>
   </div>
 </template>
 
 <script>
 
+import {Spin} from "ant-design-vue";
+
 export default {
+  components: {Spin},
   props:['loading','src']
 }
 </script>

+ 117 - 0
src/views/dashboard/Analysis/chart/DashChartDemo.vue

@@ -0,0 +1,117 @@
+<template>
+  <div :style="{ padding: '0' }">
+    <div ref="main" style="width: 100%; height: 180px"></div>
+  </div>
+</template>
+
+<script>
+
+  export default {
+    name:"DashChartDemo",
+    props:{
+      color:{
+        default:'#E96B5F'
+      },
+      dataSource:{
+        default:70
+      }
+    },
+    mounted(){
+     this.drawChart()
+    },
+    data() {
+      return {
+        myChart: null,
+      }
+    },
+    watch:{
+      dataSource:function (newv,oldv){
+        this.drawChart()
+      }
+    },
+
+    methods:{
+      drawChart() {
+        let that =  this
+        // 基于准备好的dom,初始化echarts实例  这个和上面的main对应
+        that.myChart = that.$echarts.init(that.$refs.main);
+        // 指定图表的配置项和数据
+        let option = {
+          series: [
+            {
+              type: 'gauge',
+              radius:'100%',
+              center: ['50%', '70%'],
+              startAngle: 180,
+              endAngle: 0,
+              itemStyle: {
+                color: that.color,
+                 shadowColor: 'rgba(255,255,255,0.45)',
+                shadowBlur: 10,
+                shadowOffsetX: 2,
+                shadowOffsetY: 2
+              },
+              progress: {
+                show: true,
+                width: 12,
+                roundCap: true,
+              },
+              axisLine: {
+                roundCap: true,
+                lineStyle: {
+                  width: 12,
+                  color: [
+                    [1, '#F1F8FF']
+                  ]
+                }
+              },
+              axisTick: {
+                show: false
+              },
+              splitLine: {
+                show:false,
+
+              },
+              axisLabel: {
+                show:false,
+
+              },
+              pointer: {
+                show: false
+              },
+              title: {
+                show: false
+              },
+              detail: {
+                fontSize: 20,
+                fontWeight:300,
+                offsetCenter: [0, '-20%'],
+                valueAnimation: true,
+                formatter: function (value) {
+                  return value + '%';
+                },
+                color: 'auto'
+              },
+              data: [
+                {
+                  value: that.dataSource
+                }
+              ]
+            }
+          ]
+        };
+        // 使用刚指定的配置项和数据显示图表。
+        that.myChart.setOption(option);
+        window.addEventListener("resize", () => {
+          that.myChart.resize();
+        });
+      },
+    },
+    beforeDestroy() {
+      window.removeEventListener("resize", () => {
+        this.myChart.resize();
+      });
+    },
+
+  };
+</script>

+ 168 - 0
src/views/dashboard/Analysis/chart/areaChart.vue

@@ -0,0 +1,168 @@
+<template>
+  <div :style="{ padding: '0' }">
+    <div ref="area" style="width: 100%; height: 350px"></div>
+  </div>
+</template>
+
+<script>
+
+export default {
+  name:"areaChart",
+  props:{
+    dataSource:{
+      default:{
+        x:[],
+        pv:[],
+        uv:[]
+      }
+    },
+  },
+  data() {
+    return {
+      myChart: null,
+    }
+  },
+  mounted(){
+    this.drawChart()
+
+  },
+
+  watch:{
+    dataSource:{
+      handler:function (n,o){
+        this.drawChart()
+      },
+      deep:true
+    },
+
+  },
+
+  methods:{
+    drawChart() {
+      let that =  this
+      // 基于准备好的dom,初始化echarts实例  这个和上面的main对应
+      that.myChart = that.$echarts.init(that.$refs.area);
+      // 指定图表的配置项和数据
+      let option = {
+        color:['#544BEB','#F0B358'],
+        tooltip: {
+          trigger: 'axis',
+          axisPointer: {
+            type: 'cross',
+            label: {
+              backgroundColor: '#6a7985'
+            }
+          }
+        },
+
+        grid: {
+          left: '20px',
+          right: '40px',
+          bottom: '0',
+          top:'40px',
+          containLabel: true
+        },
+        xAxis: [
+          {
+            type: 'category',
+            boundaryGap: false,
+            axisTick: {
+              show: false
+            },
+            data: this.dataSource.x
+          }
+        ],
+        yAxis: [
+          {
+            type: 'value'
+          }
+        ],
+        series: [
+          {
+            name: 'UV',
+            type: 'line',
+            stack: 'Total',
+            symbol: 'circle',  //设定为实心点
+            symbolSize: 6,   //设定实心点的大小
+            color:"#544BEB",     //设定实线点的颜色
+            areaStyle: {
+              color:{
+                type: 'linear',
+                x: 0,
+                y: 0,
+                x2: 0,
+                y2: 1,
+                colorStops: [{
+                  offset: 0, color: '#544BEB' // 0% 处的颜色
+                }, {
+                  offset: 1, color: '#fff' // 100% 处的颜色
+                }],
+
+              }
+            },
+            emphasis: {
+              focus: 'series'
+            },
+            smooth:true,
+            lineStyle:{
+              color:'#544BEB',
+              width:2
+            },
+
+            data: this.dataSource.uv
+          },
+          {
+            name: 'PV',
+            type: 'line',
+            symbol: 'circle',  //设定为实心点
+            symbolSize: 6,   //设定实心点的大小
+            color:"#F0B358",     //设定实线点的颜色
+            stack: 'Total2',
+            areaStyle: {
+              color:{
+                type: 'linear',
+                x: 0,
+                y: 0,
+                x2: 0,
+                y2: 1,
+                colorStops: [{
+                  offset: 0, color: '#F0B358' // 0% 处的颜色
+                }, {
+                  offset: 1, color: '#fff' // 100% 处的颜色
+                }],
+
+              }
+            },
+            emphasis: {
+              focus: 'series'
+            },
+            smooth:true,
+            lineStyle:{
+              color:'#F0B358',
+              width:2
+            },
+
+            data: this.dataSource.pv
+          }
+        ]
+      };
+      // 使用刚指定的配置项和数据显示图表。
+      that.myChart.setOption(option);
+      window.addEventListener("resize", () => {
+        that.myChart.resize();
+      });
+    },
+  },
+
+  beforeDestroy() {
+    window.removeEventListener("resize", () => {
+      this.myChart.resize();
+    });
+  },
+
+};
+</script>
+
+<style scoped>
+
+</style>

+ 1000 - 0
src/views/dashboard/Analysis/homePage/adwebHomeV2-7.vue

@@ -0,0 +1,1000 @@
+<template>
+  <div class="home">
+<!--网站概况-->
+    <a-row class="top-title">
+      <a-col :span="24">
+          <span class="t1">
+            网站概况
+          </span>
+          <template  v-if="siteinfo.length > 1">
+<!--            <select-site @comMethods="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>
+      </a-col>
+    </a-row>
+
+    <!--基础信息-->
+    <a-row :gutter="[16,16]" class="r2">
+      <a-col :span="6" class="c1">
+        <a-spin :spinning="baseInfoLoading">
+          <div class="wrap">
+            <p class="mb">交付状态:<span class="big">{{ baseInfo.deliveryProgress | filter_Null_format}}</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>
+          </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>
+          </div>
+        </a-spin>
+      </a-col>
+      <a-col :span="12">
+        <div class="wrap">
+          <a-row>
+            <a-col :span="8">
+              <p class="big imgtitle">更多推广:</p>
+            </a-col>
+            <a-col :span="8">
+              <img src="../../assets/home2-7/Google.png" />
+            </a-col>
+            <a-col :span="8">
+              <img src="../../assets/home2-7/Facebook.png" />
+            </a-col>
+            <a-col :span="8">
+              <img src="../../assets/home2-7/YouTube.png" />
+            </a-col>
+            <a-col :span="8">
+              <img src="../../assets/home2-7/LinkedIn.png" />
+            </a-col>
+            <a-col :span="8">
+              <img src="../../assets/home2-7/Yandex.png" />
+            </a-col>
+          </a-row>
+        </div>
+      </a-col>
+    </a-row>
+
+    <!--网站物料完成情况-->
+    <a-row v-if="showMaterialStatistics"  class="r3">
+      <a-col>
+        <p class="title">网站物料完成情况
+<!--            <a class="detail_link" >-->
+<!--              <router-link :to="{ path: '/website/detective' }">-->
+<!--                详细检测>-->
+<!--              </router-link>-->
+<!--            </a>-->
+        </p>
+      </a-col>
+    </a-row>
+    <a-row v-if="showMaterialStatistics" class="r4" >
+      <a-col :span="8">
+        <p class="title">企业信息</p>
+        <a-spin :spinning="infoLoading">
+          <dash-chart  color="#E96B5F" :dataSource="enterpriseInfoPercent"></dash-chart>
+          <div class="wrap" v-if="enterpriseInfoOK != 0">
+            <div class="left">
+              <p>已完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in enterpriseInfoList">
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+          <div class="wrap" v-if="enterpriseInfoNO != 0">
+            <div class="left">
+              <p>未完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in enterpriseInfoList">
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="!item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+        </a-spin>
+
+      </a-col>
+      <a-col :span="8" class="c2">
+        <p class="title">产品信息</p>
+        <a-spin :spinning="infoLoading">
+          <dash-chart  color="#58CCA8" :dataSource="productInfoPercent"></dash-chart>
+          <div class="wrap" v-if="productInfoOK != 0">
+            <div class="left">
+              <p>已完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in productInfoList" >
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+          <div class="wrap" v-if="productInfoNO != 0">
+            <div class="left">
+              <p>未完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in productInfoList" >
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="!item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+        </a-spin>
+      </a-col>
+      <a-col :span="8">
+        <p class="title">内容中心</p>
+        <a-spin :spinning="infoLoading">
+          <dash-chart  color="#F0B358" :dataSource="newsInfoPercent"></dash-chart>
+          <div class="wrap" v-if="newsInfoOK != 0">
+            <div class="left">
+              <p>已完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in newsInfoList">
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+          <div class="wrap" v-if="newsInfoNO != 0">
+            <div class="left">
+              <p>未完成:</p>
+            </div>
+            <div class="right">
+              <template v-for="(item, index) in newsInfoList">
+                <router-link :to="{ path: item.menuPath}">
+                  <span class="theme-color" v-if="!item.finish">{{ item.label }}</span>
+                </router-link>
+              </template>
+            </div>
+          </div>
+        </a-spin>
+      </a-col>
+    </a-row>
+
+    <!--核心数据-->
+    <a-row v-if="selectSiteInfo.status == 1"  class="r3">
+      <a-col><p class="title">核心数据</p></a-col>
+    </a-row>
+    <a-row v-if="selectSiteInfo.status == 1"  class="r5" :gutter="[20,20]">
+      <a-col :span="4">
+        <div class="wrap effect">
+          <a-spin :spinning="coreInfoLoading">
+            <router-link :to="{ path: '/inquiry/list',query:{timeType:'thisWeek'} }">
+              <img src="../../assets/home2-7/weekEnquiry.svg" />
+              <div class="fr">
+                <p>本周询盘数</p>
+                <p class="theme-color">{{currentWeekEnquiryCount | filter_Null_format}}</p>
+              </div>
+            </router-link>
+          </a-spin>
+        </div>
+      </a-col>
+      <a-col :span="4">
+        <div class="wrap effect">
+          <a-spin :spinning="coreInfoLoading">
+            <router-link :to="{ path: '/inquiry/list',query:{timeType:'thisMonth'} }">
+              <img src="../../assets/home2-7/monthEnquiry.svg" />
+              <div class="fr">
+                <p>本月询盘数</p>
+                <p class="theme-color">{{currentMonthEnquiryCount | filter_Null_format}}</p>
+              </div>
+            </router-link>
+          </a-spin>
+        </div>
+      </a-col>
+      <a-col :span="4">
+        <router-link :to="{ path: '/inquiry/list' }">
+            <div class="wrap effect">
+              <a-spin :spinning="coreInfoLoading">
+                <img src="../../assets/home2-7/totalEnquiry.svg" />
+                <div class="fr">
+                  <p>累计询盘数</p>
+                  <p class="theme-color">{{ totalEnquiryCount  | filter_Null_format}}</p>
+                </div>
+              </a-spin>
+            </div>
+        </router-link>
+      </a-col>
+<!--      SEO套餐展示seo指标-->
+      <template v-if="isShow && baseInfo.planName.indexOf('SEO') !== -1">
+      <a-col :span="4" >
+        <div class="wrap blue">
+          <a-spin :spinning="coreInfoLoading">
+            <img src="../../assets/home2-7/seoReach.svg" />
+            <div class="fr">
+              <p>SEO目标达成数</p>
+              <p >{{appointWordCount | filter_Null_format}}</p>
+            </div>
+          </a-spin>
+        </div>
+      </a-col>
+        <a-col :span="4">
+          <router-link :to="{ path: '/marketing/keywordsWatch/' }">
+            <div class="wrap blue">
+              <a-spin :spinning="coreInfoLoading">
+                <img src="../../assets/home2-7/nowReach.svg"/>
+                <div class="fr">
+                  <p>实际达成数</p>
+                  <p class="theme-color">{{ currentAchieveCount | filter_Null_format }}</p>
+                </div>
+              </a-spin>
+            </div>
+          </router-link>
+        </a-col>
+      <a-col :span="4">
+        <div class="wrap blue">
+          <a-spin :spinning="coreInfoLoading">
+            <img src="../../assets/home2-7/seoReachRate.svg" />
+            <div class="fr">
+              <p>目标达成率</p>
+              <p >{{achievePercent | filter_Null_format}}</p>
+            </div>
+          </a-spin>
+
+        </div>
+      </a-col>
+      </template>
+<!--      非SEO套餐展示流量指标-->
+      <template v-else>
+        <a-col :span="4" >
+          <div class="wrap blue">
+            <a-spin :spinning="coreInfoLoading">
+              <img src="../../assets/home2-7/seoReach.svg" />
+              <div class="fr">
+                <p>本周流量</p>
+                <p >{{flowIndicator.uvWeekCount | filter_Null_format}}</p>
+              </div>
+            </a-spin>
+          </div>
+        </a-col>
+        <a-col :span="4">
+          <div class="wrap blue">
+            <a-spin :spinning="coreInfoLoading">
+              <img src="../../assets/home2-7/nowReach.svg" />
+              <div class="fr">
+                <p>本月流量</p>
+                <p >{{flowIndicator.uvMonthCount  | filter_Null_format}}</p>
+              </div>
+            </a-spin>
+          </div>
+        </a-col>
+        <a-col :span="4">
+          <div class="wrap blue">
+            <a-spin :spinning="coreInfoLoading">
+              <img src="../../assets/home2-7/seoReachRate.svg" />
+              <div class="fr">
+                <p>累计流量</p>
+                <p >{{flowIndicator.uvAllCount  | filter_Null_format}}</p>
+              </div>
+            </a-spin>
+
+          </div>
+        </a-col>
+      </template>
+      <a-col :span="24" style="margin-top: 10px">
+        <a-table :loading="coreDetailLoading" :columns="columns"  :rowKey="(record,index) => index" :pagination=false :data-source="coreDataTable">
+<!--          <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>
+
+      <a-row  class="r5-1">
+          <a-col :span="18" >
+            <div class="fl">
+              <a-button :type="timeChooseIndex == '7' ? 'primary' : ''" @click="changeTime('7')">最近7天</a-button>
+              <a-button :type="timeChooseIndex == '30' ? 'primary' : ''" @click="changeTime('30')">最近30天</a-button>
+              <a-button :type="timeChooseIndex == '180' ? 'primary' : ''" @click="changeTime('180')">最近六个月</a-button>
+            </div>
+            <div class="fr" v-if="coreDataChart.x.length > 0" >
+              <span><i></i>UV</span> <span><i></i>PV</span>
+            </div>
+            <a-spin :spinning="coreDetailLoading" style="float: left;width:100%">
+              <area-chart v-if="coreDataChart.x.length > 0" :dataSource="coreDataChart" ></area-chart>
+              <a-empty v-else style="float: right;width: 100%;margin-top: 110px;"></a-empty>
+            </a-spin>
+          </a-col>
+          <a-col :span="6"  >
+            <a-spin :spinning="coreDetailLoading">
+              <a-row :gutter="[20,20]">
+                <a-col :span="12">
+                  <div class="box b1">
+                    <p class="num">{{averageVisit}}</p>
+                    <p><img src="../../assets/home2-7/rijunfangwenshu.svg" />日均访问数</p>
+                  </div>
+                </a-col>
+                <a-col :span="12">
+                  <div class="box b2">
+                    <p class="num">{{ averageVisitDuration }}</p>
+                    <p><img src="../../assets/home2-7/pingjunfangwenshichang.svg" />平均会话时长</p>
+                  </div>
+                </a-col>
+                <a-col :span="12">
+                  <div class="box b3">
+                    <p class="num">{{bounceRate}}</p>
+                    <p><img src="../../assets/home2-7/tiaochulv.svg" />跳出率</p>
+                  </div>
+                </a-col>
+                <a-col :span="12">
+                  <div class="box b4">
+                    <p class="num">{{averageVisitPage}}</p>
+                    <p><img src="../../assets/home2-7/fangkepingjunfangwen.svg" />访客平均访问页面数</p>
+                  </div>
+                </a-col>
+              </a-row>
+            </a-spin>
+
+          </a-col>
+        </a-row>
+
+
+    </a-row>
+
+    <!--快捷使用-->
+    <a-row  class="r3">
+      <a-col><p class="title">快捷使用</p></a-col>
+    </a-row>
+
+
+    <!--建站角色-->
+    <a-row class="r6" :gutter="[10,0]" v-if="userRole == 'adweb_site_manager'">
+      <a-col :span="6">
+        <router-link :to="{ path: '/website/productSummary/productList' }">
+          <div class="wrap">
+            <p>产品明细<img src="../../assets/home2-7/zhutiku.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/deliver/AdwebSiteManageList' }">
+          <div class="wrap">
+            <p>站点管理<img src="../../assets/home2-7/zhandianguanli.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/deliver/adwebsite' }">
+          <div class="wrap">
+            <p>建站进度<img src="../../assets/home2-7/jianzhanjindu.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/deliver/serp/packagePurchaseHistory/list' }">
+          <div class="wrap">
+            <p>套餐绑定<img src="../../assets/home2-7/wuliaojiance.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+    </a-row>
+
+    <!--SEO角色-->
+    <a-row class="r6" :gutter="[10,0]" v-else-if="userRole == 'adweb_seo_manager'">
+      <a-col :span="6">
+        <router-link :to="{ path: '/marketing/keywordsWatch' }">
+          <div class="wrap">
+            <p>SEO关键词排名<img src="../../assets/home2-7/taocanguanli.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/deliver/serp/seoMarketPlan/list2' }">
+          <div class="wrap">
+            <p>套餐管理<img src="../../assets/home2-7/taocanbangding.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/operate/process' }">
+          <div class="wrap">
+            <p>SEO实施<img src="../../assets/home2-7/SEOshishi.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :span="6">
+        <router-link :to="{ path: '/operate/keywordsManage' }">
+          <div class="wrap">
+            <p>关键词管理<img src="../../assets/home2-7/guanjianciguanli.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+    </a-row>
+
+    <!--其他角色-->
+    <a-row class="r6" type="flex" :gutter="[10,0]" v-else>
+      <a-col :flex="1">
+        <router-link :to="{ path: '/website/productSummary/productList' }">
+          <div class="wrap">
+            <p>产品明细<img src="../../assets/home2-7/chanpingmingxi.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :flex="1">
+        <router-link :to="{ path: '/inquiry/list' }">
+          <div class="wrap">
+            <p>询盘列表<img src="../../assets/home2-7/xunpanliebiao.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :flex="1">
+        <router-link :to="{ path: '/marketing/keywordsWatch' }">
+          <div class="wrap">
+            <p>关键词排名<img src="../../assets/home2-7/SEOxiaoguo.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :flex="1">
+        <router-link :to="{ path: '/tools/home' }">
+          <div class="wrap">
+            <p>工具箱<img src="../../assets/home2-7/gongjuxiang.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+      <a-col :flex="1">
+        <router-link :to="{ path: '/seo/jobcontent' }">
+          <div class="wrap">
+            <p>SEO优化细节<img src="../../assets/home2-7/gongjuxiang.svg"/></p>
+          </div>
+        </router-link>
+      </a-col>
+    </a-row>
+
+    <!--服务团队-->
+    <a-row  class="r3" v-if="false">
+      <a-col><p class="title">服务团队</p></a-col>
+    </a-row>
+    <a-row class="r7" v-if="false">
+      <a-col :span="12" v-for="item in customerList">
+        <div class="wrap">
+            <span>{{ item.serviceType }}</span>
+            <span>{{ item.serviceName }}    {{item.phone}}    {{item.email}}</span>
+        </div>
+      </a-col>
+    </a-row>
+
+    <!-- 发版通知 -->
+    <a-modal v-model="showHomeMsg" wrapClassName="faban" :footer="null" width="700px" :maskClosable="false" centered>
+      <template slot="closeIcon">
+        <span class="self-close"><a-icon type="close" /></span>
+      </template>
+      <div class="top-bg">
+        <p>{{message.msgTitle}}</p>
+      </div>
+      <div class="info-wrap">
+        <div v-html="splitText(message.msgContent)"></div>
+        <img src="../../assets/home2-7/faban/bottom.svg" />
+      </div>
+    </a-modal>
+  </div>
+</template>
+
+<script>
+import dashChart from '../chart/DashChartDemo.vue'
+import areaChart from '../chart/areaChart.vue'
+import {getAction, getFileAccessHttpUrl, postAction} from '/@/api/manage/manage'
+import {store}  from '/@/store'
+import { useUserStore } from '/@/store/modules/user';
+// import selectSite from '/@/components/adweb/selectSite.vue'
+
+import '/@/views/dashboard/Analysis/less/home3.0.less';
+
+const  columns = [
+  {
+    title: '指标',
+    dataIndex: 'targetName',
+  },
+  {
+    title: '今日',
+    dataIndex: 'todayCount',
+  },
+  {
+    title: '昨日',
+    dataIndex: 'yesterdayCount',
+    scopedSlots: { customRender: 'yesterdayCount' },
+  },
+  {
+    title: '本周',
+    dataIndex: 'currentWeekCount',
+    scopedSlots: { customRender: 'currentWeekCount' },
+
+  },
+  {
+    title: '上周',
+    dataIndex: 'lastWeekCount',
+  },
+  {
+    title: '本月',
+    dataIndex: 'currentMonthCount',
+  },
+  {
+    title: '上月',
+    dataIndex: 'lastMonthCount',
+  },
+  {
+    title: '全部',
+    dataIndex: 'totalCount',
+  }
+]
+export default {
+  name: 'adwebHomeV2-7',
+  components:{dashChart,areaChart},
+  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,
+      showMaterialStatistics:false,
+      promoteCustomerService:{},
+      // 首页弹出消息
+      showHomeMsg: false,
+      message: {},
+      isShow: false,
+    }
+  },
+  created() {
+    // 跳出消息通知弹窗
+    this.getSysUpdateMsg();
+  },
+  mounted() {
+    this.userRole =  useUserStore().roleList;
+    this.getSiteInfo()
+  },
+  filters: {
+    filter_Null_format(value) {
+      if(value === '' || value === null || value === undefined){
+        return  '--'
+      }else{
+        return value
+      }
+    }
+  },
+  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('/sys/api/getSiteListByUid').then(function (res) {
+        if (res.code == 0) {
+          that.siteinfo = res.data
+          let isInSite = false
+          for (let i in res.data){
+            if(localStorage.getItem('siteCode') !== null && res.data[i].code === localStorage.getItem('siteCode')){
+              isInSite = true
+              that.selectSiteInfo = res.data[i]
+            }
+          }
+          if (localStorage.getItem('siteCode') !== null && isInSite) {
+            that.siteCode = localStorage.getItem("siteCode")
+          }else {
+            that.siteCode = res.data[0].code
+            that.selectSiteInfo = res.data[0]
+            localStorage.setItem("siteCode",res.data[0].code)
+          }
+          that.getAllInfo()
+        } else {
+          that.$message.error('站点获取失败,请刷新重试')
+        }
+      })
+    },
+
+    //改变站点
+    changeUser(value,e) {
+
+      this.siteCode = value
+      this.selectSiteInfo = e.data.attrs.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
+          }
+
+          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('获取核心数据图表信息失败,请刷新重试')
+        }
+      })
+    },
+
+  }
+}
+</script>
+
+<style lang="less">
+.home{
+  .ant-select{
+    color: #fff;
+    .ant-select-selection{
+      background-color: transparent;
+    }
+    .ant-select-arrow{
+      color: #fff;
+    }
+  }
+}
+
+</style>
+
+<style scoped lang="less">
+p,span{
+  color: #000;
+  margin: 0;
+}
+.theme-color{
+  color: @primary-color;
+}
+.title{
+  font-size: 18px;
+  color: #000;
+}
+
+
+</style>
+
+<style lang="less">
+.pop-wrap{
+  .ant-popover-inner-content{
+    padding: 0;
+  }
+
+  .wrap{
+    width: 400px;
+    padding: 20px 20px;
+    background: url("../../assets/home2-7/pop-bg.svg") no-repeat;
+    background-position: bottom right;
+    p{
+      line-height: 1.8;
+      i{
+        color: @primary-color;
+        margin-right: 10px;
+      }
+    }
+    .name{
+      font-size: 18px;
+      margin-bottom: 20px;
+    }
+
+    .job{
+      font-size: 15px;
+      color: #9f9f9f;
+    }
+
+    .ant-col-8{
+      text-align: right;
+    }
+  }
+}
+.faban{
+  .ant-modal{
+    .ant-modal-content{
+      background-color: transparent;
+      box-shadow: none;
+      .ant-modal-close{
+        top: 70px;
+        right: -10px;
+        .ant-modal-close-x{
+          width: auto;
+          height: auto;
+        }
+      }
+      .self-close{
+        i{
+          color: #fff;
+          border: 1px solid #fff;
+          border-radius: 50%;
+          width: 25px;
+          height: 25px;
+          display: block;
+          line-height: 25px;
+        }
+      }
+      .ant-modal-body{
+        .top-bg{
+          background: url("../../assets/home2-7/faban/topbg.png") no-repeat;
+          min-height: 242px;
+          background-size: 100% 100%;
+          display: flex;
+          justify-content: center;
+          align-items: flex-end;
+          font-size: 38px;
+          padding-bottom: 60px;
+          p{
+            color: #fff;
+          }
+        }
+        .info-wrap{
+          background: #fff;
+          padding: 0 40px;
+          overflow: hidden;
+          border-bottom-left-radius: 15px;
+          border-bottom-right-radius: 15px;
+          margin-top: -1px;
+          p{
+            position: relative;
+            padding-left: 30px;
+            margin-bottom: 5px;
+            letter-spacing: 1px;
+            &:before{
+              content: '';
+              position: absolute;
+              left: 0;
+              width: 15px;
+              height: 15px;
+              background: url("../../assets/home2-7/faban/dot.svg");
+              background-repeat: no-repeat;
+              top: 3px;
+            }
+          }
+          img{
+            width: 70px;
+            float: right;
+            padding: 40px 0;
+          }
+        }
+      }
+
+    }
+
+  }
+}
+</style>

+ 3 - 0
src/views/dashboard/Analysis/index.vue

@@ -12,6 +12,8 @@
       <a-radio :value="3">我的任务</a-radio>
     </a-radio-group>
   </div>
+
+  <adweb-home-v27 v-if="userRole != 'presale_vip'"></adweb-home-v27>
 </template>
 <script lang="ts" setup>
   import { ref } from 'vue';
@@ -19,6 +21,7 @@
   import IndexChart from './homePage/IndexChart.vue';
   import IndexBdc from './homePage/IndexBdc.vue';
   import IndexTask from './homePage/IndexTask.vue';
+  import adwebHomeV27 from './homePage/adwebHomeV2-7.vue'
 
   const indexStyle = ref(0);
 </script>

+ 336 - 0
src/views/dashboard/Analysis/less/home3.0.less

@@ -0,0 +1,336 @@
+
+.home{
+  .top-title{
+    margin-bottom: 15px;
+    .t1{
+      color: #fff;
+      font-size: 18px;
+      margin-right:5px
+    }
+    .t2{
+      font-size: 15px;
+      text-decoration: underline;
+      margin-left: 5px;
+    }
+    .ant-select{
+      color: #fff;
+      /deep/ .ant-select-selection{
+        background-color: transparent;
+      }
+      /deep/ .ant-select-arrow{
+        color: #fff;
+      }
+    }
+  }
+  .r2{
+    .c1 .wrap{
+      background: url("../../../assets/home2-7/left.svg") no-repeat #fff;
+      background-position: right top;
+    }
+    .c2 .wrap{
+      background: url("../../../assets/home2-7/right.svg") no-repeat #fff;
+      background-position: left top;
+    }
+    .wrap{
+      border-radius: 10px;
+      background: #fff;
+      padding: 20px 30px;
+      box-shadow: 0px 0px 15px 0px #544beb17;
+      height: 145px;
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
+      .mb{
+        margin-bottom: 20px;
+      }
+      p{
+        margin-bottom: 5px;
+        color: #000;
+        font-size: 13px;
+      }
+      .big{
+        font-size: 16px;
+      }
+      .btn_self{
+        font-size: 14px;
+        border-radius: 0;
+        height: auto;
+        padding: 3px 30px;
+        margin-top: 6%;
+        width: 120px;
+      }
+      img{
+        display: block;
+        width: 50%;
+      }
+      .imgtitle{
+        margin-bottom: 0;
+        margin-top: 8%;
+      }
+    }
+  }
+
+  .r3{
+    margin: 20px 0 10px;
+    .detail_link{
+      float: right;
+      font-size: 14px;
+    }
+  }
+
+  .r4{
+    background: #fff;
+    padding: 20px 20px 0 20px;
+    border-radius: 10px;
+    .title{
+      font-size: 15px;
+      margin: 0;
+    }
+    .wrap{
+      display: block;
+      overflow: hidden;
+      .left{
+        float: left;
+        width: 20%;
+        p{
+          margin-bottom: 15px;
+        }
+      }
+      .right{
+        float: right;
+        width: 80%;
+        span{
+          width: 33.33%;
+          display: block;
+          float: left;
+          margin-bottom: 15px;
+        }
+      }
+    }
+    .c2{
+      position: relative;
+      &:before{
+        content: '';
+        display: block;
+        width: 1px;
+        height: 70%;
+        background: #efefef;
+        position: absolute;
+        left: -25px;
+        top: 15%;
+      }
+      &:after{
+        content: '';
+        display: block;
+        width: 1px;
+        height: 70%;
+        background: #efefef;
+        position: absolute;
+        right: 25px;
+        top: 15%;
+      }
+    }
+  }
+
+  .r5{
+    background: #fff;
+    padding: 10px ;
+    border-radius: 10px;
+    margin: 0!important;
+    .wrap{
+      box-shadow: 0px 2px 4px 0px rgba(84,75,235,.3);
+      padding: 15px;
+      border-radius: 10px;
+      overflow: hidden;
+      background: #fff;
+      transition: all .3s;
+      &.blue{
+        box-shadow: 0px 2px 4px 0px rgba(88,203,168,.3);
+      }
+      &.effect:hover{
+        box-shadow: none;
+        background: rgb(241,248,255);
+      }
+      img{
+        width: 15px;
+      }
+      .fr{
+        float: right;
+        width: calc(100% - 15px);
+        text-align: center;
+        p:last-child{
+          font-size: 30px;
+          text-align: center;
+          margin-top: 10px;
+
+        }
+      }
+    }
+    /deep/ .ant-table-thead>tr>th{
+      background: rgb(241,248,255);
+      border: none;
+      color: #000;
+      padding: 10px;
+    }
+    /deep/ .ant-table-tbody .ant-table-row td{
+      padding: 10px;
+      color: #000;
+    }
+
+    .r5-1{
+      display: inline-block;
+      width: 100%;
+      margin-top: 30px;
+      .fl{
+        float: left;
+        position: relative;
+        .ant-btn{
+          border-radius: 0;
+          border: none;
+          margin-right: 10px;
+        }
+      }
+      .fr{
+        float: right;
+        line-height: 2;
+        span{
+          margin-right: 30px;
+          i{
+            display: inline-block;
+            width: 25px;
+            height: 3px;
+            background: #544BEB;
+            position: relative;
+            top: -4px;
+            margin-right: 20px;
+          }
+          &:last-child i{
+            background: #F0B358;
+          }
+        }
+      }
+    }
+    .box{
+      border-radius: 10px;
+      text-align: center;
+      min-height: 180px;
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
+      p{
+        color: #fff;
+        img{
+          width: 19px;
+          margin: -5px 10px 0 0;
+        }
+      }
+      .num{
+        font-size: 30px;
+        margin-bottom: 10px;
+      }
+      &.b1{
+        background: rgb(233,107,95);
+      }
+      &.b2{
+        background: rgb(88,204,168);
+      }
+      &.b3{
+        background: rgb(124,152,252);
+      }
+      &.b4{
+        background: #F0B358;
+      }
+    }
+  }
+
+  .r6{
+    background: #fff;
+    padding: 10px 5px;
+    border-radius: 10px;
+    margin: 0!important;
+    .ant-col:not(:last-child) .wrap:after{
+      content: '';
+      display: block;
+      position: absolute;
+      right: 0;
+      top: 10%;
+      height: 70%;
+      width: 2px;
+      background: #f1f1f1;
+    }
+    .wrap{
+      padding: 45px 60px;
+      background: #fff;
+      transition: all .3s;
+      cursor: pointer;
+      border-radius: 10px;
+      &:hover{
+        background: #f1f8ff;
+      }
+      p{
+        line-height: 30px;
+        font-size: 18px;
+        img{
+          width: 30px;
+          float: right;
+        }
+      }
+    }
+  }
+
+  .r7{
+    background: #fff;
+    padding: 15px 5px;
+    border-radius: 10px;
+    margin: 0!important;
+    .ant-col{
+      padding: 20px 0 20px 30px;
+    }
+    .wrap{
+      display: flex;
+      span:first-child{
+        background: #f1f8ff;
+        float: left;
+        padding: 0px 20px;
+        border-radius: 50%;
+        width: 70px;
+        height: 70px;
+        text-align: center;
+        font-size: 15px;
+        display: flex;
+        justify-content: center;
+        align-items: center;
+      }
+      span:last-child{
+        display: flex;
+        align-items: center;
+        padding-left: 50px;
+      }
+    }
+  }
+
+}
+
+
+
+@media (max-width: 1600px) {
+  .home .r2 .wrap .imgtitle{
+    margin-top: 1%;
+  }
+  .home .r2 .wrap .btn_self{
+    font-size: 12px;
+    margin-top: 4%;
+    width: auto;
+  }
+}
+
+
+@media (min-width: 2000px) {
+  .home .r2 .wrap img {
+    display: block;
+    width: 45%;
+  }
+  .home .r2 .wrap .imgtitle{
+    margin-top: 7%;
+  }
+}