Commit 4a0f9012 by wusiyi

fix: 待接单查询分页数据接口返回结果为空bug修复 #1001896

parent ab2f1dda
...@@ -74,7 +74,6 @@ export function getFactoryOrderNewListApi( ...@@ -74,7 +74,6 @@ export function getFactoryOrderNewListApi(
/** 请求体与 `factory/podOrder/list_page` 一致 */ /** 请求体与 `factory/podOrder/list_page` 一致 */
export function getPodOrderAcceptedStatisticsApi( export function getPodOrderAcceptedStatisticsApi(
data: SearchForm, data: SearchForm,
currentPage: number,
pageSize: number, pageSize: number,
status?: string, status?: string,
subStatus?: number, subStatus?: number,
...@@ -88,7 +87,7 @@ export function getPodOrderAcceptedStatisticsApi( ...@@ -88,7 +87,7 @@ export function getPodOrderAcceptedStatisticsApi(
}> }>
>('factory/podOrder/acceptedStatistics', { >('factory/podOrder/acceptedStatistics', {
...normalizePodOrderQueryPayload({ ...data } as Record<string, unknown>), ...normalizePodOrderQueryPayload({ ...data } as Record<string, unknown>),
currentPage, currentPage: 1,
pageSize, pageSize,
status, status,
acceptedStatus: subStatus, acceptedStatus: subStatus,
......
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