feat(iot): IoT 产品和设备分页默认改为 12 条
parent
f29a384904
commit
2cb3b5b492
|
|
@ -392,7 +392,7 @@ const list = ref<DeviceVO[]>([]) // 列表的数据
|
||||||
const total = ref(0) // 列表的总页数
|
const total = ref(0) // 列表的总页数
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 12,
|
||||||
deviceName: undefined,
|
deviceName: undefined,
|
||||||
productId: undefined as number | undefined,
|
productId: undefined as number | undefined,
|
||||||
deviceType: undefined,
|
deviceType: undefined,
|
||||||
|
|
|
||||||
|
|
@ -263,7 +263,7 @@ const list = ref<ProductVO[]>([]) // 列表的数据
|
||||||
const total = ref(0) // 列表的总页数
|
const total = ref(0) // 列表的总页数
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 12,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
productKey: undefined
|
productKey: undefined
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue