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

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

View File

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

View File

@@ -80,7 +80,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
ajax: {
query: async ({ page }, formValues) => {
const queryParams: CrmReceivablePlanApi.PlanPageParam = {
page: page.currentPage,
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
};