fix: 列表页默认每页 20 条,统一分页规格
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
aeec917c09
commit
3a305b4a7e
|
|
@ -75,7 +75,7 @@ const brands = ref([])
|
|||
const tableLoading = ref(false)
|
||||
const pagination = reactive({
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 20,
|
||||
total: 0
|
||||
})
|
||||
const filters = reactive({ search: '' })
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ const factories = ref([])
|
|||
const tableLoading = ref(false)
|
||||
const pagination = reactive({
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 20,
|
||||
total: 0
|
||||
})
|
||||
const dialogVisible = ref(false)
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ const materials = ref([])
|
|||
const tableLoading = ref(false)
|
||||
const pagination = reactive({
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 20,
|
||||
total: 0
|
||||
})
|
||||
const factories = ref([])
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ const users = ref([])
|
|||
const tableLoading = ref(false)
|
||||
const pagination = reactive({
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 20,
|
||||
total: 0
|
||||
})
|
||||
const factories = ref([])
|
||||
|
|
|
|||
Loading…
Reference in New Issue