From b30c5831406c85369835eb0e9b48c60a8b65cf72 Mon Sep 17 00:00:00 2001 From: sd <shidong@jhsoft.cc> Date: 星期四, 07 八月 2025 17:10:42 +0800 Subject: [PATCH] 数据推送-增加推送方式标签,UDP有单独的ip输入框和推送字段 --- src/components/rightPagination.vue | 14 ++++---------- 1 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/components/rightPagination.vue b/src/components/rightPagination.vue index b021b73..1e2fa6c 100644 --- a/src/components/rightPagination.vue +++ b/src/components/rightPagination.vue @@ -7,7 +7,6 @@ :total="total" :current-page="innerCurrentPage" :page-size="innerPageSize" - :page-sizes="pageSizes" @size-change="handleSizeChange" @current-change="handleCurrentChange" /> @@ -33,15 +32,10 @@ type: Number, default: 10 }, - // 姣忛〉鏄剧ず鏁伴噺閫夐」 - pageSizes: { - type: Array, - default: () => [10, 20, 50, 100] - }, // 鍒嗛〉甯冨眬閰嶇疆 layout: { type: String, - default: 'total, sizes, prev, pager, next, jumper' + default: 'total, prev, pager, next, jumper' } }, data() { @@ -81,11 +75,11 @@ emitPaginationChange() { this.$emit('pagination-change', { page: this.innerCurrentPage, - limit: this.innerPageSize + pageSize: this.innerPageSize }); // 鍙�夛細鍗曠嫭瑙﹀彂鏇存柊浜嬩欢 - this.$emit('update:current-page', this.innerCurrentPage); - this.$emit('update:page-size', this.innerPageSize); + // this.$emit('update:current-page', this.innerCurrentPage); + // this.$emit('update:page-size', this.innerPageSize); } } }; -- Gitblit v1.8.0