Forráskód Böngészése

SEO管理关键词管理重构

zq940222 5 hónapja
szülő
commit
3138ff9483
2 módosított fájl, 159 hozzáadás és 261 törlés
  1. 1 51
      src/api/manage/manage.ts
  2. 158 210
      src/views/adweb/seo/SeoKeywordsRankList.vue

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

@@ -1,4 +1,3 @@
-import { VueElement } from 'vue';
 import { defHttp } from '/@/utils/http/axios';
 
 const api = {
@@ -151,44 +150,15 @@ export function saveService(parameter) {
  * @param parameter
  * @returns {*}
  */
-export function downFile(url, parameter, timeout) {
+export function downFile(url, parameter) {
   return defHttp.request({
     url: url,
     params: parameter,
     method: 'get',
-    timeout: timeout ? timeout : 1000 * 30,
     responseType: 'blob'
   })
 }
 
-/**
- * 下载文件
- * @param url 文件路径
- * @param fileName 文件名
- * @param parameter
- * @returns {*}
- */
-export function downloadFile(url, fileName, parameter) {
-  return downFile(url, parameter).then((data) => {
-    if (!data || data.size === 0) {
-      VueElement.prototype['$message'].warning('文件下载失败')
-      return
-    }
-    if (typeof window.navigator.msSaveBlob !== 'undefined') {
-      window.navigator.msSaveBlob(new Blob([data]), fileName)
-    } else {
-      let url = window.URL.createObjectURL(new Blob([data]))
-      let link = document.createElement('a')
-      link.style.display = 'none'
-      link.href = url
-      link.setAttribute('download', fileName)
-      document.body.appendChild(link)
-      link.click()
-      document.body.removeChild(link) //下载完成移除元素
-      window.URL.revokeObjectURL(url) //释放掉blob对象
-    }
-  })
-}
 
 /**
  * 文件上传 用于富文本上传图片
@@ -207,23 +177,3 @@ export function uploadAction(url, parameter) {
   })
 }
 
-/**
- * 获取文件服务访问路径
- * @param avatar
- * @param subStr
- * @returns {*}
- */
-export function getFileAccessHttpUrl(avatar, subStr) {
-  if (!subStr) subStr = 'http'
-  try {
-    if (avatar && avatar.startsWith(subStr)) {
-      return avatar;
-    } else {
-      if (avatar && avatar.length > 0 && avatar.indexOf('[') == -1) {
-        return window._CONFIG['staticDomainURL'] + "/" + avatar;
-      }
-    }
-  } catch (err) {
-    return;
-  }
-}

+ 158 - 210
src/views/adweb/seo/SeoKeywordsRankList.vue

@@ -70,19 +70,19 @@
           <p class="t1">指定词排名</p>
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO1.svg"/>1-10位</div>
-            <div class="d2"><a @click="getTableInfoRank(3,1)">{{ rankInfo.appointKeyword.firstNum | filtr_null }}</a>个
+            <div class="d2"><a @click="getTableInfoRank(3,1)">{{ rankInfo.appointKeyword.firstNum }}</a>个
             </div>
           </div>
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO2.svg"/>11-30位</div>
             <div class="d2"><a @click="getTableInfoRank(7,1)">{{
-                rankInfo.appointKeyword.secondNum | filtr_null }}</a>个
+                rankInfo.appointKeyword.secondNum }}</a>个
             </div>
           </div>
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO3.svg"/>31-100位</div>
             <div class="d2"><a @click="getTableInfoRank(8,1)">{{
-                rankInfo.appointKeyword.thirdType | filtr_null}}</a>个
+                rankInfo.appointKeyword.thirdType }}</a>个
             </div>
           </div>
         </div>
@@ -93,19 +93,19 @@
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO1.svg"/>1-10位</div>
             <div class="d2">
