Merge remote-tracking branch 'origin/feature/v1.3_营销资产中台' into feature/0707_产品权限

This commit is contained in:
rd
2025-07-09 15:16:10 +08:00
12 changed files with 153 additions and 73 deletions

View File

@ -20,6 +20,7 @@
"dayjs": "^1.11.7",
"echarts": "^5.6.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"normalize.css": "^8.0.1",

View File

@ -140,6 +140,11 @@ export const fetchImageUploadFile = (params: any) => {
return Http.get(`/v1/oss/image-pre-signed-url`, params);
};
// 获取预上传文件后缀
export const fetchUploadFile = (params: any) => {
return Http.get(`/v1/oss/file-pre-signed-url`, params);
};
// 移除企业子账号
export const removeEnterpriseAccount = (userId: number) => {
return Http.delete(`/v1/enterprises/users/${userId}`);

View File

@ -7,7 +7,8 @@
border-color: #d7d7d9;
background-color: #fff;
&:focus-within,
&.arco-input-focus {
&.arco-input-focus,
&.arco-textarea-focus {
background-color: var(--color-bg-2);
border-color: rgb(var(--primary-6));
box-shadow: 0 0 0 0 var(--color-primary-light-2);

View File

@ -36,7 +36,7 @@ export const getAccountInfoFields = (dateType: string, showMore: boolean) => {
{ title: '账号名称', dataIndex: 'name' },
{ title: '项目分组', dataIndex: 'group.name' },
{ title: '状态', dataIndex: 'status', type: 'status' },
{ title: '运营人员', dataIndex: 'operator_name' },
{ title: '运营人员', dataIndex: 'operator.name' },
],
[
{ title: 'AI评价', dataIndex: 'ai_evaluation' },

View File

@ -53,7 +53,7 @@ const open = (record) => {
async function onDelete() {
const _fn = isBatch.value ? batchDeleteMediaAccounts : deleteMediaAccount;
const _params = isBatch.value ? { ids: accountId.value } : { id: accountId.value };
const _params = isBatch.value ? { ids: accountId.value } : accountId.value;
const { code } = await _fn(_params);
if (code === 200) {
AMessage.success('删除成功');

View File

@ -115,6 +115,21 @@
<a-form-item label="选择标签">
<TagSelect v-model="form.tag_ids" :options="tagOptions" placeholder="请选择…" size="large" />
</a-form-item>
<a-form-item label="笔记链接" field="end_work_link">
<template #label>
<span class="label">笔记链接</span>
<a-tooltip content="平台将从该笔记“之后”的内容开始同步,该笔记及更早的数据均不采集">
<icon-question-circle size="14" class="ml-4px color-#737478" />
</a-tooltip>
</template>
<a-textarea
v-model="form.end_work_link"
placeholder="请输入..."
size="large"
max-length="72"
:auto-size="{ minRows: 3, maxRows: 5 }"
/>
</a-form-item>
</template>
</a-form>
<template #footer>
@ -166,6 +181,7 @@ const INITIAL_FORM = {
platform: 0,
group_id: undefined,
tag_ids: [],
end_work_link: '',
};
const groupOptions = ref([]);
@ -318,10 +334,8 @@ async function onSubmit() {
if (code === 200) {
isEdit.value && AMessage.success('修改成功');
emits('update');
if (isEdit.value) {
onClose();
} else {
if (!isEdit.value) {
startAuthorized(data?.id, data?.platform);
}
}

View File

@ -57,7 +57,7 @@ const open = (record) => {
async function onDelete() {
const _fn = isBatch.value ? batchDeletePlacementAccounts : deletePlacementAccount;
const _params = isBatch.value ? { ids: accountId.value } : { id: accountId.value };
const _params = isBatch.value ? { ids: accountId.value } : accountId.value;
const { code } = await _fn(_params);
if (code === 200) {
AMessage.success('删除成功');

View File

@ -164,10 +164,9 @@ const getData = () => {
};
const getHealthData = async () => {
const { code, data } = await getMediaAccountsHealth();
const { code, data } = await getPlacementAccountsHealth();
if (code === 200) {
healthData.value = data;
console.log(healthData.value);
}
};
const getAccountData = async () => {

View File

@ -21,7 +21,7 @@
</a-popconfirm>
</a-space>
<a-space>
<a-button type="outline" @click="downloadDetailAsImage(record.id)" class="operation-btn">下载</a-button>
<a-button type="outline" @click="downLoad(record.file_url)" class="operation-btn">下载</a-button>
<a-button type="outline" @click="goDetail(record.id)" class="operation-btn">详情</a-button>
</a-space>
</a-space>
@ -82,32 +82,24 @@ const goDetail = async (id) => {
router.push(`/put-account/detail/${id}`);
};
const downloadDetailAsImage = (id) => {
const url = `/put-account/detail/${id}`;
const win = window.open(url, '_blank');
win.onload = () => {
setTimeout(() => {
html2canvas(win.document.body, {
useCORS: true,
scale: 2,
}).then((canvas) => {
const imgData = canvas.toDataURL('image/png');
const downLoad = (fileUrl) => {
if (isEmpty(fileUrl)) {
Message.error('下载失败,文件不存在');
return;
}
const link = document.createElement('a');
link.href = imgData;
link.download = `详情页面_${Date.now()}.png`;
link.href = fileUrl;
link.download = '投放指南.pdf';
document.body.appendChild(link);
link.click();
win.close(); // 关闭新窗口
});
}, 2000); // 等待页面加载
};
document.body.removeChild(link);
};
const deleteData = async (id) => {
const { code, message } = await deleteHistorylog(id);
if (code == 200) {
Message.success(message);
emits('onSearch');
console.log('onsearch')
console.log('onsearch');
}
};

View File

@ -50,7 +50,7 @@
</div>
<div class="filter-row-item flex items-center">
<a-button class="w-84px search-btn mr-12px" size="medium" @click="handleSearch">
<a-button class="w-84px search-btn mr-12px" :disabled="disabled" size="medium" @click="handleSearch">
<template #icon>
<icon-search />
</template>

View File

@ -54,8 +54,7 @@
<template #platform="{ record }">
<a-space size="medium" v-if="record.platform">
<img :src="PLATFORM_LIST[record.platform]?.icon" width="19" class="mr-4px" />
<span>{{ PLATFORM_LIST[record.platform].label }}</span>
</a-space>
</template>

View File

@ -5,7 +5,7 @@
<a-tabs
v-model:activeKey="tabData"
@tab-click="onSearch"
class="a-tab-class"
class="a-tab-class ignore-export"
default-active-key="placement_guide"
>
<a-tab-pane key="placement_guide" title="投放指南"></a-tab-pane>
@ -16,6 +16,7 @@
</div>
<!--表单组件搜索-->
<listSearchForm
class="ignore-export"
@onReset="handleReset"
v-model:query="query"
@onSearch="onSearch"
@ -43,18 +44,21 @@
/>
</div>
</div>
<a-spin v-if="tabData === 'placement_guide'" :loading="loading" tip="AI分析中...." wrapperClassName="custom-spin-wrapper">
<div >
<a-spin
v-show="tabData === 'placement_guide'"
:loading="loading"
tip="AI分析中...."
wrapperClassName="custom-spin-wrapper"
>
<div>
<MonthData :overview="aiResult.overview"></MonthData>
<!-- 投放建议-->
<PlacementSuggestions :optimization="aiResult.optimization"></PlacementSuggestions>
<!-- 投放行动指南-->
<ActionGuideDistribution :action_guide="aiResult.action_guide"></ActionGuideDistribution>
<!-- <ActionGuideDistribution :action_guide="aiResult.action_guide"></ActionGuideDistribution>-->
</div>
</a-spin>
<div v-if="tabData == 'placement_guide'">
<div v-if="tabData == 'placement_guide'" class="ignore-export">
<a-space class="down-btn">
<a-button type="outline" @click="downPage">
<template #icon>
@ -89,7 +93,10 @@ import {
} from '@/api/all/propertyMarketing';
import { Message } from '@arco-design/web-vue';
import html2canvas from 'html2canvas';
import { jsPDF } from 'jspdf';
import { AiResultStatus } from '@/views/property-marketing/put-account/investment-guidelines/constants';
import { fetchUploadFile } from '@/api/all';
import axios from 'axios';
const tabData = ref('placement_guide');
@ -121,6 +128,7 @@ const handleUpdateQuery = (payload) => {
query.sort_column = payload.column;
query.sort_order = payload.order;
isGetAi.value = false;
loading.value = false;
onSearch();
};
@ -143,12 +151,11 @@ const onSearch = async () => {
guideHistoryList.value = result?.data?.data || [];
}
listData.total = result.data.total;
if (placementGuideList.value.length > 0) {
if (placementGuideList.value.length > 0 && isGetAi.value) {
loading.value = true;
if (isGetAi.value) {
syncGetAiResult();
startTask();
}
}
isGetAi.value = true;
};
const aiResult = reactive({
@ -159,15 +166,14 @@ const aiResult = reactive({
// 下载当前页面
const downPage = async () => {
await nextTick(); // 确保 DOM 更新完成
html2canvas(document.querySelector('.guidelines-data-wrap')).then((canvas) => {
const imgData = canvas.toDataURL('image/png');
await nextTick();
const fileUrl = await uploadPdf();
const link = document.createElement('a');
link.href = imgData;
const timestamp = new Date().getTime();
link.download = `投放指南-${timestamp}.png`;
link.href = fileUrl;
link.download = '投放指南.pdf';
document.body.appendChild(link);
link.click();
});
document.body.removeChild(link);
};
const saveForm = reactive({
account: [],
@ -175,13 +181,20 @@ const saveForm = reactive({
platform: [],
aiResult: [],
code: '',
file_url: '',
});
const timerRef = ref<number | null>(null);
const startTask = () => {
if (timerRef.value !== null) return;
timerRef.value = setInterval(async () => {
syncGetAiResult();
}, 5000);
};
const syncGetAiResult = async () => {
try {
const { code, data } = await getAiResult(query);
saveForm.file_url = '';
console.log('定时任务执行结果:', data);
if (data.ai_result_status === AiResultStatus.SUCCESS || data.ai_result_status === AiResultStatus.FAILED) {
stopTask();
@ -192,14 +205,22 @@ const startTask = () => {
aiResult.optimization = data.result?.optimization?.modules || [];
aiResult.action_guide = data.result?.action_guide?.modules || [];
aiResult.overview = data.result?.overview?.content_blocks[0] || [];
} else if (data.ai_result_status === AiResultStatus.FAILED) {
Message.error('AI分析失败');
aiError();
}
saveForm.code = data?.code;
console.log(aiResult, 'aiResult');
} catch (error) {
console.error('定时任务执行出错:', error);
stopTask();
aiError();
}
}, 5000);
};
// ai 检测失败执行方法
const aiError = () => {
aiResult.optimization = [];
aiResult.action_guide = [];
aiResult.overview = [];
stopTask();
};
const handleReset = () => {
@ -226,6 +247,7 @@ onUnmounted(() => {
stopTask();
});
const handleSave = async () => {
await uploadPdf();
const updatedSaveForm = {
...saveForm,
ai_result: aiResult,
@ -235,6 +257,52 @@ const handleSave = async () => {
Message.success(message);
}
};
// 上传pdf文件
const uploadPdf = async () => {
if (saveForm.file_url !== '') {
return saveForm.file_url;
}
const response = await fetchUploadFile({ suffix: 'pdf' });
const preSignedUrl = response?.data?.upload_url;
const fileUrl = response?.data?.file_url;
if (!preSignedUrl) {
throw new Error('未能获取有效的预签名上传地址');
}
saveForm.file_url = fileUrl;
const pdfBlob = await generatePDF(); // 生成 PDF Blob
console.log('pdfBlob', pdfBlob);
await axios.put(preSignedUrl, pdfBlob, {
headers: {
'Content-Type': pdfBlob.type,
},
});
return fileUrl;
};
const generatePDF = async (): Promise<Blob> => {
await nextTick();
const sections = document.querySelectorAll('.guidelines-data-wrap');
const pdf = new jsPDF('p', 'mm', 'a4');
let position = 0;
for (const section of sections) {
if (section.children.length === 0) continue; // 跳过空内容区域
const canvas = await html2canvas(section as HTMLElement, {
ignoreElements: (element) => {
return element.classList.contains('ignore-export'); // 例如:忽略 class 为 ignore-export 的元素
},
});
const imgData = canvas.toDataURL('image/png');
const imgProps = pdf.getImageProperties(imgData);
const pdfWidth = pdf.internal.pageSize.getWidth();
const pdfHeight = (imgProps.height * pdfWidth) / imgProps.width;
pdf.addImage(imgData, 'PNG', 0, position, pdfWidth, pdfHeight);
position += pdfHeight + 10;
}
return pdf.output('blob');
};
onMounted(() => {
onSearch();
});
@ -242,6 +310,7 @@ onMounted(() => {
<style lang="scss">
@import './style.scss';
.custom-spin-wrapper {
display: block;
width: 100%;