新增评测模块

This commit is contained in:
sj
2022-09-22 09:34:30 +08:00
parent 7e76feff54
commit a7dabdf8e1
2 changed files with 359 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'bxg/api/yxEvaluation',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'bxg/api/yxEvaluation/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'bxg/api/yxEvaluation',
method: 'put',
data
})
}
export default { add, edit, del }