ソースを参照

SEO管理关键词管理重构

zq940222 5 ヶ月 前
コミット
41e33f4ccf

+ 21 - 0
src/api/manage/manage.ts

@@ -177,3 +177,24 @@ 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;
+  }
+}
+

+ 76 - 133
src/views/adweb/keywords/SeoKeywords.data.ts

@@ -3,22 +3,27 @@ import { FormSchema } from "/@/components/Table";
 import { rules } from "/@/utils/helper/validator";
 import { render } from "/@/utils/common/renderUtils";
 import { getWeekMonthQuarterYear } from "/@/utils";
+import { defHttp } from "@/utils/http/axios";
 //列表数据
 export const columns: BasicColumn[] = [
   {
     title: "关键词",
     align: "center",
-    dataIndex: "keywords"
+    dataIndex: "keywords",
+    sorter: true,
+    width: 300,
   },
   {
     title: "关键词所在URL",
     align: "center",
     dataIndex: "positionUrl",
+    width: 500,
   },
   {
     title: "关键词类型",
     align: "center",
-    dataIndex: "keywordType"
+    dataIndex: "keywordType",
+    width: 200,
   },
   {
     title: '添加时间',
@@ -43,154 +48,92 @@ export const columns: BasicColumn[] = [
     align: 'left',
     dataIndex: 'lastRank',
     sorter: true,
+    width: 100,
   },
 ];
 //查询数据
-export const searchFormSchema: FormSchema[] = [];
-//表单数据
-export const formSchema: FormSchema[] = [
-  {
-    label: "平台标识",
-    field: "appKey",
-    component: "Input",
-    dynamicRules: ({ model, schema }) => {
-      return [
-        { required: true, message: "请输入平台标识!" }
-      ];
-    }
-  },
-  {
-    label: "用户标识",
-    field: "siteCode",
-    component: "Input",
-    dynamicRules: ({ model, schema }) => {
-      return [
-        { required: true, message: "请输入用户标识!" }
-      ];
-    }
-  },
-  {
-    label: "关键词",
-    field: "keywords",
-    component: "Input",
-    dynamicRules: ({ model, schema }) => {
-      return [
-        { required: true, message: "请输入关键词!" }
-      ];
-    }
-  },
-  {
-    label: "关键词所属域名",
-    field: "domain",
-    component: "Input",
-    dynamicRules: ({ model, schema }) => {
-      return [
-        { required: true, message: "请输入关键词所属域名!" }
-      ];
-    }
-  },
-  {
-    label: "语种",
-    field: "lang",
-    component: "Input"
-  },
-  {
-    label: "最新搜索时间",
-    field: "lastSearchTime",
-    component: "DatePicker",
-    componentProps: {
-      showTime: true,
-      valueFormat: "YYYY-MM-DD"
-    }
-  },
+export const searchFormSchema: FormSchema[] = [
   {
-    label: "定时器的最新搜索时间",
-    field: "timerLastSearchTime",
-    component: "DatePicker",
+    label: "站点",
+    field: 'siteCode',
+    component: 'ApiSelect',
     componentProps: {
-      showTime: true,
-      valueFormat: "YYYY-MM-DD"
-    }
-  },
-  {
-    label: "0删除,1有效,2过期",
-    field: "status",
-    component: "InputNumber"
+      //multiple: 多选;不填写为单选
+      mode: '',
+      //请求api,返回结果{ result: { records: [{'id':'1',name:'scott'},{'id':'2',name:'小张'}] }}
+      api: ()=> defHttp.get({ url: '/seo/seoKeywordsRank/getAllSites' }),
+      //数值转成String
+      numberToString: false,
+      //标题字段
+      labelField: 'name',
+      //值字段
+      valueField: 'code',
+      //是否为搜索模式
+      showSearch: true,
+      allowClear: false,
+      defaultValue: localStorage.getItem('siteCode'),
+      //请求参数
+      params:{},
+      // value:localStorage.getItem('siteCode') !== null?localStorage.getItem('siteCode'):'',
+      //返回结果字段
+      resultField:'result'
+    },
   },
   {
-    label: "数据复制源ID",
-    field: "sourceId",
-    component: "InputNumber"
+    label: "关键词",
+    field: 'keywords',
+    component: 'Input',
+    //colProps: {span: 6},
   },
   {
-    label: "关键词优先级(1:高;2:中;3:低)",
-    field: "priority",
-    component: "InputNumber"
-  },
+    label: "关键词类型",
+    field: 'keywordType',
+    component: 'JDictSelectTag',
+    componentProps:{
+      dictCode: 'keyword_type',
+      placeholder: '请选择关键词类型',
+      stringToNumber: true,
+    },
+    //colProps: {span: 6},
+  },
+  // {
+  //   label: "关键词排名",
+  //   field: 'keywordRank',
+  //   component: 'JDictSelectTag',
+  //   //填写组件Select的属性
+  //   componentProps: {
+  //     options: [
+  //       { label: '第一页(TOP 10)', value: 1 },
+  //       { label: '前三页(TOP 30)', value: 3 },
+  //       { label: '前五页(TOP 50)', value: 5 },
+  //       { label: '前十页(TOP 100)', value: 10 },
+  //     ],
+  //   },
+    //colProps: {span: 6},
+  // },
+];
+//表单数据
+export const formSchema: FormSchema[] = [
   {
-    label: "SEO关键词优化完成时间",
-    field: "finishTime",
-    component: "DatePicker",
+    label: "关键词类型",
+    field: "keywordType",
+    component: "JDictSelectTag",
     componentProps: {
-      showTime: true,
-      valueFormat: "YYYY-MM-DD"
-    }
+      dictCode: 'keyword_type',
+      placeholder: '请选择关键词类型',
+      stringToNumber: true,
+    },
   },
   {
-    label: "优化进度",
-    field: "optimizeProcess",
-    component: "InputNumber"
-  },
-  {
-    label: "优化状态",
-    field: "optimizeStatus",
-    component: "InputNumber"
-  },
-  {
-    label: "关键词类型",
-    field: "keywordType",
-    component: "InputNumber",
+    label: "关键词",
+    field: "keywords",
+    component: "Input",
     dynamicRules: ({ model, schema }) => {
       return [
-        { required: true, message: "请输入关键词类型(1:指定;2:长尾)!" }
+        { required: true, message: "请输入关键词!" }
       ];
     }
   },
