hookehuyr

style(PdfViewer): 在页码显示中添加空格以提升可读性

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 13:32:48 4 + * @LastEditTime: 2025-10-22 13:36:27
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 -->
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
58 <!-- <van-button class="zoom-btn zoom-in-btn" type="default" icon="plus" round @click="zoomIn" /> --> 58 <!-- <van-button class="zoom-btn zoom-in-btn" type="default" icon="plus" round @click="zoomIn" /> -->
59 <font-awesome-icon icon="magnifying-glass-plus" class="text-2xl text-gray-600 ml-2 mr-2" @click="zoomIn" /> 59 <font-awesome-icon icon="magnifying-glass-plus" class="text-2xl text-gray-600 ml-2 mr-2" @click="zoomIn" />
60 <div class="page-jump" @click="focusPageInput"> 60 <div class="page-jump" @click="focusPageInput">
61 - <span class="page-display">{{ currentPage }}/{{ totalPages || 0 }}</span> 61 + <span class="page-display">{{ currentPage }} / {{ totalPages || 0 }}</span>
62 <input 62 <input
63 ref="pageInputRef" 63 ref="pageInputRef"
64 class="page-input" 64 class="page-input"
......