Commit d44f0691 by wusiyi

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

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