fix(freightwaves.service): 修正createOrder接口返回完整response对象而非仅data字段

This commit is contained in:
zhuotianyuan 2026-01-22 15:59:24 +08:00
parent 7a25a685a5
commit e96ca04f07
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ export class FreightwavesService {
};
const response = await this.sendRequest<CreateOrderResponseData>('shipService/order/createOrder', requestData);
return response.data;
return response;
}
/**