This commit is contained in:
zds
2022-11-28 18:19:59 +08:00
parent fb88546733
commit 7b1f9fb61f
27 changed files with 240 additions and 109 deletions

View File

@@ -23,11 +23,11 @@ export function saveData(data) {
})
}
export function del(ids) {
export function del(data) {
return request({
url: 'api/productProcessParam/',
method: 'delete',
data: ids
url: 'api/productProcessParam/del',
method: 'post',
data
})
}