-              <a @click="longGetTableInfoRank(3)">{{ rankInfo.longTailKeyword.firstNum | filtr_null}}</a>个
+              <a @click="longGetTableInfoRank(3)">{{ rankInfo.longTailKeyword.firstNum }}</a>个
             </div>
           </div>
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO2.svg"/>11-30位</div>
             <div class="d2"><a @click="longGetTableInfoRank(7)">{{
-                rankInfo.longTailKeyword.secondNum | filtr_null}}</a>个
+                rankInfo.longTailKeyword.secondNum }}</a>个
             </div>
           </div>
           <div class="content">
             <div class="d1"><img src="../../../assets/seo/NO3.svg"/>31-100位</div>
             <div class="d2"><a @click="longGetTableInfoRank(8)">{{
-                rankInfo.longTailKeyword.thirdType | filtr_null}}</a>个
+                rankInfo.longTailKeyword.thirdType }}</a>个
             </div>
           </div>
         </div>
@@ -138,7 +138,7 @@
               <a-input
                 placeholder="请输入关键词"
                 style="width: 200px;margin-right: 8px"
-                v-model="keywords"
+                v-model:value="keywords"
               >
               </a-input>
               <a-button type="primary" preIcon="ant-design:search-outlined" style="margin-right: 8px" @click="setTable">
@@ -149,7 +149,7 @@
                 重置
               </a-button>
 
-              <a-button ghost type="primary"  @click="handleExportXlsLU('关键词排名',1)" style="margin-left: 8px" :loading="excelLoading">导出Excel</a-button>
+<!--              <a-button ghost type="primary"  @click="handleExportXlsLU('关键词排名',1)" style="margin-left: 8px" :loading="excelLoading">导出Excel</a-button>-->
             </a-col>
           </a-row>
         </a-col>
@@ -167,39 +167,39 @@
             class="j-table-force-nowrap"
 
             @change="handleTableChange">
-            <template slot='dataNo' slot-scope="text, record, rowIndex">
-              {{(ipagination.current - 1) * ipagination.pageSize + rowIndex + 1}}
-            </template>
-
-            <template class="title" slot="keywords" slot-scope="text,record">
-              <span style="white-space:pre">{{ text }}</span>
-              <span v-if="comprehenInfo.specifyKeywordNum != null && comprehenInfo.longTailKeywordNum != null">
+            <template #bodyCell="{ column, record, index, text }">
+              <template v-if="column.key === 'rowIndex' ">
+                {{(ipagination.current - 1) * ipagination.pageSize + index + 1}}
+              </template>
+
+              <template class="title" v-if="column.key === 'keywords'">
+                <span style="white-space:pre">{{ text }}</span>
+                <span v-if="comprehenInfo.specifyKeywordNum != null && comprehenInfo.longTailKeywordNum != null">
                 <a-tag v-if="record.keywordType == 1" color="blue" style="margin-left: 8px">指定</a-tag>
               </span>
-            </template>
-            <template slot="keywordsLength" slot-scope="text,record">
-              <span >{{ text }}</span>
-            </template>
+              </template>
 
-            <template class="tag" slot="tag" slot-scope="text, record, rowIndex">
-              <a-popover v-if="text != 0" placement="bottom"   overlayClassName="self-pop">
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 "src="../../../assets/seo/NO2.svg"/>
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
-                <template slot="content">
-                  <p style="margin-bottom: 0">第{{ parseInt((text-1)/10) + 1 }}页,总排名{{ text}}</p>
-                </template>
-                <span style="cursor: default;margin-left: 5px">{{text}}</span>
-              </a-popover>
-              <span v-else>
+              <template class="tag" v-if="column.key === 'tag'">
+                <a-popover v-if="text != 0" placement="bottom"   overlayClassName="self-pop">
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 " src="../../../assets/seo/NO2.svg"/>
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
+                  <template slot="content">
+                    <p style="margin-bottom: 0">第{{ parseInt((text-1)/10) + 1 }}页,总排名{{ text }}</p>
+                  </template>
+                  <span style="cursor: default;margin-left: 5px">{{text}}</span>
+                </a-popover>
+                <span v-else>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 "src="../../../assets/seo/NO2.svg"/>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
                 {{text}}</span>
+              </template>
+              <template v-if="column.key === 'action'">
+                <a-button  size="small" @click="gotoSearch(record.keywords)" type="primary">去查询</a-button>
+              </template>
             </template>
-            <template slot="action" slot-scope="text,record">
-              <a-button  size="small" @click="gotoSearch(record.keywords)" type="primary">去查询</a-button>
-            </template>
+
 
           </a-table>
         </a-col>
@@ -230,9 +230,10 @@
               <a-input
                 placeholder="请输入关键词"
                 style="width: 200px;margin-right: 8px"
