You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
417 B
29 lines
417 B
import request from '@/utils/request'
|
|
|
|
// list
|
|
export function getEvaluationList(query) {
|
|
return request({
|
|
url: '/shian/evaluation/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
// info
|
|
export function getinfo(id) {
|
|
return request({
|
|
url: `/shian/evaluation/${id}`,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// add
|
|
export function addEvaluation(data) {
|
|
return request({
|
|
url: '/shian/evaluation',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|