From 7f7f2ed6cc332d82260077a2e13920569dcc9632 Mon Sep 17 00:00:00 2001 From: buhuazhen <hua100783@gmail.com> Date: 星期一, 30 三月 2026 09:42:29 +0800 Subject: [PATCH] fix(productionReporting): 修复生产数量输入框类型和验证 --- src/views/reportAnalysis/reportManagement/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/reportAnalysis/reportManagement/index.vue b/src/views/reportAnalysis/reportManagement/index.vue index 2adfb54..5aa4cd9 100644 --- a/src/views/reportAnalysis/reportManagement/index.vue +++ b/src/views/reportAnalysis/reportManagement/index.vue @@ -194,9 +194,9 @@ <div class="pagination-container"> <el-pagination - v-model:current-page="pagination.currentPage" - v-model:page-size="pagination.pageSize" - :page-sizes="[10, 20, 50, 100]" + v-model:currentPage="pagination.currentPage" + v-model:pageSize="pagination.pageSize" + :page-size-options="[10, 20, 50, 100]" :total="pagination.total" layout="total, sizes, prev, pager, next, jumper" @size-change="handleSizeChange" -- Gitblit v1.9.3