From 452c4d364caaa8dea35825ed1dcbee744f64edab Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期五, 16 一月 2026 11:20:24 +0800
Subject: [PATCH] fix: 添加字段每件数量/支改成每盒数量/支
---
src/components/PIMTable/PIMTable.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/components/PIMTable/PIMTable.vue b/src/components/PIMTable/PIMTable.vue
index d7bb422..12d73ad 100644
--- a/src/components/PIMTable/PIMTable.vue
+++ b/src/components/PIMTable/PIMTable.vue
@@ -204,7 +204,7 @@
</el-table-column>
</el-table>
<pagination
- v-if="page.total > 0"
+ v-if="isShowPage"
:total="page.total"
:layout="page.layout"
:page="page.current"
@@ -268,6 +268,10 @@
type: Boolean,
default: false,
},
+ isShowPage: {
+ type: Boolean,
+ default: true,
+ },
isShowSummary: {
type: Boolean,
default: false,
--
Gitblit v1.9.3