ソースを参照

SEO管理重构

zq940222 5 ヶ月 前
コミット
46a3a26855

+ 12 - 7
src/views/adweb/serp/SeoKpiStatistics.api.ts → src/views/adweb/seo/SeoKeywordsRank.api.ts

@@ -4,13 +4,14 @@ import { useMessage } from "/@/hooks/web/useMessage";
 const { createConfirm } = useMessage();
 
 enum Api {
-  list = '/serp/seoKpiStatistics/list',
-  save='/serp/seoKpiStatistics/add',
-  edit='/serp/seoKpiStatistics/edit',
-  deleteOne = '/serp/seoKpiStatistics/delete',
-  deleteBatch = '/serp/seoKpiStatistics/deleteBatch',
-  importExcel = '/serp/seoKpiStatistics/importExcel',
-  exportXls = '/serp/seoKpiStatistics/exportXls',
+  list = '/seo/seoKeywordsRank/list',
+  save='/seo/seoKeywordsRank/add',
+  edit='/seo/seoKeywordsRank/edit',
+  deleteOne = '/seo/seoKeywordsRank/delete',
+  deleteBatch = '/seo/seoKeywordsRank/deleteBatch',
+  importExcel = '/seo/seoKeywordsRank/importExcel',
+  exportXls = '/seo/seoKeywordsRank/exportXls',
+  getAllSites = '/seo/seoKeywordsRank/getAllSites',
 }
 /**
  * 导出api
@@ -62,3 +63,7 @@ export const saveOrUpdate = (params, isUpdate) => {
   let url = isUpdate ? Api.edit : Api.save;
   return defHttp.post({url: url, params});
 }
+
+export const getAllSites = () => {
+  return defHttp.get({url: Api.getAllSites});
+}

+ 18 - 80
src/views/adweb/serp/SeoKpiStatistics.data.ts → src/views/adweb/seo/SeoKeywordsRank.data.ts

@@ -5,86 +5,24 @@ import { render } from '/@/utils/common/renderUtils';
 import { getWeekMonthQuarterYear } from '/@/utils';
 //列表数据
 export const columns: BasicColumn[] = [
-   {
-    title: '站点code或营销方案code',
-    align:"center",
-    dataIndex: 'hostCode'
-   },
-   {
-    title: '营销方案name',
-    align:"center",
-    dataIndex: 'planName'
-   },
-   {
-    title: '0营销方案,1站点',
-    align:"center",
-    dataIndex: 'type'
-   },
-   {
-    title: '指标名称',
-    align:"center",
-    dataIndex: 'kpiName'
-   },
-   {
-    title: '指标code',
-    align:"center",
-    dataIndex: 'kpiCode'
-   },
-   {
-    title: '指标目标',
-    align:"center",
-    dataIndex: 'kpiTarget'
-   },
-   {
-    title: '已完成目标',
-    align:"center",
-    dataIndex: 'finishTarget'
-   },
-   {
-    title: '0未完成、1完成',
-    align:"center",
-    dataIndex: 'finishStatus'
-   },
-   {
-    title: '完成时间',
-    align:"center",
-    dataIndex: 'finishTime'
-   },
-   {
-    title: '完成人的id',
-    align:"center",
-    dataIndex: 'finishUid'
-   },
-   {
-    title: '服务开始时间',
-    align:"center",
-    dataIndex: 'startTime'
-   },
-   {
-    title: '服务结束时间',
-    align:"center",
-    dataIndex: 'endTime'
-   },
-   {
-    title: '比重,总和为100',
-    align:"center",
-    dataIndex: 'proportion'
-   },
-   {
-    title: '排序',
-    align:"center",
-    dataIndex: 'sort'
-   },
-   {
-    title: '套餐id',
-    align:"center",
-    dataIndex: 'planId'
-   },
-   {
-    title: '对应套餐绑定表ID',
-    align:"center",
-    dataIndex: 'historyId'
-   },
+  {
+    title: '序号',
+    dataIndex: 'rowIndex',
+    key: 'rowIndex',
+    width: 40,
+    align: 'center',
+    fixed: 'left',
+    scopedSlots: { customRender: 'dataNo' },
+
+  },
+  {
+    title: '关键词',
+    dataIndex: 'keywords',
+    key: 'keywords',
+    fixed: 'left',
+    scopedSlots: { customRender: 'keywords' },
+    width: 350,
+  },
 ];
 //查询数据
 export const searchFormSchema: FormSchema[] = [

+ 31 - 105
src/views/adweb/serp/SeoKpiStatisticsList.vue → src/views/adweb/seo/SeoKeywordsRankList.vue

@@ -7,16 +7,16 @@
         <span style="margin-left: 16px" class="t1">{{ (selectSiteInfo.planName  && selectSiteInfo.planType !== "STATIONCONSTRUCTION") ? selectSiteInfo.planName : '暂无SEO推广套餐~' }}
           <a-popover placement="bottom" v-show="selectSiteInfo.planName  && selectSiteInfo.planType !== 'STATIONCONSTRUCTION'">
             <template #content>
-              <span v-show="comprehenInfo.specifyKeywordNum != null">
+              <span>
                  指定词数:{{ comprehenInfo.specifyKeywordNum | last }}&nbsp;
               </span>
-             <span v-show="comprehenInfo.longTailKeywordNum != null">
+             <span>
                  关键词数:{{ comprehenInfo.longTailKeywordNum | last }}&nbsp;
               </span>
-              <span v-show="comprehenInfo.outerLinkNum != null">
+              <span>
                   外链数:{{ comprehenInfo.outerLinkNum | last }}&nbsp;
               </span>
-              <span v-show="comprehenInfo.articleNum != null">
+              <span>
                   文章数:{{ comprehenInfo.articleNum | last }}
               </span>
             </template>
@@ -26,7 +26,7 @@
       </a-col>
     </a-row>
     <a-row class="r2" type="flex" justify="center" align="middle">
-      <a-col :span="4">
+      <a-col :span="6">
         <p class="t1"><img src="../../../assets/seo/zhidingci.svg"/>指定词</p>
         <p class="t2" v-if="comprehenInfo.specifyKeywordNum == null">
           -
@@ -35,7 +35,7 @@
           <a @click="changeKeywordType()">{{ comprehenInfo.specifyKeywordNum }}</a>
         </p>
       </a-col>
-      <a-col :span="4">
+      <a-col :span="6">
         <p class="t1"><img src="../../../assets/seo/changweici.svg"/>关键词</p>
         <p class="t2" v-if="comprehenInfo.longTailKeywordNum == null">
           -
@@ -44,7 +44,7 @@
           <a @click="longChangeKeywordType()">{{ comprehenInfo.longTailKeywordNum }}</a>
         </p>
       </a-col>
-      <a-col :span="4">
+      <a-col :span="6">
         <p class="t1"><img src="../../../assets/seo/lianjieshu.svg"/>外链数</p>
         <p class="t2" v-if="comprehenInfo.outerLinkNum == null">
           -
@@ -53,7 +53,7 @@
           <span>{{ comprehenInfo.outerLinkNum }}</span>
         </p>
       </a-col>
-      <a-col :span="4">
+      <a-col :span="6">
         <p class="t1"><img src="../../../assets/seo/wenzhangshu.svg"/>文章数</p>
         <p class="t2" v-if="comprehenInfo.articleNum == null">
           -
@@ -62,33 +62,10 @@
           <span>{{ comprehenInfo.articleNum }}</span>
         </p>
       </a-col>
-      <a-col :span="4">
-        <p class="t1"><img src="../../../assets/seo/xunpanshu.svg"/>询盘数</p>
-        <p class="t2" v-if="comprehenInfo.enquiryNum == null">
-          -
-        </p>
-        <p class="t2" v-else>
-          <router-link :to="{path:'/inquiry/list'}">
-            {{ comprehenInfo.enquiryNum }}
-          </router-link>
-        </p>
-      </a-col>
-      <a-col :span="4">
-        <!--  只有当客户存在访问量指标且大于0才展示-->
-        <p class="t1"><img src="../../../assets/seo/fangwenliang.svg"/>访问量</p>
-        <p class="t2" v-if="comprehenInfo.uvNum == null">
-          -
-        </p>
-        <p class="t2" v-else>
-          <router-link :to="{path:'/adweb/insight/flowAnalysis',query:{dateType:'All'}}">
-            {{ comprehenInfo.uvNum }}
-          </router-link>
-        </p>
-      </a-col>
     </a-row>
 
     <a-row class="r3" type="flex"  :gutter="16">
-      <a-col :span="8" v-if="comprehenInfo.specifyKeywordNum != null || isBuildVersion">
+      <a-col :span="12" v-if="comprehenInfo.specifyKeywordNum != null ">
         <div class="wrap">
           <p class="t1">指定词排名</p>
           <div class="content">
@@ -110,7 +87,7 @@
           </div>
         </div>
       </a-col>
-      <a-col :span="8" v-if="comprehenInfo.longTailKeywordNum != null || isBuildVersion">
+      <a-col :span="12">
         <div class="wrap">
           <p class="t1">关键词排名</p>
           <div class="content">
@@ -133,35 +110,6 @@
           </div>
         </div>
       </a-col>
-      <a-col :span="8">
-        <div class="wrap">
-          <p class="t1">服务情况</p>
-          <div class="content">
-            <div class="d1"><img src="../../../assets/seo/dachengshijian.svg"/>达成时间</div>
-            <div class="d2 d3"><span>{{
-                rankInfo.serverTime.reachStandardTime != null ? rankInfo.serverTime.reachStandardTime.substring(0,10) : '-'
-              }}</span></div>
-          </div>
-          <template v-if=" rankInfo.serverTime.planServiceEndStatus === 1">
-            <div class="content">
-              <div class="d1"><img src="../../../assets/seo/dachengtianshu.svg"/>服务天数</div>
-              <div class="d2 d3"><span>{{getServiceDays(rankInfo.serverTime.planStartTime)}}</span>天</div>
-            </div>
-          </template>
-          <template v-else>
-            <div class="content">
-              <div class="d1"><img src="../../../assets/seo/dachengtianshu.svg"/>达成天数</div>
-              <div class="d2 d3"><span>{{
-                  rankInfo.serverTime.reachStandardDays | filtr_null  }}</span>天</div>
-            </div>
-          </template>
-          <div class="content">
-            <div class="d1"><img src="../../../assets/seo/shengyufuwutianshu.svg"/>剩余服务天数</div>
-            <div class="d2 d3"><span>{{
-                rankInfo.serverTime.remainServerDays | filtr_null}}</span>天</div>
-          </div>
-        </div>
-      </a-col>
     </a-row>
     <a-row>
 
@@ -258,7 +206,7 @@
       </a-card>
     </a-row>
 
-    <a-row class="r4" style="margin-top: 10px" v-if="comprehenInfo.longTailKeywordNum != null">
+    <a-row class="r4" style="margin-top: 10px">
       <a-card title="关键词" :bordered="false" style="width: 100%">
         <a-col :span="24">
           <a-row  class="table-tool-wrap" type="flex">
@@ -361,7 +309,7 @@ import selectSite from '@/components/adweb/selectSite.vue';
 import { filterObj } from '/@/utils/common/compUtils';
 
 export default {
-  name: 'SeoKpiStatisticsList',
+  name: 'seoKeywordsRankList',
   components: {
     selectSite
   },
@@ -414,7 +362,7 @@ export default {
       keywordType: undefined,
       keywords: '',
       url: {
-        list: '/serp/seoKeywords/keywordList'
+        list: '/seo/seoKeywords/keywordList'
       },
       ipagination: {
         pageSize: 10,
@@ -427,7 +375,6 @@ export default {
         longTailKeyword: {},
         serverTime:{}
       },
-      isBuildVersion:false,
       excelLoading:false,
       queryParam:{
         buttonColmn : 'words',
@@ -540,7 +487,7 @@ export default {
 
     //由于页面的业务关联很多,故将所有的查询条件封装
     setTableQuery() {
-      this.queryParam.userFlag = this.siteCode
+      this.queryParam.siteCode = this.siteCode
       console.log(this.queryParam)
       if(this.show == 3){
         this.queryParam.rankStart = '1'
@@ -600,7 +547,7 @@ export default {
         this.ipagination.current = 1
       }
       var params = this.getQueryParams()//查询条件
-      params.historyId = that.selectSiteInfo.historyId;
+      params.subscriptionId = that.selectSiteInfo.subscriptionId;
       params.keywordType = 1;
       this.loading = true
       getAction(this.url.list, params).then((res) => {
@@ -634,19 +581,10 @@ export default {
       })
     },
 
-    //判断是否是建站版或者无SEO套餐
-    calcIsBuildVersion(){
-      if(this.selectSiteInfo.planId == null || this.selectSiteInfo.planId == '' || this.selectSiteInfo.planName == '建站版' || this.selectSiteInfo.planType == 'STATIONCONSTRUCTION' || this.selectSiteInfo == {}){
-        this.isBuildVersion = true
-      }else{
-        this.isBuildVersion = false
-      }
-    },
-
     //先执行获取site信息,只有在获取到siteCode之后,才能执行以下方法
     getSiteInfo() {
       let that = this
-      getAction('/serp/seoKpiStatistics/getAllSitesBySeo').then(function (res) {
+      getAction('/seo/seoKeywordsRank/getAllSites').then(function (res) {
         if (res.code == 200) {
           that.siteinfo = res.result
           if(res.result.length > 0){
@@ -683,10 +621,6 @@ export default {
             return;
           }
           that.resetAllInfo()
-          that.calcIsBuildVersion()
-          if(that.isBuildVersion){
-            return
-          }
           that.getAllInfo()
         } else {
           that.$message.error('获取站点code失败,请刷新重试')
@@ -740,11 +674,6 @@ export default {
       this.show = 1
       // localStorage.setItem('siteCode', value)
       this.resetAllInfo()
-      this.calcIsBuildVersion()
-
-      if(this.isBuildVersion){
-        return
-      }
       this.getAllInfo()
     },
 
@@ -752,10 +681,10 @@ export default {
     getComprehenInfo() {
       let that = this
       let d = {
-        userFlag: that.siteCode,
-        historyId: that.selectSiteInfo.historyId ? that.selectSiteInfo.historyId : ''
+        siteCode: that.siteCode,
+        subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : ''
       }
-      getAction('/serp/seoKpiStatistics/comprehensiveInfo', d).then(res => {
+      getAction('/seo/seoKeywordsRank/comprehensiveInfo', d).then(res => {
         if (res.code == 200) {
           that.comprehenInfo = res.result
           console.log(res.result)
@@ -773,9 +702,9 @@ export default {
       let that = this
       let d = {
         siteCode: that.siteCode,
-        historyId: that.selectSiteInfo.historyId ? that.selectSiteInfo.historyId : ''
+        subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : ''
       }
-      getAction('/serp/seoKpiStatistics/getRankInfo', d).then(res => {
+      getAction('/seo/seoKeywordsRank/getRankInfo', d).then(res => {
         if (res.code == 200) {
           this.rankInfo.appointKeyword = res.result.appointKeyword
           this.rankInfo.longTailKeyword = res.result.longTailKeyword
@@ -857,8 +786,8 @@ export default {
     handleExportXlsLU(fileName,keywordType){
       let that = this
       let param = {
-        userFlag: that.queryParam.userFlag,
-        historyId: that.selectSiteInfo.historyId ? that.selectSiteInfo.historyId : '',
+        siteCode: that.queryParam.siteCode,
+        subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : '',
         keywordType: keywordType
       }
       if (param.siteId === 0) {
@@ -871,7 +800,7 @@ export default {
         this.longExcelLoading = true;
       }
 
-      downFile("/serp/seoKeywords/exportExcel",param).then((data)=>{
+      downFile("/seo/seoKeywords/exportExcel",param).then((data)=>{
         if(keywordType == 1){
           this.excelLoading = false;
         }else{
@@ -961,7 +890,7 @@ export default {
         this.longIpagination.current = 1
       }
       var params = this.getLongQueryParams()//查询条件
-      params.historyId = that.selectSiteInfo.historyId;
+      params.subscriptionId = that.selectSiteInfo.subscriptionId;
       params.keywordType = 2
       this.longLoading = true
       getAction(this.url.list, params).then((res) => {
@@ -1054,7 +983,7 @@ export default {
     //由于页面的业务关联很多,故将所有的查询条件封装
     longSetTableQuery() {
       let that = this;
-      that.longQueryParam.userFlag = this.siteCode
+      that.longQueryParam.siteCode = this.siteCode
       console.log(that.longQueryParam)
       if(that.longShow == 3){
         that.longQueryParam.rankStart = '1'
@@ -1236,9 +1165,8 @@ export default {
 
 .r2 {
   background: #fff;
-  border-radius: 10px;
   padding: 30px;
-  margin: 20px;
+  margin: 10px;
 
   .ant-col {
     text-align: center;
@@ -1262,12 +1190,11 @@ export default {
 }
 
 .r3 {
-  padding-left: 20px;
-  padding-right: 20px;
+  padding-left: 10px;
+  padding-right: 10px;
   .wrap {
     padding: 20px;
     background: #fff;
-    border-radius: 10px;
     margin-bottom: 10px;
 
     .t1 {
@@ -1322,10 +1249,9 @@ export default {
 
 .r4 {
   padding: 20px;
-  margin-left: 20px;
-  margin-right: 20px;
+  margin-left: 10px;
+  margin-right: 10px;
   background: #fff;
-  border-radius: 10px;
 
   .table-tool-wrap {
     margin-bottom: 15px;

+ 601 - 0
src/views/adweb/seo/SeoKeywordsRankListCopy.vue

@@ -0,0 +1,601 @@
+<template>
+  <div>
+    <a-row class="r1" style="margin: 20px;">
+      <a-col :span="24">
+        <span class="t1" >{{siteinfo.length > 1 ? '请选择站点:' : '套餐:'}}</span>
+        <select-site v-if="siteinfo.length > 1" @comMethods="changeSite"  selectWidth="300px" />
+        <span style="margin-left: 16px" class="t1">{{ (selectSiteInfo.planName  && selectSiteInfo.planType !== "STATIONCONSTRUCTION") ? selectSiteInfo.planName : '暂无SEO推广套餐~' }}
+          <a-popover placement="bottom" v-show="selectSiteInfo.planName  && selectSiteInfo.planType !== 'STATIONCONSTRUCTION'">
+            <template #content>
+              <span>
+                 指定词数:{{ last(comprehenInfo.specifyKeywordNum) }}&nbsp;
+              </span>
+             <span>
+                 关键词数:{{ last(comprehenInfo.longTailKeywordNum) }}&nbsp;
+              </span>
+              <span>
+                  外链数:{{ last(comprehenInfo.outerLinkNum) }}&nbsp;
+              </span>
+              <span>
+                  文章数:{{ last(comprehenInfo.articleNum) }}
+              </span>
+            </template>
+            <img src="https://cutomer-static-bucket.s3.cn-northwest-1.amazonaws.com.cn/public/material/220803883dfy/document/changjianwenti_1676606434975.png" alt="issue" width="25px" height="25px"/>
+          </a-popover>
+        </span>
+      </a-col>
+    </a-row>
+    <a-row class="r2" type="flex" justify="center" align="middle">
+      <a-col :span="6">
+        <p class="t1"><img src="../../../assets/seo/zhidingci.svg"/>指定词</p>
+        <p class="t2" v-if="comprehenInfo.specifyKeywordNum == null">
+          -
+        </p>
+        <p class="t2" v-else>
+          <span>{{ comprehenInfo.specifyKeywordNum }}</span>
+        </p>
+      </a-col>
+      <a-col :span="6">
+        <p class="t1"><img src="../../../assets/seo/changweici.svg"/>关键词</p>
+        <p class="t2" v-if="comprehenInfo.longTailKeywordNum == null">
+          -
+        </p>
+        <p class="t2" v-else>
+          <span>{{ comprehenInfo.longTailKeywordNum }}</span>
+        </p>
+      </a-col>
+      <a-col :span="6">
+        <p class="t1"><img src="../../../assets/seo/lianjieshu.svg"/>外链数</p>
+        <p class="t2" v-if="comprehenInfo.outerLinkNum == null">
+          -
+        </p>
+        <p class="t2" >
+          <span>{{ comprehenInfo.outerLinkNum }}</span>
+        </p>
+      </a-col>
+      <a-col :span="6">
+        <p class="t1"><img src="../../../assets/seo/wenzhangshu.svg"/>文章数</p>
+        <p class="t2" v-if="comprehenInfo.articleNum == null">
+          -
+        </p>
+        <p class="t2">
+          <span>{{ comprehenInfo.articleNum }}</span>
+        </p>
+      </a-col>
+    </a-row>
+    <a-row class="r3" type="flex"  :gutter="16">
+      <a-col :span="12">
+        <div class="wrap">
+          <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)">{{ filtr_null(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)">{{
+                filtr_null(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)">{{
+                filtr_null(rankInfo.appointKeyword.thirdType) }}</a>个
+            </div>
+          </div>
+        </div>
+      </a-col>
+      <a-col :span="12">
+        <div class="wrap">
+          <p class="t1">关键词排名</p>
+          <div class="content">
+            <div class="d1"><img src="../../../assets/seo/NO1.svg"/>1-10位</div>
+            <div class="d2">
+              <a @click="longGetTableInfoRank(3)">{{ filtr_null(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)">{{
+                filtr_null(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)">{{
+                filtr_null(rankInfo.longTailKeyword.thirdType) }}</a>个
+            </div>
+          </div>
+        </div>
+      </a-col>
+    </a-row>
+    <!--引用表格-->
+    <BasicTable @register="registerTable" :rowSelection="rowSelection">
+      <!--插槽:table标题-->
+      <template #tableTitle>
+        <a-button  type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
+      </template>
+      <!--操作栏-->
+      <template #action="{ record }">
+        <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
+      </template>
+      <!--字段回显插槽-->
+      <template v-slot:bodyCell="{ column, record, index, text }">
+      </template>
+    </BasicTable>
+    <!-- 表单区域 -->
+    <SeoKpiStatisticsModal @register="registerModal" @success="handleSuccess"></SeoKpiStatisticsModal>
+  </div>
+</template>
+
+<script lang="ts" name="serp-seoKpiStatistics" setup>
+import { ref, reactive, computed, unref, onMounted } from "vue";
+import {BasicTable, useTable, TableAction} from '/src/components/Table';
+import {useModal} from '/src/components/Modal';
+import { useListPage } from '/src/hooks/system/useListPage'
+import {columns, searchFormSchema, superQuerySchema} from './SeoKeywordsRank.data';
+import {
+  list,
+  deleteOne,
+  batchDelete,
+  getImportUrl,
+  getExportUrl,
+  getAllSites
+} from "./SeoKeywordsRank.api";
+import { downloadFile } from '/src/utils/common/renderUtils';
+import { useUserStore } from '/src/store/modules/user';
+import selectSite from "@/components/adweb/selectSite.vue";
+import { getAction } from "@/api/manage/manage";
+const queryParam = reactive<any>({});
+const checkedKeys = ref<Array<string | number>>([]);
+const userStore = useUserStore();
+//注册model
+const [registerModal, {openModal}] = useModal();
+//注册table数据
+const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
+  tableProps:{
+    title: 'seo_keywords_rank',
+    api: list,
+    columns,
+    canResize:false,
+    formConfig: {
+      //labelWidth: 120,
+      schemas: searchFormSchema,
+      autoSubmitOnEnter:true,
+      showAdvancedButton:true,
+      fieldMapToNumber: [
+      ],
+      fieldMapToTime: [
+      ],
+    },
+    actionColumn: {
+      width: 120,
+      fixed:'right'
+    },
+    beforeFetch: (params) => {
+      return Object.assign(params, queryParam);
+    },
+  },
+  exportConfig: {
+    name:"seo_keywords_rank",
+    url: getExportUrl,
+    params: queryParam,
+  },
+  importConfig: {
+    url: getImportUrl,
+    success: handleSuccess
+  },
+})
+
+const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
+
+// 高级查询配置
+const superQueryConfig = reactive(superQuerySchema);
+
+const siteinfo = ref([]);
+const selectSiteInfo = ref({'planId':'','planName':'','planType':'','subscriptionId':''});
+const siteCode = ref('');
+let comprehenInfo = ref({'specifyKeywordNum':0,'longTailKeywordNum':0,'outerLinkNum':0,'articleNum':0})
+const keywords = ref('');
+const rankInfo = ref({'appointKeyword':{'firstNum':0,'secondNum':0,'thirdType':''},'longTailKeyword':{'firstNum':0,'secondNum':0,'thirdType':''}});
+const dataSource = ref([]);
+const ipagination = ref({'current':1,'total':0});
+const longDataSource = ref([]);
+const longIpagination = ref({'current':1,'total':0});
+const show = ref();
+const keywordType = ref();
+const longShow = ref();
+// const loading = ref(false);
+
+/**
+ * 高级查询事件
+ */
+function handleSuperQuery(params) {
+  Object.keys(params).map((k) => {
+    queryParam[k] = params[k];
+  });
+  reload();
+}
+/**
+ * 新增事件
+ */
+function handleAdd() {
+  openModal(true, {
+    isUpdate: false,
+    showFooter: true,
+  });
+}
+/**
+ * 编辑事件
+ */
+function handleEdit(record: Recordable) {
+  openModal(true, {
+    record,
+    isUpdate: true,
+    showFooter: true,
+  });
+}
+/**
+ * 详情
+ */
+function handleDetail(record: Recordable) {
+  openModal(true, {
+    record,
+    isUpdate: true,
+    showFooter: false,
+  });
+}
+/**
+ * 删除事件
+ */
+async function handleDelete(record) {
+  await deleteOne({id: record.id}, handleSuccess);
+}
+/**
+ * 批量删除事件
+ */
+async function batchHandleDelete() {
+  await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
+}
+/**
+ * 成功回调
+ */
+function handleSuccess() {
+  (selectedRowKeys.value = []) && reload();
+}
+/**
+ * 操作栏
+ */
+function getTableAction(record){
+  return [
+    {
+      label: '去查询',
+      onClick: handleEdit.bind(null, record),
+    }
+  ]
+}
+
+//切换站点
+function changeSite(value, e) {
+  getSiteInfo()
+  selectSiteInfo.value = e.info
+  siteCode.value = value
+  queryParam.reachStandard = undefined
+  keywords.value = ''
+  localStorage.setItem('siteCode', value)
+  resetAllInfo()
+  getAllInfo()
+}
+//先执行获取site信息,只有在获取到siteCode之后,才能执行以下方法
+function getSiteInfo() {
+  getAllSites().then( (res) => {
+      siteinfo.value = res
+      if(res.length > 0){
+        let isInSite = false
+        for (let i in res) {
+          if (localStorage.getItem('siteCode') !== null && res[i].code === localStorage.getItem('siteCode')) {
+            isInSite = true
+            selectSiteInfo.value = res[i]
+          }
+        }
+        if (localStorage.getItem('siteCode') !== null && isInSite) {
+          siteCode.value = localStorage.getItem('siteCode')
+        } else {
+          siteCode.value = res[0].code
+          selectSiteInfo.value = res[0]
+          localStorage.setItem('siteCode', res[0].code)
+        }
+      }
+      resetAllInfo()
+      getAllInfo()
+
+  })
+}
+function resetAllInfo(){
+  comprehenInfo.value = {'specifyKeywordNum':0,'longTailKeywordNum':0,'outerLinkNum':0,'articleNum':0}
+  rankInfo.value = {'appointKeyword':{},'longTailKeyword':{}}
+  dataSource.value = []
+  ipagination.value = {'current':1,'total':0}
+  longDataSource.value = []
+  longIpagination.value = {'current':1,'total':0}
+}
+
+function getAllInfo() {
+  let d = {
+    siteCode: siteCode.value,
+    subscriptionId: selectSiteInfo.value.subscriptionId ?? ''
+  }
+  getAction('/seo/seoKeywordsRank/comprehensiveInfo', d).then(res => {
+    if (res.code == 200) {
+      comprehenInfo.value = res.result
+    }
+  }).finally(()=>{
+    getRankInfo()
+    setTableQuery()
+    // longSetTableQuery()
+  })
+}
+function first(value) {
+  if (value && value != null) {
+    let a = value.split('/')
+    return a[0]
+  } else {
+    return '- '
+  }
+}
+function last(value) {
+  if (value && value != null) {
+    let a = value.split('/')
+    return a[1]
+  } else {
+    return ' -'
+  }
+}
+function filtr_null(value) {
+  if (value != null) {
+    return value
+  } else {
+    return '- '
+  }
+}
+//点击排名数量事件
+function getTableInfoRank(d,keywordType) {
+  show.value = d
+  queryParam.reachStandard = undefined
+  if(keywordType){
+    keywordType.value = keywordType
+  }
+  setTableQuery()
+}
+//由于页面的业务关联很多,故将所有的查询条件封装
+function setTableQuery() {
+  queryParam.siteCode = siteCode.value
+  if(show.value == 3){
+    queryParam.rankStart = '1'
+    queryParam.rankEnd = '10'
+  }
+  else if(show.value == 4){
+    queryParam.rankStart = '1'
+    queryParam.rankEnd = '30'
+
+  }
+  else if(show.value == 5){
+    queryParam.rankStart = '1'
+    queryParam.rankEnd = '50'
+  }
+  else if(show.value == 6){
+    queryParam.rankStart = '1'
+    queryParam.rankEnd = '100'
+  }
+  else if(show.value == 7){
+    queryParam.rankStart = '11'
+    queryParam.rankEnd = '30'
+  }
+  else if(show.value == 8){
+    queryParam.rankStart = '31'
+    queryParam.rankEnd = '100'
+  }else{
+    queryParam.rankStart = undefined
+    queryParam.rankEnd = undefined
+  }
+  queryParam.keywordType = keywordType.value
+  queryParam.keywords = keywords.value
+  // loadData(1)
+}
+// function loadData(arg) {
+//   let a = []
+//   if (arg === 1) {
+//     ipagination.value.current = 1
+//   }
+//   var params = getQueryParams()//查询条件
+//   params.subscriptionId = selectSiteInfo.value.subscriptionId;
+//   params.keywordType = 1;
+//   loading.value = true
+//   getAction(url.list, params).then((res) => {
+//     if (res.success) {
+//       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,
+//             ...rankInfo
+//           })
+//         }
+//         dataSource = a;
+//         getTableColums()
+//         ipagination.total = res.result.total
+//       }else{
+//         dataSource = a;
+//         ipagination.total = 0
+//       }
+//
+//     }
+//     if (res.code === 510) {
+//       $message.warning(res.message)
+//     }
+//     loading = false
+//   })
+// },
+//点击排名数量事件
+function longGetTableInfoRank(d) {
+  longShow.value = d
+  // longQueryParam.reachStandard = undefined
+  // longSetTableQuery()
+}
+//获取排行榜数据
+function getRankInfo() {
+  let d = {
+    siteCode: siteCode.value,
+    subscriptionId: selectSiteInfo.value.subscriptionId ? selectSiteInfo.value.subscriptionId : ''
+  }
+  getAction('/seo/seoKeywordsRank/getRankInfo', d).then(res => {
+    console.log(res.code == 200 )
+    if (res.code == 200) {
+      rankInfo.value.appointKeyword = res.result.appointKeyword
+      rankInfo.value.longTailKeyword = res.result.longTailKeyword
+      console.log(rankInfo.a)
+    }
+  })
+}
+//动态处理表格列
+function getTableColums() {
+  that.columns = [
+    {
+      title: '序号',
+      dataIndex: 'rowIndex',
+      key: 'rowIndex',
+      width: 40,
+      align: 'center',
+      fixed: 'left',
+      scopedSlots: { customRender: 'dataNo' },
+
+    },
+    {
+      title: '关键词',
+      dataIndex: 'keywords',
+      key: 'keywords',
+      fixed: 'left',
+      scopedSlots: { customRender: 'keywords' },
+      width: 350,
+    },
+  ]
+  let obj = that.dataSource[0].rankInfo
+  let dateInfo = Object.keys(obj)
+  dateInfo.sort().reverse()
+  for (let i in dateInfo) {
+    that.columns.push({
+      title: dateInfo[i],
+      dataIndex: dateInfo[i],
+      key: dateInfo[i],
+      scopedSlots: { customRender: 'tag' },
+      align: 'center'
+    })
+  }
+  that.columns.push({
+    title: '操作',
+    dataIndex: 'action',
+    key: 'action',
+    align: 'center',
+    scopedSlots: { customRender: 'action' },
+    fixed:'right',
+    width: 50
+  },)
+},
+onMounted(() => {
+  getSiteInfo()
+});
+</script>
+
+<style scoped>
+:deep(.ant-picker),:deep(.ant-input-number){
+  width: 100%;
+}
+.r2 {
+  background: #fff;
+  padding: 30px;
+  margin: 10px;
+
+  .ant-col {
+    text-align: center;
+    color: #000;
+
+    img {
+      width: 13px;
+      margin: -3px 5px 0 0;
+    }
+
+    .t1 {
+      font-size: 14px;
+    }
+
+    .t2 {
+      font-size: 27px;
+      margin-bottom: 0;
+      font-weight: 500;
+    }
+  }
+}
+.r3 {
+  padding-left: 10px;
+  padding-right: 10px;
+  .wrap {
+    padding: 20px;
+    background: #fff;
+    margin-bottom: 10px;
+
+    .t1 {
+      color: #000;
+      font-size: 14px;
+      font-weight: 500;
+    }
+
+    .content {
+      display: block;
+      overflow: hidden;
+      line-height: 1;
+      border-bottom: 1px solid #ddd;
+      padding: 20px 0;
+
+      &:last-child {
+        border-bottom: none;
+        padding-bottom: 0;
+      }
+
+      .d1 {
+        float: left;
+        width: 50%;
+        line-height: 25px;
+        color: #000;
+
+        img {
+          width: 15px;
+          margin: -4px 5px 0 0;
+        }
+      }
+
+      .d2 {
+        float: right;
+        width: 50%;
+        text-align: right;
+
+        &.d3 {
+          span {
+            color: #000;
+          }
+        }
+
+        a {
+          font-size: 25px;
+          font-weight: 500;
+        }
+      }
+    }
+  }
+}
+</style>

+ 0 - 26
src/views/adweb/serp/V20241009_1__menu_insert_SeoKpiStatistics.sql

@@ -1,26 +0,0 @@
--- 注意:该页面对应的前台目录为views/serp文件夹下
--- 如果你想更改到其他目录,请修改sql中component字段对应的值
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) 
-VALUES ('2024100903234840360', NULL, 'seo_kpi_statistics', '/serp/seoKpiStatisticsList', 'serp/SeoKpiStatisticsList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0);
-
--- 权限控制sql
--- 新增
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840361', '2024100903234840360', '添加seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);
--- 编辑
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840362', '2024100903234840360', '编辑seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);
--- 删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840363', '2024100903234840360', '删除seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);
--- 批量删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840364', '2024100903234840360', '批量删除seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);
--- 导出excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840365', '2024100903234840360', '导出excel_seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);
--- 导入excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024100903234840366', '2024100903234840360', '导入excel_seo_kpi_statistics', NULL, NULL, 0, NULL, NULL, 2, 'serp:seo_kpi_statistics:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-09 15:23:36', NULL, NULL, 0, 0, '1', 0);

+ 0 - 70
src/views/adweb/serp/components/SeoKpiStatisticsForm.vue

@@ -1,70 +0,0 @@
-<template>
-    <div style="min-height: 400px">
-        <BasicForm @register="registerForm"></BasicForm>
-        <div style="width: 100%;text-align: center" v-if="!formDisabled">
-            <a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
-        </div>
-    </div>
-</template>
-
-<script lang="ts">
-    import {BasicForm, useForm} from '/@/components/Form/index';
-    import {computed, defineComponent} from 'vue';
-    import {defHttp} from '/@/utils/http/axios';
-    import { propTypes } from '/@/utils/propTypes';
-    import {getBpmFormSchema} from '../SeoKpiStatistics.data';
-    import {saveOrUpdate} from '../SeoKpiStatistics.api';
-    
-    export default defineComponent({
-        name: "SeoKpiStatisticsForm",
-        components:{
-            BasicForm
-        },
-        props:{
-            formData: propTypes.object.def({}),
-            formBpm: propTypes.bool.def(true),
-        },
-        setup(props){
-            const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
-                labelWidth: 150,
-                schemas: getBpmFormSchema(props.formData),
-                showActionButtonGroup: false,
-                baseColProps: {span: 24}
-            });
-
-            const formDisabled = computed(()=>{
-                if(props.formData.disabled === false){
-                    return false;
-                }
-                return true;
-            });
-
-            let formData = {};
-            const queryByIdUrl = '/serp/seoKpiStatistics/queryById';
-            async function initFormData(){
-                let params = {id: props.formData.dataId};
-                const data = await defHttp.get({url: queryByIdUrl, params});
-                formData = {...data}
-                //设置表单的值
-                await setFieldsValue(formData);
-                //默认是禁用
-                await setProps({disabled: formDisabled.value})
-            }
-
-            async function submitForm() {
-                let data = getFieldsValue();
-                let params = Object.assign({}, formData, data);
-                console.log('表单数据', params)
-                await saveOrUpdate(params, true)
-            }
-
-            initFormData();
-            
-            return {
-                registerForm,
-                formDisabled,
-                submitForm,
-            }
-        }
-    });
-</script>