-                v-model="longKeywords"
+                v-model:value="longKeywords"
               >
               </a-input>
+
               <a-button type="primary" preIcon="ant-design:search-outlined" style="margin-right: 8px" @click="longSetTable">
                 查询
               </a-button>
@@ -240,8 +241,7 @@
               <a-button  ghost type="primary" preIcon="ant-design:reload-outlined" @click="longSearchReset">
                 重置
               </a-button>
-
-              <a-button ghost type="primary"  @click="handleExportXlsLU('关键词排名',2)" style="margin-left: 8px" :loading="longExcelLoading">导出Excel</a-button>
+<!--              <a-button ghost type="primary"  @click="handleExportXlsLU('关键词排名',2)" style="margin-left: 8px" :loading="longExcelLoading">导出Excel</a-button>-->
             </a-col>
           </a-row>
         </a-col>
@@ -259,41 +259,30 @@
             class="j-table-force-nowrap"
 
             @change="handleLongTableChange">
-            <template slot='dataNo' slot-scope="text, record, rowIndex">
-              {{(longIpagination.current - 1) * longIpagination.pageSize + rowIndex + 1}}
-            </template>
-
-            <template class="title" slot="keywords" slot-scope="text,record">
-              <span style="white-space:pre">{{ text }}</span>
-              <span v-if="comprehenInfo.specifyKeywordNum != null && comprehenInfo.longTailKeywordNum != null">
-                <a-tag v-if="record.keywordType == 1" color="blue" style="margin-left: 8px">指定</a-tag>
-                <!--              <a-tag v-if="record.keywordType == 2" color="green" style="margin-left: 8px">长尾</a-tag>-->
-              </span>
-            </template>
-            <template slot="keywordsLength" slot-scope="text,record">
-              <span >{{ text }}</span>
-            </template>
-
-            <template class="tag" slot="tag" slot-scope="text, record, rowIndex">
-              <a-popover v-if="text != 0" placement="bottom"   overlayClassName="self-pop">
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 "src="../../../assets/seo/NO2.svg"/>
-                <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
-                <template slot="content">
-                  <p style="margin-bottom: 0">第{{ parseInt((text-1)/10) + 1 }}页,总排名{{ text}}</p>
-                </template>
-                <span style="cursor: default;margin-left: 5px">{{text}}</span>
-              </a-popover>
-              <span v-else>
+            <template #bodyCell="{column, record, index, text}">
+              <template v-if="column.key === 'rowIndex'">
+                {{(longIpagination.current - 1) * longIpagination.pageSize + index + 1}}
+              </template>
+              <template class="tag" v-if="column.key === 'tag'">
+                <a-popover v-if="text != 0" placement="bottom"   overlayClassName="self-pop">
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 "src="../../../assets/seo/NO2.svg"/>
+                  <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
+                  <template slot="content">
+                    <p style="margin-bottom: 0">第{{ parseInt((text-1)/10) + 1 }}页,总排名{{ text}}</p>
+                  </template>
+                  <span style="cursor: default;margin-left: 5px">{{text}}</span>
+                </a-popover>
+                <span v-else>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 1 && text <= 10 " src="../../../assets/seo/NO1.svg"/>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 11 && text <= 20 "src="../../../assets/seo/NO2.svg"/>
                   <img style="width: 18px;position: relative;top: -2px;" v-if="text >= 21 && text <= 30 " src="../../../assets/seo/NO3.svg"/>
                 {{text}}</span>
+              </template>
+              <template slot="action" v-if="column.key === 'action'">
+                <a-button  size="small" @click="gotoSearch(record.keywords)" type="primary">去查询</a-button>
+              </template>
             </template>
-            <template slot="action" slot-scope="text,record">
-              <a-button  size="small" @click="gotoSearch(record.keywords)" type="primary">去查询</a-button>
-            </template>
-
           </a-table>
         </a-col>
       </a-card>
@@ -307,7 +296,6 @@
 import { getAction, downFile} from '@/api/manage/manage'
 import selectSite from '@/components/adweb/selectSite.vue';
 import { filterObj } from '/@/utils/common/compUtils';
