代码更新

This commit is contained in:
2022-10-13 19:49:51 +08:00
parent 824c2b9f8e
commit f2492eee65
9 changed files with 1154 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/wastecchange',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/wastecchange/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/wastecchange',
method: 'put',
data
})
}
export function confirm(data) {
return request({
url: 'api/wastecchange/confirm',
method: 'post',
data
})
}
export default { add, edit, del, confirm }