|
@@ -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>
|