完成全部页面分页组件的抽取

This commit is contained in:
2026-03-17 10:50:42 +08:00
parent 7211fcdfea
commit e266482f88
17 changed files with 619 additions and 52 deletions

View File

@@ -37,7 +37,7 @@
</view>
</view>
<CommonPagination
v-if="total > 0"
v-if="true"
:total="total"
:loading="false"
:currentPage="currentPage"
@@ -145,6 +145,7 @@ function onDel(item: LogisticsItem) {
.table-wrap { width: 100%; border: 1px solid #f0f0f0; }
.table-header { display: flex; flex-direction: row; background-color: #f8f8f9; }
.th { padding: 12px 10px; font-size: 13px; font-weight: bold; color: #515a6e; border-bottom: 1px solid #f0f0f0; text-align: center; }
.table-body { overflow-y: auto; max-height: calc(100vh - 380px); }
.tr { display: flex; flex-direction: row; align-items: center; border-bottom: 1px solid #f0f0f0; min-height: 50px; }
.td { padding: 10px; font-size: 13px; color: #515a6e; text-align: center; }
.action-btn { font-size: 13px; color: #1890ff; margin-right: 8px; cursor: pointer; }