mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-11-12 14:27:49 +00:00
19 lines
260 B
JavaScript
19 lines
260 B
JavaScript
/**
|
|
* 默认单页数量
|
|
* @type {number}
|
|
*/
|
|
export const PAGE_SIZE = 10
|
|
|
|
/**
|
|
* 默认分页数据
|
|
*
|
|
* @param pageSize
|
|
* @return {CommonPage}
|
|
*/
|
|
export const useDefaultPage = (pageSize = PAGE_SIZE) => {
|
|
return {
|
|
pageSize,
|
|
pageNumber: 1
|
|
}
|
|
}
|