fix:SN码删除提示语优化

This commit is contained in:
zhangxuanming
2024-12-24 17:00:07 +08:00
parent c294978492
commit 0e5eb5aca3
2 changed files with 12 additions and 9 deletions

View File

@@ -44,9 +44,12 @@ export function updateSn(data) {
}
// 删除SN码
export function delSn(snId) {
export function delSn(ids) {
return request({
url: '/mes/wm/sn/' + snId,
method: 'delete'
url: '/mes/wm/sn/remove',
method: 'get',
params: {
ids
}
})
}