诊断模版增加分页

This commit is contained in:
lxd 2025-03-28 22:14:06 +08:00
parent 6004d64e1b
commit 951b42fc05

View File

@ -119,6 +119,13 @@
</el-table-column>
</el-table>
</el-card>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
@ -142,7 +149,7 @@ const total = ref(0) // 列表的总页数
const categoryOptions = ref<any[]>([]) //
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
pageSize: 50,
id: undefined,
type: undefined,
status: undefined,