+ 0 - 68
src/views/adweb/serp/components/SeoKpiStatisticsModal.vue

@@ -1,68 +0,0 @@
-<template>
-  <BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
-      <BasicForm @register="registerForm"/>
-  </BasicModal>
-</template>
-
-<script lang="ts" setup>
-    import {ref, computed, unref} from 'vue';
-    import {BasicModal, useModalInner} from '/@/components/Modal';
-    import {BasicForm, useForm} from '/@/components/Form/index';
-    import {formSchema} from '../SeoKpiStatistics.data';
-    import {saveOrUpdate} from '../SeoKpiStatistics.api';
-    // Emits声明
-    const emit = defineEmits(['register','success']);
-    const isUpdate = ref(true);
-    const isDetail = ref(false);
-    //表单配置
-    const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({
-        //labelWidth: 150,
-        schemas: formSchema,
-        showActionButtonGroup: false,
-        baseColProps: {span: 24}
-    });
-    //表单赋值
-    const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
-        //重置表单
-        await resetFields();
-        setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
-        isUpdate.value = !!data?.isUpdate;
-        isDetail.value = !!data?.showFooter;
-        if (unref(isUpdate)) {
-            //表单赋值
-            await setFieldsValue({
-                ...data.record,
-            });
-        }
-        // 隐藏底部时禁用整个表单
-       setProps({ disabled: !data?.showFooter })
-    });
-    //设置标题
-    const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
-    //表单提交事件
-    async function handleSubmit(v) {
-        try {
-            let values = await validate();
-            setModalProps({confirmLoading: true});
-            //提交表单
-            await saveOrUpdate(values, isUpdate.value);
-            //关闭弹窗
-            closeModal();
-            //刷新列表
-            emit('success');
-        } finally {
-            setModalProps({confirmLoading: false});
-        }
-    }
-</script>
-
-<style lang="less" scoped>
-	/** 时间和数字输入框样式 */
-  :deep(.ant-input-number) {
-    width: 100%;
-  }
-
-  :deep(.ant-calendar-picker) {
-    width: 100%;
-  }
-</style>

+ 0 - 3
src/views/adweb/serp/components/useSeoKpiStatics.ts

@@ -1,3 +0,0 @@
-
-
-