This commit is contained in:
van
2026-06-10 17:18:38 +08:00
parent 42aeb7b232
commit 19de22f1ed
2 changed files with 50 additions and 3 deletions

View File

@@ -58,4 +58,14 @@ export function getOrderStatistics(query) {
method: 'get',
params: query
})
}
}
// 回填订单商品图、店铺名goodsInfo
export function backfillGoodsInfo(data) {
return request({
url: '/system/jdorder/orderRows/backfillGoodsInfo',
method: 'post',
data: data,
timeout: 300000
})
}