exam_user add status: avoid

This commit is contained in:
xiaomlove
2021-06-10 02:16:08 +08:00
parent f3417e9653
commit a0b56222b2
7 changed files with 38 additions and 1 deletions
+3
View File
@@ -81,6 +81,9 @@ const api = {
deleteExamUser: (id) => {
return axios.delete('exam-users/' + id);
},
avoidExamUser: (id) => {
return axios.put('exam-users-avoid', {id});
},
storeExamUser: (params) => {
return axios.post('exam-users', params);
},