Commit 1ca5c08e authored by 牛虎林's avatar 牛虎林

修改分页参数

parent 73d5febb
export interface BasicPageParams {
pageNum: number;
pageSize: number;
page: number;
size: number;
}
export interface BasicFetchResult<T> {
......
......@@ -9,9 +9,9 @@ export default {
// support xxx.xxx.xxx
fetchSetting: {
// The field name of the current page passed to the background
pageField: 'pageNum',
pageField: 'page',
// The number field name of each page displayed in the background
sizeField: 'pageSize',
sizeField: 'size',
// Field name of the form data returned by the interface
listField: 'items',
// Total number of tables returned by the interface field name
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment