feat(iot): IoT 产品和设备分页默认改为 12 条

pull/866/head
YunaiV 2026-03-08 12:27:47 +08:00
parent f29a384904
commit 2cb3b5b492
2 changed files with 2 additions and 2 deletions

View File

@ -392,7 +392,7 @@ const list = ref<DeviceVO[]>([]) // 列表的数据
const total = ref(0) //
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
pageSize: 12,
deviceName: undefined,
productId: undefined as number | undefined,
deviceType: undefined,

View File

@ -263,7 +263,7 @@ const list = ref<ProductVO[]>([]) // 列表的数据
const total = ref(0) //
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
pageSize: 12,
name: undefined,
productKey: undefined
})