-  {
-    label: "最近一次搜索排名",
-    field: "lastRank",
-    component: "InputNumber"
-  },
-  {
-    label: "搜索状态,0为普通状态,1为搜索进行中状态",
-    field: "searchStatus",
-    component: "InputNumber"
-  },
-  {
-    label: "关键词所在URL",
-    field: "positionUrl",
-    component: "InputTextArea"
-  },
-  {
-    label: "相关关键词关联的关键词的id",
-    field: "relatedKeywordId",
-    component: "InputNumber"
-  },
-  {
-    label: "关键词对应套餐的ID",
-    field: "planId",
-    component: "Input"
-  },
-  {
-    label: "订购表ID",
-    field: "subscriptionId",
-    component: "Input"
-  },
-  {
-    label: "网站表ID",
-    field: "siteId",
-    component: "Input"
-  },
   // TODO 主键隐藏字段,目前写死为ID
   {
     label: "",
@@ -221,7 +164,7 @@ export const superQuerySchema = {
     view: "number",
     type: "number"
   },
-  keywordType: { title: "关键词类型(1:指定;2:长尾)", order: 13, view: "number", type: "number" },
+  keywordType: { title: "关键词类型", order: 13, view: "number", type: "number" },
   lastRank: { title: "最近一次搜索排名", order: 14, view: "number", type: "number" },
   searchStatus: {
     title: "搜索状态,0为普通状态,1为搜索进行中状态",

+ 378 - 213
src/views/adweb/keywords/SeoKeywordsList.vue

@@ -1,247 +1,412 @@
 <template>
   <div>
     <!--引用表格-->
-   <BasicTable @register="registerTable" :rowSelection="rowSelection">
-     <!--插槽:table标题-->
+    <BasicTable @register="registerTable" :rowSelection="rowSelection">
+      <!--插槽:table标题-->
       <template #tableTitle>
-          <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
-          <a-button  type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
-          <j-upload-button  type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
-          <a-dropdown v-if="selectedRowKeys.length > 0">
-              <template #overlay>
-                <a-menu>
-                  <a-menu-item key="1" @click="batchHandleDelete">
-                    <Icon icon="ant-design:delete-outlined"></Icon>
-                    删除
-                  </a-menu-item>
-                </a-menu>
-              </template>
-              <a-button>批量操作
-                <Icon icon="mdi:chevron-down"></Icon>
-              </a-button>
+        <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增
+        </a-button>
+        <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出
+        </a-button>
+        <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">
+          导入
+        </j-upload-button>
+        <a-button type="primary" preIcon="ant-design:download-outlined" @click="downloadTemplate">
+          下载导入模板
+        </a-button>
+        <a-dropdown v-if="selectedRowKeys.length > 0">
+          <template #overlay>
+            <a-menu>
+              <a-menu-item key="1" @click="batchHandleDelete">
+                <Icon icon="ant-design:delete-outlined"></Icon>
+                删除
+              </a-menu-item>
+            </a-menu>
+          </template>
+          <a-button>批量操作
+            <Icon icon="mdi:chevron-down"></Icon>
+          </a-button>
         </a-dropdown>
         <!-- 高级查询 -->
-        <super-query :config="superQueryConfig" @search="handleSuperQuery" />
+        <!--        <super-query :config="superQueryConfig" @search="handleSuperQuery" />-->
       </template>
-       <!--操作栏-->
+      <!--操作栏-->
       <template #action="{ record }">
-        <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
+        <TableAction :actions="getTableAction(record)"
+                     :dropDownActions="getDropDownAction(record)" />
       </template>
       <!--字段回显插槽-->
       <template v-slot:bodyCell="{ column, record, index, text }">
-        <a-radio-group v-if="column.key === 'keywordType'" button-style="solid" @change="onchange($event,record.id)" :value="record.keywordType">
+        <a-radio-group v-if="column.key === 'keywordType'" button-style="solid"
+                       @change="onchange($event,record.id)" :value="record.keywordType">
           <a-radio-button :value=1>
-            指定关键
+            指定词
           </a-radio-button>
           <a-radio-button :value=2>
-            长尾关键词
+            关键词
           </a-radio-button>
         </a-radio-group>
       </template>
-     <template #positionUrl="{ text }">
-       <a v-if="text !== null && text !== undefined" :href=text target="_blank">{{ text.replace('https://','').replace('http://','') }}</a>
-       <a v-else>-</a>
-     </template>
-
-     <template #priority="{ text }">
-       <a-tag color="#f50" v-if="text == 1">高</a-tag>
-       <a-tag color="#108ee9" v-if="text == 2">中</a-tag>
-       <a-tag color="#87d068" v-if="text == 3">低</a-tag>
-     </template>
-
-     <template #prioritySlot="{ record, text }">
-       <a-radio-group button-style="solid" @change="onPriorityChange($event, record.id)" :value="text">
-         <a-radio-button :value="1">
-           高
-         </a-radio-button>
-         <a-radio-button :value="2">
-           中
-         </a-radio-button>
-         <a-radio-button :value="3">
-           低
-         </a-radio-button>
-       </a-radio-group>
-     </template>
-     <template #createTime="{ text }">
-
-     </template>
+      <template #positionUrl="{ text }">
+        <a v-if="text !== null && text !== undefined" :href=text
+           target="_blank">{{ text.replace("https://", "").replace("http://", "") }}</a>
+        <a v-else>-</a>
+      </template>
+
+      <template #priority="{ text }">
+        <a-tag color="#f50" v-if="text == 1">高</a-tag>
+        <a-tag color="#108ee9" v-if="text == 2">中</a-tag>
+        <a-tag color="#87d068" v-if="text == 3">低</a-tag>
+      </template>
+
+      <template #prioritySlot="{ record, text }">
+        <a-radio-group button-style="solid" @change="onPriorityChange($event, record.id)"
+                       :value="text">
+          <a-radio-button :value="1">
+            高
+          </a-radio-button>
+          <a-radio-button :value="2">
+            中
+          </a-radio-button>
+          <a-radio-button :value="3">
+            低
+          </a-radio-button>
+        </a-radio-group>
+      </template>
+      <template #createTime="{ text }">
+
+      </template>
     </BasicTable>
+
     <!-- 表单区域 -->
     <SeoKeywordsModal @register="registerModal" @success="handleSuccess"></SeoKeywordsModal>
   </div>
 </template>
 
 <script lang="ts" name="serp-seoKeywords" setup>
-  import {ref, reactive, computed, unref} from 'vue';
-  import {BasicTable, useTable, TableAction} from '/@/components/Table';
-  import {useModal} from '/@/components/Modal';
-  import { useListPage } from '/@/hooks/system/useListPage'
-  import SeoKeywordsModal from './components/SeoKeywordsModal.vue'
-  import {columns, searchFormSchema, superQuerySchema} from './SeoKeywords.data';
-  import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './SeoKeywords.api';
-  import { downloadFile } from '/@/utils/common/renderUtils';
-  import { useUserStore } from '/@/store/modules/user';
-  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: '关键词',
-           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:"关键词",
-            url: getExportUrl,
-            params: queryParam,
-          },
-          importConfig: {
-            url: getImportUrl,
-            success: handleSuccess
-          },
-  })
+import { ref, reactive, computed, unref } from "vue";
+import { BasicTable, useTable, TableAction } from "/@/components/Table";
+import { useModal } from "/@/components/Modal";
+import { useListPage } from "/@/hooks/system/useListPage";
+import SeoKeywordsModal from "./components/SeoKeywordsModal.vue";
+import { columns, searchFormSchema, superQuerySchema } from "./SeoKeywords.data";
+import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from "./SeoKeywords.api";
+import { downloadFile } from "/@/utils/common/renderUtils";
+import { useUserStore } from "/@/store/modules/user";
+import { getAllSites } from "@/views/adweb/seo/SeoKeywordsRank.api";
+import { getAction } from "@/api/manage/manage";
 
