This commit is contained in:
吴红兵
2026-03-06 01:15:40 +08:00
parent 25f31978e5
commit 83ed9dad05
3 changed files with 406 additions and 1024 deletions

View File

@@ -503,7 +503,7 @@ const handlePreview = async (file: any) => {
const ext = fileName.split('.').pop()?.toLowerCase() || ''; const ext = fileName.split('.').pop()?.toLowerCase() || '';
// 判断是否是图片 // 判断是否是图片
const imageExts = ['png', 'jpg', 'jpeg', 'gif', 'bmp', 'webp']; const imageExts = ['png', 'jpg', 'jpeg'];
// 判断是否是PDF // 判断是否是PDF
const isPdf = ext === 'pdf'; const isPdf = ext === 'pdf';

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,6 @@
v-model="visible" v-model="visible"
:title="dialogTitle" :title="dialogTitle"
width="90%" width="90%"
:style="{ maxWidth: '1600px' }"
:close-on-click-modal="false" :close-on-click-modal="false"
destroy-on-close destroy-on-close
class="form-iframe-dialog" class="form-iframe-dialog"