|
@@ -4,20 +4,48 @@
|
|
|
<div class="jeecg-basic-table-form-container">
|
|
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
|
|
<a-row :gutter="24">
|
|
|
- <a-col :lg="6">
|
|
|
- <a-form-item>
|
|
|
- <template #label><span title="站点名称">站点名称</span></template>
|
|
|
- <div style="display: flex">
|
|
|
- <a-form-item name="name_begin" style="margin-bottom: 0;">
|
|
|
- <a-input placeholder="请输入最小值" v-model:value="queryParam.name_begin" class="query-group-cust" allow-clear ></a-input>
|
|
|
- </a-form-item>
|
|
|
- <span class="query-group-left query-group-split-cust">~</span>
|
|
|
- <a-form-item name="name_end" style="margin-bottom: 0;">
|
|
|
- <a-input placeholder="请输入最大值" v-model:value="queryParam.name_end" class="query-group-cust" allow-clear ></a-input>
|
|
|
- </a-form-item>
|
|
|
- </div>
|
|
|
+ <a-col :xxl="6" :xl="7">
|
|
|
+ <a-form-item name="name" label="站点名称">
|
|
|
+ <j-input placeholder="请输入站点名称" v-model:value="queryParam.name" allow-clear />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+
|
|
|
+ <a-col :xxl="6" :xl="7">
|
|
|
+ <a-form-item name="domain" label="站点域名">
|
|
|
+ <j-input placeholder="请输入站点域名" v-model:value="queryParam.domain" allow-clear />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :xxl="6" :xl="8">
|
|
|
+ <a-form-item label="发布状态">
|
|
|
+ <j-search-select placeholder="请选择发布状态" v-model:value="queryParam.status" dict="site_status" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <template v-if="toggleSearchStatus">
|
|
|
+ <a-col :xxl="6" :xl="7">
|
|
|
+ <a-form-item label="渠道商">
|
|
|
+ <a-select placeholder="请选择渠道商" v-model:value="queryParam.channelProviderId" showSearch allowClear :filterOption="filterOption">
|
|
|
+ <a-select-option v-for="data in channelProviderList" :key="data.username" :value="data.workNo">
|
|
|
+ {{ data.username }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <!-- <a-col :xxl="12" :xl="10">-->
|
|
|
+ <!-- <a-form-item label="创建时间">-->
|
|
|
+ <!-- <j-range-date placeholder="请选择开始日期" class="query-group-cust" v-model:value="queryParam.ctime" />-->
|
|
|
+ <!-- </a-form-item>-->
|
|
|
+ <!-- </a-col>-->
|
|
|
+
|
|
|
+ <!-- <a-col :xl="10" :lg="11" :md="12" :sm="24">-->
|
|
|
+ <!-- <a-form-item label="到期时间">-->
|
|
|
+ <!-- <j-range-date placeholder="请选择开始日期" class="query-group-cust" v-model:value="queryParam.etime" />-->
|
|
|
+ <!-- </a-form-item>-->
|
|
|
+ <!-- </a-col>-->
|
|
|
+ </template>
|
|
|
+
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
|
<a-col :lg="6">
|
|
@@ -38,19 +66,20 @@
|
|
|
<!--插槽: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-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>
|
|
|
+ <Icon icon="ant-design:delete-outlined" />
|
|
|
删除
|
|
|
</a-menu-item>
|
|
|
</a-menu>
|
|
|
</template>
|
|
|
- <a-button>批量操作
|
|
|
- <Icon icon="mdi:chevron-down"></Icon>
|
|
|
+ <a-button
|
|
|
+ >批量操作
|
|
|
+ <Icon icon="mdi:chevron-down" />
|
|
|
</a-button>
|
|
|
</a-dropdown>
|
|
|
<!-- 高级查询 -->
|
|
@@ -58,40 +87,109 @@
|
|
|
</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 }">
|
|
|
+ <template #bodyCell="{ column, record, index, text }">
|
|
|
+ <div v-if="column.dataIndex == 'name'">
|
|
|
+ <a :href="record.domain" target="_blank">{{ text }}</a>
|
|
|
+ </div>
|
|
|
+ <div v-if="column.dataIndex == 'domain'">
|
|
|
+ <a :href="record.domain" target="_blank">{{ text }}</a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-if="column.dataIndex == 'subscribePlan'">
|
|
|
+ <template v-if="text === null || text === ''"> 无 </template>
|
|
|
+ <template v-else>
|
|
|
+ <a-popover>
|
|
|
+ <template #content>
|
|
|
+ <a-descriptions bordered :column="{ xxl: 1, xl: 1, lg: 1, md: 1, sm: 1, xs: 1 }" title="SEO套餐详情" size="default">
|
|
|
+ <a-descriptions-item label="套餐名">
|
|
|
+ {{ text.planName }}
|
|
|
+ </a-descriptions-item>
|
|
|
+ <a-descriptions-item label="关键词"> {{ text.keywordCount }}个 </a-descriptions-item>
|
|
|
+ <a-descriptions-item label="服务时间">
|
|
|
+ <template v-if="text.serviceTime != 0"> {{ text.serviceTime }}个月 </template>
|
|
|
+ <template v-else> 长期 </template>
|
|
|
+ </a-descriptions-item>
|
|
|
+ <a-descriptions-item label="价格"> {{ text.price }}元 </a-descriptions-item>
|
|
|
+ </a-descriptions>
|
|
|
+ </template>
|
|
|
+ <a-tag color="blue">
|
|
|
+ {{ text.planName }}
|
|
|
+ </a-tag>
|
|
|
+ </a-popover>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-if="column.dataIndex == 'status_dictText'">
|
|
|
+ <template v-if="record.status == 1">
|
|
|
+ <a-tag color="blue">
|
|
|
+ {{ text }}
|
|
|
+ </a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-else-if="record.status == 2">
|
|
|
+ <a-tag color="green">
|
|
|
+ {{ text }}
|
|
|
+ </a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <a-tag color="red">
|
|
|
+ {{ text }}
|
|
|
+ </a-tag>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-if="column.dataIndex == 'siteCurrentStep'">
|
|
|
+ <span v-if="text === null || text === undefined || text === ''"> - </span>
|
|
|
+ <template v-else>
|
|
|
+ <a @click="handleProcess(record, 'site')"> <span class="circle" style="background-color: #7194f8"></span>{{ text }} </a>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div v-if="column.dataIndex == 'completeProcess'">
|
|
|
+ <a-progress :stroke-color="{ '0%': '#108ee9', '100%': '#87d068' }" :percent="record.completeProcess" />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</BasicTable>
|
|
|
<!-- 表单区域 -->
|
|
|
- <AdwebSiteModal ref="registerModal" @success="handleSuccess"></AdwebSiteModal>
|
|
|
+ <AdwebSiteModal ref="registerModal" @success="handleSuccess" />
|
|
|
+
|
|
|
+ <!--SEO流程-->
|
|
|
+ <seo-process ref="seoProcessRef" :visible="seoProcessVisible" :title="processTitle" @close="closeProcess" @reload="reload" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" name="adweb-adwebSite" setup>
|
|
|
- import { ref, reactive } from 'vue';
|
|
|
- import { BasicTable, useTable, TableAction } from '/src/components/Table';
|
|
|
+ import { onBeforeMount, reactive, ref } from 'vue';
|
|
|
+ import { getAction } from '/@/api/manage/manage';
|
|
|
+ import { BasicTable, TableAction } from '/src/components/Table';
|
|
|
import { useListPage } from '/src/hooks/system/useListPage';
|
|
|
import { columns, superQuerySchema } from './AdwebSite.data';
|
|
|
- import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './AdwebSite.api';
|
|
|
- import { downloadFile } from '/src/utils/common/renderUtils';
|
|
|
- import AdwebSiteModal from './components/AdwebSiteModal.vue'
|
|
|
+ import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './AdwebSite.api';
|
|
|
+ import AdwebSiteModal from './components/AdwebSiteModal.vue';
|
|
|
import { useUserStore } from '/src/store/modules/user';
|
|
|
- import JSelectUser from '/src/components/Form/src/jeecg/components/JSelectUser.vue';
|
|
|
+ import SeoProcess from '@/views/adweb/site/components/seoProcess.vue';
|
|
|
+ import JInput from '@/components/Form/src/jeecg/components/JInput.vue';
|
|
|
+ import JSearchSelect from '@/components/Form/src/jeecg/components/JSearchSelect.vue';
|
|
|
|
|
|
const formRef = ref();
|
|
|
const queryParam = reactive<any>({});
|
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
|
const registerModal = ref();
|
|
|
const userStore = useUserStore();
|
|
|
+ const processTitle = ref('');
|
|
|
+ const seoProcessVisible = ref(false);
|
|
|
+ const seoProcessRef = ref();
|
|
|
+ let channelProviderList = reactive([{ username: '', workNo: '' }]);
|
|
|
//注册table数据
|
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
tableProps: {
|
|
|
title: 'adweb站点配置表单',
|
|
|
api: list,
|
|
|
columns,
|
|
|
- canResize:false,
|
|
|
- useSearchForm: false,
|
|
|
+ canResize: false,
|
|
|
+ useSearchForm: true,
|
|
|
+ showTableSetting: true,
|
|
|
actionColumn: {
|
|
|
width: 120,
|
|
|
fixed: 'right',
|
|
@@ -101,21 +199,22 @@
|
|
|
},
|
|
|
},
|
|
|
exportConfig: {
|
|
|
- name: "adweb站点配置表单",
|
|
|
+ name: 'adweb站点配置表单',
|
|
|
url: getExportUrl,
|
|
|
params: queryParam,
|
|
|
},
|
|
|
- importConfig: {
|
|
|
- url: getImportUrl,
|
|
|
- success: handleSuccess
|
|
|
- },
|
|
|
+ importConfig: {
|
|
|
+ url: getImportUrl,
|
|
|
+ success: handleSuccess,
|
|
|
+ },
|
|
|
});
|
|
|
- const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
|
+ const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] =
|
|
|
+ tableContext;
|
|
|
const labelCol = reactive({
|
|
|
- xs:24,
|
|
|
- sm:4,
|
|
|
- xl:6,
|
|
|
- xxl:4
|
|
|
+ xs: 24,
|
|
|
+ sm: 4,
|
|
|
+ xl: 6,
|
|
|
+ xxl: 4,
|
|
|
});
|
|
|
const wrapperCol = reactive({
|
|
|
xs: 24,
|
|
@@ -124,7 +223,21 @@
|
|
|
|
|
|
// 高级查询配置
|
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
+ //渠道商搜索
|
|
|
+ const filterOption = (input: string, option: any) => {
|
|
|
+ console.log(option, 'optionoption');
|
|
|
+ return option.key.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
+ };
|
|
|
|
|
|
+ onBeforeMount(() => {
|
|
|
+ getChannelProvider();
|
|
|
+ });
|
|
|
+
|
|
|
+ function getChannelProvider() {
|
|
|
+ getAction('/adweb/system/getChannelProvider', null).then((res) => {
|
|
|
+ channelProviderList = res.result;
|
|
|
+ });
|
|
|
+ }
|
|
|
/**
|
|
|
* 高级查询事件
|
|
|
*/
|
|
@@ -186,7 +299,7 @@
|
|
|
function getTableAction(record) {
|
|
|
return [
|
|
|
{
|
|
|
- label: '编辑',
|
|
|
+ label: '编辑网站',
|
|
|
onClick: handleEdit.bind(null, record),
|
|
|
},
|
|
|
];
|
|
@@ -200,15 +313,16 @@
|
|
|
{
|
|
|
label: '详情',
|
|
|
onClick: handleDetail.bind(null, record),
|
|
|
- }, {
|
|
|
+ },
|
|
|
+ {
|
|
|
label: '删除',
|
|
|
popConfirm: {
|
|
|
title: '是否确认删除',
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
placement: 'topLeft',
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -228,19 +342,16 @@
|
|
|
reload();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- /**
|
|
|
- * form点击事件(以逗号分割)
|
|
|
- * @param key
|
|
|
- * @param value
|
|
|
- */
|
|
|
- function handleFormJoinChange(key, value) {
|
|
|
- if (typeof value != 'string') {
|
|
|
- queryParam[key] = value.join(',');
|
|
|
- }
|
|
|
+ function handleProcess(record, type) {
|
|
|
+ seoProcessVisible.value = true;
|
|
|
+ processTitle.value = record.name;
|
|
|
+ seoProcessRef.value.init(record, type);
|
|
|
+ seoProcessRef.value.isCustomer = true;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ function closeProcess() {
|
|
|
+ seoProcessVisible.value = false;
|
|
|
+ }
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
@@ -251,19 +362,20 @@
|
|
|
margin-bottom: 24px;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
- .query-group-cust{
|
|
|
+ .query-group-cust {
|
|
|
min-width: 100px !important;
|
|
|
}
|
|
|
- .query-group-split-cust{
|
|
|
+ .query-group-split-cust {
|
|
|
width: 30px;
|
|
|
display: inline-block;
|
|
|
- text-align: center
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
- .ant-form-item:not(.ant-form-item-with-help){
|
|
|
+ .ant-form-item:not(.ant-form-item-with-help) {
|
|
|
margin-bottom: 16px;
|
|
|
height: 32px;
|
|
|
}
|
|
|
- :deep(.ant-picker),:deep(.ant-input-number){
|
|
|
+ :deep(.ant-picker),
|
|
|
+ :deep(.ant-input-number) {
|
|
|
width: 100%;
|
|
|
}
|
|
|
}
|