mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 05:46:45 +08:00
style:投票页面修改
This commit is contained in:
@@ -55,7 +55,12 @@ export const deleteEvaluationById = (obj) => http.post('/evaluation/deleteEvalua
|
||||
|
||||
//根据ID获取测评信息详情
|
||||
export const queryEvaluationDetailById = (obj) =>
|
||||
http.post("/evaluation/queryEvaluationDetailById", { params: obj });
|
||||
http.post("/evaluation/queryEvaluationDetailById", obj,{
|
||||
headers: {
|
||||
'token': '123',
|
||||
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
}
|
||||
});
|
||||
|
||||
//修改测评信息
|
||||
export const updateEvaluation = (obj) =>
|
||||
@@ -68,3 +73,11 @@ export const updateEvaluation = (obj) =>
|
||||
// }).catch(err => {
|
||||
// console.log(err)
|
||||
// })
|
||||
//根据name获取测评信息详情
|
||||
export const getEvalListByName = (obj) =>
|
||||
http.post("/evaluation/queryEvaluationDetailById", obj,{
|
||||
headers: {
|
||||
'token': '123',
|
||||
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user