-
 export default {
   name: 'seoKeywordsRankList',
   components: {
@@ -326,15 +314,12 @@ export default {
           width: 40,
           align: 'center',
           fixed: 'left',
-          scopedSlots: { customRender: 'dataNo' },
-
         },
         {
           title: '关键词',
           dataIndex: 'keywords',
           key: 'keywords',
           fixed: 'left',
-          scopedSlots: { customRender: 'keywords' },
           width: 350,
         },
       ],
@@ -346,15 +331,12 @@ export default {
           width: 40,
           align: 'center',
           fixed: 'left',
-          scopedSlots: { customRender: 'dataNo' },
-
         },
         {
           title: '关键词',
           dataIndex: 'keywords',
           key: 'keywords',
           fixed: 'left',
-          scopedSlots: { customRender: 'keywords' },
           width: 350,
         },
       ],
@@ -429,31 +411,6 @@ export default {
   mounted() {
     this.getSiteInfo()
   },
-  filters: {
-    first: function (value) {
-      if (value && value != null) {
-        let a = value.split('/')
-        return a[0]
-      } else {
-        return '- '
-      }
-    },
-    last: function (value) {
-      if (value && value != null) {
-        let a = value.split('/')
-        return a[1]
-      } else {
-        return ' -'
-      }
-    },
-    filtr_null: function (value) {
-      if (value != null) {
-        return value
-      } else {
-        return '- '
-      }
-    },
-  },
   watch: {
     '$route.query': {
       handler: function (val) {
@@ -472,7 +429,7 @@ export default {
     getAllInfo() {
       this.getComprehenInfo()
     },
-    resetAllInfo(){
+    resetAllInfo() {
       this.comprehenInfo = {}
       this.rankInfo.appointKeyword = {}
       this.rankInfo.longTailKeyword = {}
@@ -488,32 +445,26 @@ export default {
     //由于页面的业务关联很多,故将所有的查询条件封装
     setTableQuery() {
       this.queryParam.siteCode = this.siteCode
-      console.log(this.queryParam)
-      if(this.show == 3){
+      if (this.show == 3) {
         this.queryParam.rankStart = '1'
         this.queryParam.rankEnd = '10'
-      }
-      else if(this.show == 4){
+      } else if (this.show == 4) {
         this.queryParam.rankStart = '1'
         this.queryParam.rankEnd = '30'
 
-      }
-      else if(this.show == 5){
+      } else if (this.show == 5) {
         this.queryParam.rankStart = '1'
         this.queryParam.rankEnd = '50'
-      }
-      else if(this.show == 6){
+      } else if (this.show == 6) {
         this.queryParam.rankStart = '1'
         this.queryParam.rankEnd = '100'
-      }
-      else if(this.show == 7){
+      } else if (this.show == 7) {
         this.queryParam.rankStart = '11'
         this.queryParam.rankEnd = '30'
-      }
-      else if(this.show == 8){
+      } else if (this.show == 8) {
         this.queryParam.rankStart = '31'
         this.queryParam.rankEnd = '100'
-      }else{
+      } else {
         this.queryParam.rankStart = undefined
         this.queryParam.rankEnd = undefined
       }
@@ -521,7 +472,7 @@ export default {
       this.queryParam.keywords = this.keywords
       this.loadData(1)
     },
-    setTable(){
+    setTable() {
       this.queryParam.reachStandard = undefined
       this.setTableQuery()
     },
@@ -552,30 +503,30 @@ export default {
       this.loading = true
       getAction(this.url.list, params).then((res) => {
         if (res.success) {
-          let alldata  = res.result.records
-          if(alldata.length > 0){
-            for(let i in alldata){
+          let alldata = res.result.records
+          if (alldata.length > 0) {
+            for (let i in alldata) {
               let rankInfo = alldata[i].rankInfo;
               a.push({
-                id:alldata[i].id,
-                keywords:alldata[i].keywords,
-                keywordType:alldata[i].keywordType,
-                keywordsLength:alldata[i].keywordsLength,
-                rankInfo:rankInfo,
+                id: alldata[i].id,
+                keywords: alldata[i].keywords,
+                keywordType: alldata[i].keywordType,
+                keywordsLength: alldata[i].keywordsLength,
+                rankInfo: rankInfo,
                 ...rankInfo
               })
             }
             this.dataSource = a;
             this.getTableColums()
             this.ipagination.total = res.result.total
-          }else{
+          } else {
             this.dataSource = a;
             this.ipagination.total = 0
           }
 
         }
         if (res.code === 510) {
-          this.$message.warning(res.message)
+          // this.$message.warning(res.message)
         }
         this.loading = false
       })
@@ -584,10 +535,10 @@ export default {
     //先执行获取site信息,只有在获取到siteCode之后,才能执行以下方法
     getSiteInfo() {
       let that = this
-      getAction('/seo/seoKeywordsRank/getAllSites').then(function (res) {
+      getAction('/seo/seoKeywordsRank/getAllSites').then(function(res) {
         if (res.code == 200) {
           that.siteinfo = res.result
-          if(res.result.length > 0){
+          if (res.result.length > 0) {
             let isInSite = false
             for (let i in res.result) {
               if (localStorage.getItem('siteCode') !== null && res.result[i].code === localStorage.getItem('siteCode')) {
@@ -604,10 +555,10 @@ export default {
             }
           }
           //如果是从客户案例过来的数据,直接走下面方法
-          if(that.routerQuery.code){
+          if (that.routerQuery.code) {
             let rowData = {}
-            for(let i in res.result){
-              if(that.routerQuery.code === res.result[i].code){
+            for (let i in res.result) {
+              if (that.routerQuery.code === res.result[i].code) {
                 rowData = res.result[i]
               }
             }
@@ -623,7 +574,7 @@ export default {
           that.resetAllInfo()
           that.getAllInfo()
         } else {
-          that.$message.error('获取站点code失败,请刷新重试')
+          // that.$message.error('获取站点code失败,请刷新重试')
         }
       })
     },
@@ -634,7 +585,7 @@ export default {
       if (Object.keys(sorter).length > 0 && sorter.column) {
         this.isorter.column = sorter.field;
         this.isorter.order = "ascend" === sorter.order ? "asc" : "desc"
-      } else{
+      } else {
         this.isorter.column = '';
         this.isorter.order = '';
       }
@@ -644,11 +595,11 @@ export default {
     getQueryParams() {
       //获取查询条件
       let sqp = {}
-      if(this.superQueryParams){
-        sqp['superQueryParams']=encodeURI(this.superQueryParams)
+      if (this.superQueryParams) {
+        sqp['superQueryParams'] = encodeURI(this.superQueryParams)
         sqp['superQueryMatchType'] = this.superQueryMatchType
       }
-      var param = Object.assign(sqp, this.queryParam, this.isorter ,this.filters);
+      var param = Object.assign(sqp, this.queryParam, this.isorter, this.filters);
       param.field = this.getQueryField();
       param.pageNo = this.ipagination.current;
       param.pageSize = this.ipagination.pageSize;
@@ -657,7 +608,7 @@ export default {
     getQueryField() {
       //TODO 字段权限控制
       var str = "id,";
-      this.columns.forEach(function (value) {
+      this.columns.forEach(function(value) {
         str += "," + value.dataIndex;
       });
       return str;
@@ -687,9 +638,8 @@ export default {
       getAction('/seo/seoKeywordsRank/comprehensiveInfo', d).then(res => {
         if (res.code == 200) {
           that.comprehenInfo = res.result
-          console.log(res.result)
         }
-      }).finally(()=>{
+      }).finally(() => {
         this.getRankInfo()
         this.setTableQuery()
         this.longSetTableQuery()
@@ -754,23 +704,23 @@ export default {
         key: 'action',
         align: 'center',
         scopedSlots: { customRender: 'action' },
-        fixed:'right',
+        fixed: 'right',
         width: 50
       },)
     },
 
     //点击排名数量事件
-    getTableInfoRank(d,keywordType) {
+    getTableInfoRank(d, keywordType) {
       this.show = d
       this.queryParam.reachStandard = undefined
-      if(keywordType){
+      if (keywordType) {
         this.keywordType = keywordType
       }
       this.setTableQuery()
     },
 
     //点击第一行五个指标的种类
-    changeKeywordType(){
+    changeKeywordType() {
       this.queryParam.reachStandard = 1
       this.queryParam.rankStart = undefined
       this.queryParam.rankEnd = undefined
@@ -779,49 +729,52 @@ export default {
     },
 
     //表格内的去查询按钮
-    gotoSearch(word){
+    gotoSearch(word) {
       window.open("https://www.google.com/search?q=" + word, '_blank');
     },
 
-    handleExportXlsLU(fileName,keywordType){
+    handleExportXlsLU(fileName, keywordType) {
       let that = this
       let param = {
         siteCode: that.queryParam.siteCode,
         subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : '',
         keywordType: keywordType
       }
-      if (param.siteId === 0) {
-        this.$message.warning("请先选择站点!");
+      if (param.siteCode === '') {
+        console.log(123)
+        // this.$message.warning("请先选择站点!");
         return;
       }
-      if(keywordType == 1){
+      if (keywordType == 1) {
         this.excelLoading = true;
-      }else{
+      } else {
         this.longExcelLoading = true;
       }
 
-      downFile("/seo/seoKeywords/exportExcel",param).then((data)=>{
-        if(keywordType == 1){
+      downFile("/seo/seoKeywords/exportExcel", param).then((data) => {
+        if (keywordType === 1) {
           this.excelLoading = false;
-        }else{
+        } else {
           this.longExcelLoading = false;
         }
         if (!data) {
-          this.$message.warning("文件下载失败")
+          console.log(321)
+          // this.$message.warning("文件下载失败")
           return
         }
-        if (data.size == 0) {
-          this.$message.warning("当前站点未有关键词数据,文件导出失败")
+        if (data.size === 0) {
+          console.log(111)
+          // this.$message.warning("当前站点未有关键词数据,文件导出失败")
           return
         }
         if (typeof window.navigator.msSaveBlob !== 'undefined') {
-          window.navigator.msSaveBlob(new Blob([data],{type: 'application/vnd.ms-excel'}), fileName+'.xlsx')
-        }else{
-          let url = window.URL.createObjectURL(new Blob([data],{type: 'application/vnd.ms-excel'}))
+          window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
+        } else {
+          let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
           let link = document.createElement('a')
           link.style.display = 'none'
           link.href = url
-          link.setAttribute('download', fileName+'.xlsx')
+          link.setAttribute('download', fileName + '.xlsx')
           document.body.appendChild(link)
           link.click()
           document.body.removeChild(link); //下载完成移除元素
@@ -830,14 +783,10 @@ export default {
       })
     },
 
-    getServiceDays(planStartTime) {
-      return moment().diff(moment(planStartTime), 'days') + 1;
-    },
-
     //按排名排序
-    rankingClick(){
+    rankingClick() {
       let that = this;
-      if(that.rankingButtonStatus == false){
+      if (that.rankingButtonStatus == false) {
         that.rankingButtonStatus = true
         that.rankingButtonArrow = 'arrow-up'
         that.wordsButtonStatus = false
@@ -845,12 +794,12 @@ export default {
 
         that.queryParam.buttonColmn = 'ranking';
         that.queryParam.buttonSort = 'asc';
-      } else if(that.rankingButtonStatus == true && that.rankingButtonArrow == 'arrow-up'){
+      } else if (that.rankingButtonStatus == true && that.rankingButtonArrow == 'arrow-up') {
         that.rankingButtonArrow = 'arrow-down'
 
         that.queryParam.buttonColmn = 'ranking';
         that.queryParam.buttonSort = 'desc';
-      }else if(that.rankingButtonArrow == 'arrow-down'){
+      } else if (that.rankingButtonArrow == 'arrow-down') {
         that.rankingButtonStatus = false
         that.queryParam.buttonColmn = '';
         that.queryParam.buttonSort = '';
@@ -859,9 +808,9 @@ export default {
     },
 
     //按字数排序
-    wordsClick(){
+    wordsClick() {
       let that = this;
-      if(that.wordsButtonStatus == false){
+      if (that.wordsButtonStatus == false) {
         that.wordsButtonStatus = true
         that.wordsButtonArrow = 'arrow-up'
         that.rankingButtonStatus = false
@@ -869,12 +818,12 @@ export default {
 
         that.queryParam.buttonColmn = 'words';
         that.queryParam.buttonSort = 'asc';
-      } else if(that.wordsButtonStatus == true && that.wordsButtonArrow == 'arrow-up'){
+      } else if (that.wordsButtonStatus == true && that.wordsButtonArrow == 'arrow-up') {
         that.wordsButtonArrow = 'arrow-down'
 
         that.queryParam.buttonColmn = 'words';
         that.queryParam.buttonSort = 'desc';
-      }else if(that.wordsButtonArrow == 'arrow-down'){
+      } else if (that.wordsButtonArrow == 'arrow-down') {
         that.wordsButtonStatus = false
         that.queryParam.buttonColmn = '';
         that.queryParam.buttonSort = '';
@@ -895,30 +844,30 @@ export default {
       this.longLoading = true
       getAction(this.url.list, params).then((res) => {
         if (res.success) {
-          let alldata  = res.result.records
-          if(alldata.length > 0){
-            for(let i in alldata){
+          let alldata = res.result.records
+          if (alldata.length > 0) {
+            for (let i in alldata) {
               let rankInfo = alldata[i].rankInfo;
               a.push({
-                id:alldata[i].id,
-                keywords:alldata[i].keywords,
-                keywordType:alldata[i].keywordType,
-                keywordsLength:alldata[i].keywordsLength,
-                rankInfo:rankInfo,
+                id: alldata[i].id,
+                keywords: alldata[i].keywords,
+                keywordType: alldata[i].keywordType,
+                keywordsLength: alldata[i].keywordsLength,
+                rankInfo: rankInfo,
                 ...rankInfo
               })
             }
             this.longDataSource = a;
             this.longGetTableColums()
             this.longIpagination.total = res.result.total
-          }else{
+          } else {
             this.longDataSource = a;
             this.longIpagination.total = 0
           }
 
         }
         if (res.code === 510) {
-          this.$message.warning(res.message)
+          // this.$message.warning(res.message)
         }
         this.longLoading = false
       })
@@ -975,7 +924,7 @@ export default {
         key: 'action',
         align: 'center',
         scopedSlots: { customRender: 'action' },
-        fixed:'right',
+        fixed: 'right',
         width: 50
       },)
     },
@@ -985,31 +934,26 @@ export default {
       let that = this;
       that.longQueryParam.siteCode = this.siteCode
       console.log(that.longQueryParam)
-      if(that.longShow == 3){
+      if (that.longShow == 3) {
         that.longQueryParam.rankStart = '1'
         that.longQueryParam.rankEnd = '10'
-      }
-      else if(that.longShow == 4){
+      } else if (that.longShow == 4) {
         that.longQueryParam.rankStart = '1'
         that.longQueryParam.rankEnd = '30'
 
-      }
-      else if(that.longShow == 5){
+      } else if (that.longShow == 5) {
         that.longQueryParam.rankStart = '1'
         that.longQueryParam.rankEnd = '50'
-      }
-      else if(that.longShow == 6){
+      } else if (that.longShow == 6) {
         that.longQueryParam.rankStart = '1'
         that.longQueryParam.rankEnd = '100'
-      }
-      else if(that.longShow == 7){
+      } else if (that.longShow == 7) {
         that.longQueryParam.rankStart = '11'
         that.longQueryParam.rankEnd = '30'
-      }
-      else if(that.longShow == 8){
+      } else if (that.longShow == 8) {
         that.longQueryParam.rankStart = '31'
         that.longQueryParam.rankEnd = '100'
-      }else{
+      } else {
         that.longQueryParam.rankStart = undefined
         that.longQueryParam.rankEnd = undefined
       }
@@ -1017,7 +961,7 @@ export default {
       that.longLoadData(1)
     },
 
-    longSetTable(){
+    longSetTable() {
       this.longQueryParam.reachStandard = undefined
       this.longSetTableQuery()
     },
@@ -1043,7 +987,7 @@ export default {
     },
 
     //点击第一行五个指标的种类
-    longChangeKeywordType(){
+    longChangeKeywordType() {
       this.longQueryParam.reachStandard = 1
       this.longQueryParam.rankStart = undefined
       this.longQueryParam.rankEnd = undefined
@@ -1057,7 +1001,7 @@ export default {
       if (Object.keys(sorter).length > 0 && sorter.column) {
         this.longIsorter.column = sorter.field;
         this.longIsorter.order = "ascend" == sorter.order ? "asc" : "desc"
-      } else{
+      } else {
         this.longIsorter.column = '';
         this.longIsorter.order = '';
       }
@@ -1068,7 +1012,7 @@ export default {
     getLongQueryParams() {
       //获取查询条件
       let sqp = {}
-      var param = Object.assign(sqp, this.longQueryParam, this.longIsorter ,this.filters);
+      var param = Object.assign(sqp, this.longQueryParam, this.longIsorter, this.filters);
       param.field = this.getLongQueryField();
       param.pageNo = this.longIpagination.current;
       param.pageSize = this.longIpagination.pageSize;
@@ -1077,16 +1021,16 @@ export default {
     getLongQueryField() {
       //TODO 字段权限控制
       var str = "id,";
-      this.longColumns.forEach(function (value) {
+      this.longColumns.forEach(function(value) {
         str += "," + value.dataIndex;
       });
       return str;
     },
 
     //按排名排序
-    longRankingClick(){
+    longRankingClick() {
       let that = this;
-      if(that.longRankingButtonStatus == false){
+      if (that.longRankingButtonStatus == false) {
         that.longRankingButtonStatus = true
         that.longRankingButtonArrow = 'arrow-up'
         that.longWordsButtonStatus = false
@@ -1094,12 +1038,12 @@ export default {
 
         that.longQueryParam.buttonColmn = 'ranking';
         that.longQueryParam.buttonSort = 'asc';
-      } else if(that.longRankingButtonStatus == true && that.longRankingButtonArrow == 'arrow-up'){
+      } else if (that.longRankingButtonStatus == true && that.longRankingButtonArrow == 'arrow-up') {
         that.longRankingButtonArrow = 'arrow-down'
 
         that.longQueryParam.buttonColmn = 'ranking';
         that.longQueryParam.buttonSort = 'desc';
-      }else if(that.longRankingButtonArrow == 'arrow-down'){
+      } else if (that.longRankingButtonArrow == 'arrow-down') {
         that.longRankingButtonStatus = false
         that.longQueryParam.buttonColmn = '';
         that.longQueryParam.buttonSort = '';
@@ -1108,9 +1052,9 @@ export default {
     },
 
     //按字数排序
-    longWordsClick(){
+    longWordsClick() {
       let that = this;
-      if(that.longWordsButtonStatus == false){
+      if (that.longWordsButtonStatus == false) {
         that.longWordsButtonStatus = true
         that.longWordsButtonArrow = 'arrow-up'
         that.longRankingButtonStatus = false
@@ -1118,12 +1062,12 @@ export default {
 
         that.longQueryParam.buttonColmn = 'words';
         that.longQueryParam.buttonSort = 'asc';
-      } else if(that.longWordsButtonStatus == true && that.longWordsButtonArrow == 'arrow-up'){
+      } else if (that.longWordsButtonStatus == true && that.longWordsButtonArrow == 'arrow-up') {
         that.longWordsButtonArrow = 'arrow-down'
 
         that.longQueryParam.buttonColmn = 'words';
         that.longQueryParam.buttonSort = 'desc';
-      }else if(that.longWordsButtonArrow == 'arrow-down'){
+      } else if (that.longWordsButtonArrow == 'arrow-down') {
         that.longWordsButtonStatus = false
         that.longQueryParam.buttonColmn = '';
         that.longQueryParam.buttonSort = '';
@@ -1135,15 +1079,17 @@ export default {
 </script>
 
 <style lang="less">
-.self-pop{
-  .ant-popover-inner-content{
-    background: rgb(245,243,254);
-    p{
+.self-pop {
+  .ant-popover-inner-content {
+    background: rgb(245, 243, 254);
+
+    p {
       font-size: 13px;
     }
   }
-  .ant-popover-arrow{
-    border-color: rgb(245,243,254) !important;
+
+  .ant-popover-arrow {
+    border-color: rgb(245, 243, 254) !important;
   }
 }
 </style>
@@ -1193,6 +1139,7 @@ export default {
   padding-left: 10px;
   padding-right: 10px;
   padding-bottom: 10px;
+
   .wrap {
     padding: 20px;
     background: #fff;
@@ -1271,6 +1218,7 @@ export default {
         font-weight: 500;
         cursor: pointer;
         text-decoration: underline;
+
         &.active {
           color: @primary-color;
         }