货物同步功能

This commit is contained in:
zhonghua.li
2026-05-26 17:29:46 +08:00
parent 3cbc3d1251
commit 64ed366b4b
2 changed files with 42 additions and 0 deletions

View File

@@ -37,3 +37,13 @@ export function deleteLbGoods(id) {
method: 'delete'
})
}
/** 从 hxrd 第三方分页同步货品,可能较慢 */
export function syncLbGoodsFromHxr(params) {
return request({
url: '/lbGoods/sync-from-hxr',
method: 'post',
params,
timeout: 120000
})
}