|
@@ -16,16 +16,21 @@
|
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
|
<!--插槽:table标题-->
|
|
|
<template #tableTitle>
|
|
|
- <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增
|
|
|
+ <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>
|
|
|
+<!-- <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-upload style="margin-left: 8px" name="file" :showUploadList="false" :multiple="false"
|
|
|
+ :action="importExcelUrl" @change="handleImportExcel2">
|
|
|
+ <a-button type="primary" preIcon="ant-design:import-outlined">关键词导入</a-button>
|
|
|
+ </a-upload>
|
|
|
+
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
<template #overlay>
|
|
|
<a-menu>
|
|
@@ -111,7 +116,7 @@ queryParam.siteCode = localStorage.getItem('siteCode')!;
|
|
|
//注册model
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
//注册table数据
|
|
|
-const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
+const { prefixCls, tableContext } = useListPage({
|
|
|
tableProps: {
|
|
|
title: "关键词",
|
|
|
api: list,
|
|
@@ -265,6 +270,23 @@ function changeSite(selectedSiteInfo: any) {
|
|
|
function downloadTemplate() {
|
|
|
downloadFile('关键词导入模版表.xlsx')
|
|
|
}
|
|
|
+
|
|
|
+// 导入关键词
|
|
|
+const fileStatus = ref('');
|
|
|
+const fileResponse = ref(null);
|
|
|
+
|
|
|
+function handleImportExcel2(info) {
|
|
|
+ fileStatus.value = info.file.status;
|
|
|
+
|
|
|
+ if (fileStatus.value!== 'uploading') {
|
|
|
+ console.log(info.file, info.fileList);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (fileStatus.value === 'done') {
|
|
|
+ fileResponse.value = info.file.response;
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|