feat(property-marketing): 新增PDF导出功能并优化投放指南页面交互

This commit is contained in:
林志军
2025-07-09 15:15:16 +08:00
parent 239a5e9c91
commit 41873335d5
8 changed files with 162 additions and 81 deletions

View File

@ -75,7 +75,6 @@ let previousFileListLength = 0;
//删除图片
const onChange = (fileList) => {
if (fileList.length < previousFileListLength) {
// 在这里执行你需要的操作
if (props.limit === 1) {
if (fileList.length === 0) {
emit('update:modelValue', '');
@ -90,7 +89,6 @@ const onChange = (fileList) => {
}
}
// 更新上一次的文件列表长度
previousFileListLength = fileList.length;
};