-  const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
+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: "关键词",
+    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: "关键词",
+    url: getExportUrl,
+    params: queryParam
+  },
+  importConfig: {
+    url: getImportUrl,
+    success: handleSuccess
+  }
+});
 
-  // 高级查询配置
-  const superQueryConfig = reactive(superQuerySchema);
+const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
 
-  /**
-   * 高级查询事件
-   */
-  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 getDropDownAction(record){
-       return [
-         {
-           label: '详情',
-           onClick: handleDetail.bind(null, record),
-         }, {
-           label: '删除',
-           popConfirm: {
-             title: '是否确认删除',
-             confirm: handleDelete.bind(null, record),
-             placement: 'topLeft',
-           }
-         }
-       ]
-   }
-  function onPriorityChange($event, id) {
-    // postAction('/serp/seoKeywords/changePriority' + '?id=' + id + '&value=' + $event.target.value).then(function(res) {
-    //   if (res.code === 200) {
-    //     that.$message.success('优先级更改成功!')
-    //     that.loadData()
-    //   } else {
-    //     that.$message.error('优先级更改失败!')
-    //     return
-    //   }
-    // })
+const siteinfo = ref([]);
+
+const selectSiteInfo = ref({});
+
+const modalVisible = ref(false);
+
+const modalTitle = ref("");
+
+const addSeoKeywordStatus = ref(false);
+
+const addSeoKeywordResStatus = ref(false);
+
+const tipTitle = ref("");
+
+const spinning = ref(false);
+
+const seoRepeatKeywords = ref([]);
+
+const keywordType = ref(1);
+
+const formItemLayout = ref( {
+  labelCol: {
+    xs: { span: 24 },
+    sm: { span: 4 }
+  },
+  wrapperCol: {
+    xs: { span: 24 },
+    sm: { span: 20 }
   }
-  //关键词指定
-  function onchange($event, id) {
-
-    // let that = this
-    // postAction(that.url.changeTypeUrl + '?id=' + id + '&type=' + $event.target.value).then(function(res) {
-    //   if (res.code === 200) {
-    //     that.$message.success('关键词类型更改成功!')
-    //     that.loadData()
-    //   } else {
-    //     that.$message.error(res.message)
-    //     return
-    //   }
-    // })
+})
+
+const formItemLayoutWithOutLabel = ref({
+  wrapperCol: {
+    xs: { span: 24, offset: 0 },
+    sm: { span: 20, offset: 4 }
   }
+})
+
+const dynamicValidateForm = ref({
+  domains: [
+    {
+      key: 1621308099985,
+      value: ''
+    },
+    {
+      key: 1621308099986,
+      value: ''
+    },
+    {
+      key: 1621308099987,
+      value: ''
+    }
+  ]
+})
+
+/**
+ * 高级查询事件
+ */
+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 getDropDownAction(record) {
+  return [
+    {
+      label: "趋势",
+      onClick: handleDetail.bind(null, record)
+    }, {
+      label: "删除",
+      popConfirm: {
+        title: "是否确认删除",
+        confirm: handleDelete.bind(null, record),
+        placement: "topLeft"
+      }
+    }
+  ];
+}
+
+function onPriorityChange($event, id) {
+  // postAction('/serp/seoKeywords/changePriority' + '?id=' + id + '&value=' + $event.target.value).then(function(res) {
+  //   if (res.code === 200) {
+  //     that.$message.success('优先级更改成功!')
+  //     that.loadData()
+  //   } else {
+  //     that.$message.error('优先级更改失败!')
+  //     return
+  //   }
+  // })
+}
 
+//关键词指定
+function onchange($event, id) {
+
+  // let that = this
+  // postAction(that.url.changeTypeUrl + '?id=' + id + '&type=' + $event.target.value).then(function(res) {
+  //   if (res.code === 200) {
+  //     that.$message.success('关键词类型更改成功!')
+  //     that.loadData()
+  //   } else {
+  //     that.$message.error(res.message)
+  //     return
+  //   }
+  // })
+}
+
+//切换站点
+function changeSite(value, e) {
+  getSiteInfo();
+  selectSiteInfo.value = e.info;
+  // siteCode.value = value
+  // keywords.value = ''
+  localStorage.setItem("siteCode", value);
+}
+
+//先执行获取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);
+      }
+    }
+  });
+}
+
+//下载模板
+function downloadTemplate() {
+  return window.open("/adwebv21/uploadDemo/关键词导入模版表.xlsx", "_self");
+}
+
+function handleAddSeo() {
+  modalVisible.value = true;
+  modalTitle.value = "新增SEO关键词";
+  addSeoKeywordStatus.value = true;
+}
+
+function handleCancel() {
+
+}
+
+function handleRepeat(rule, value, callback) {
+  // let seoDatas = dynamicValidateForm.value.domains
+  // let getSeoKeywordUrl = `/seo/seoKeywords/getSeoKeyword` + '?siteCode=' + seoKeywordsForm.userFlag + '&keywords=' + value + '&historyId=' + queryParam.historyId
+  // getAction(getSeoKeywordUrl).then(function(res) {
+  //   // console.log(res)
+  //   if (res.code == 200) {
+  //     if (res.result) {
+  //       let resArr = seoDatas.filter(item => {
+  //         return item.value === value
+  //       })
+  //       // console.log("resArr", resArr)
+  //       if (resArr.length > 1) {
+  //         if (value && resArr[0].value) {
+  //           if (resArr[0].value === value) {
+  //             callback('SEO关键词重复')
+  //             return false
+  //           }
+  //           callback()
+  //         }
+  //       } else {
+  //         callback()
+  //       }
+  //     } else {
+  //       callback('SEO关键词已存在!')
+  //     }
+  //   }
+  // }).catch(function(err) {
+  //   console.log(err)
+  // })
+}
+
+function removeSeoKeywords(item) {
+  let index = dynamicValidateForm.value.domains.indexOf(item)
+  if (index !== -1) {
+    dynamicValidateForm.value.domains.splice(index, 1)
+  }
+}
+function addSeoKeywords() {
+  dynamicValidateForm.value.domains.push({
+    value: '',
+    key: Date.now()
+  })
+}
 </script>
 
 <style scoped>
-  :deep(.ant-picker),:deep(.ant-input-number){
-    width: 100%;
-  }
+:deep(.ant-picker), :deep(.ant-input-number) {
+  width: 100%;
+}
 </style>