feat(components): 添加VanFloatingBubble组件声明
refactor(PdfViewer): 移除PDF初始化时的超时监控
Showing
2 changed files
with
3 additions
and
2 deletions
| ... | @@ -52,6 +52,7 @@ declare module 'vue' { | ... | @@ -52,6 +52,7 @@ declare module 'vue' { |
| 52 | VanDropdownMenu: typeof import('vant/es')['DropdownMenu'] | 52 | VanDropdownMenu: typeof import('vant/es')['DropdownMenu'] |
| 53 | VanEmpty: typeof import('vant/es')['Empty'] | 53 | VanEmpty: typeof import('vant/es')['Empty'] |
| 54 | VanField: typeof import('vant/es')['Field'] | 54 | VanField: typeof import('vant/es')['Field'] |
| 55 | + VanFloatingBubble: typeof import('vant/es')['FloatingBubble'] | ||
| 55 | VanForm: typeof import('vant/es')['Form'] | 56 | VanForm: typeof import('vant/es')['Form'] |
| 56 | VanIcon: typeof import('vant/es')['Icon'] | 57 | VanIcon: typeof import('vant/es')['Icon'] |
| 57 | VanImage: typeof import('vant/es')['Image'] | 58 | VanImage: typeof import('vant/es')['Image'] | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2025-01-21 | 2 | * @Date: 2025-01-21 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-10-22 15:53:46 | 4 | + * @LastEditTime: 2025-10-22 17:40:14 |
| 5 | * @FilePath: /mlaj/src/components/ui/PdfViewer.vue | 5 | * @FilePath: /mlaj/src/components/ui/PdfViewer.vue |
| 6 | * @Description: PDF预览组件 - 使用pdf-vue3库 | 6 | * @Description: PDF预览组件 - 使用pdf-vue3库 |
| 7 | --> | 7 | --> |
| ... | @@ -457,7 +457,7 @@ const handlePageChange = (page) => { | ... | @@ -457,7 +457,7 @@ const handlePageChange = (page) => { |
| 457 | */ | 457 | */ |
| 458 | const handlePdfInit = (pdf) => { | 458 | const handlePdfInit = (pdf) => { |
| 459 | // 启动超时监控 | 459 | // 启动超时监控 |
| 460 | - startTimeoutMonitoring(); | 460 | + // startTimeoutMonitoring(); |
| 461 | 461 | ||
| 462 | // PDF初始化完成后的处理 | 462 | // PDF初始化完成后的处理 |
| 463 | loadingError.value = false; | 463 | loadingError.value = false; | ... | ... |
-
Please register or login to post a comment