fix: pageNo error

This commit is contained in:
xingyu4j
2025-06-24 21:28:14 +08:00
parent 34730ab1a0
commit d258af35d7
18 changed files with 21 additions and 21 deletions

View File

@@ -96,7 +96,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
ajax: {
query: async ({ page }, formValues) => {
return await getCustomerPage({
page: page.currentPage,
pageNo: page.currentPage,
pageSize: page.pageSize,
sceneType: sceneType.value,
...formValues,

View File

@@ -73,7 +73,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
ajax: {
query: async ({ page }, formValues) => {
return await getCustomerLimitConfigPage({
page: page.currentPage,
pageNo: page.currentPage,
pageSize: page.pageSize,
type: configType.value,
...formValues,

View File

@@ -40,7 +40,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
ajax: {
query: async ({ page }, formValues) => {
return await getCustomerPage({
page: page.currentPage,
pageNo: page.currentPage,
pageSize: page.pageSize,
pool: true,
...formValues,