| | |
| | | method: 'delete' |
| | | }) |
| | | } |
| | | // |
| | | // //企业课时变更记录列表(分页) |
| | | // export function getCompanyPeriod(param) { |
| | | // return request({ |
| | | // url: '/company-period/list', |
| | | // method: 'get', |
| | | // params: param |
| | | // }) |
| | | // } |
| | | |
| | | //根据id查询学院试卷信息 |
| | | export function getPaperStu(param) { |
| | | return request({ |
| | | url: '/paper-student/getPaperStudentById', |
| | | method: 'get', |
| | | params: param |
| | | }) |
| | | } |
| | | //根据id试卷信息 |
| | | export function getPaper(id) { |
| | | return request({ |
| | | url: '/exam-paper/'+id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | //提交批改试卷 |
| | | export function doConfirmExam(data) { |
| | | return request({ |
| | | url: '/paper-student/doReview', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |