Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-05-08 15:30:19 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
313ff8a4698f6de42e49967a716bd28ca8bec13a
313ff8a4
1 parent
49fc153b
fix(PdfPreview): 启用pdfImageView以正确显示PDF图像
修复PDF预览组件中pdfImageView选项被错误禁用的问题,确保PDF图像能够正确显示。
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
2 deletions
src/components.d.ts
src/components/ui/PdfPreview.vue
src/components.d.ts
View file @
313ff8a
...
...
@@ -34,7 +34,6 @@ declare module 'vue' {
VanCheckbox
:
typeof
import
(
'vant/es'
)[
'Checkbox'
]
VanDatePicker
:
typeof
import
(
'vant/es'
)[
'DatePicker'
]
VanDialog
:
typeof
import
(
'vant/es'
)[
'Dialog'
]
VanDivider
:
typeof
import
(
'vant/es'
)[
'Divider'
]
VanEmpty
:
typeof
import
(
'vant/es'
)[
'Empty'
]
VanField
:
typeof
import
(
'vant/es'
)[
'Field'
]
VanForm
:
typeof
import
(
'vant/es'
)[
'Form'
]
...
...
src/components/ui/PdfPreview.vue
View file @
313ff8a
...
...
@@ -56,7 +56,7 @@ const initPdfViewer = () => {
pdfOption: {
search: false,
scale: true,
pdfImageView:
fals
e,
pdfImageView:
tru
e,
page: true,
navShow: true,
navigationShow: false,
...
...
Please
register
or
login
to post a comment