mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 10:56:46 +08:00
feat:增加查看作业
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
* @Author: lixg lixg@dongwu-inc.com
|
||||
* @Date: 2022-12-13 09:24:38
|
||||
* @LastEditors: lixg lixg@dongwu-inc.com
|
||||
* @LastEditTime: 2023-01-30 10:50:28
|
||||
* @FilePath: /fe-manage/src/api/indexAudit.js
|
||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
*/
|
||||
import http from "./config";
|
||||
|
||||
//获取待审核面授课列表
|
||||
@@ -29,4 +37,7 @@ export const auditList = (obj) => http.post('/admin/project/auditList', obj)
|
||||
export const auditView = (obj) => http.post('/admin/project/auditView', obj)
|
||||
|
||||
//面授课审核
|
||||
export const courseAuditView = (obj) => http.post('/admin/offcourse/auditView', obj)
|
||||
export const courseAuditView = (obj) => http.post('/admin/offcourse/auditView', obj)
|
||||
|
||||
//项目修改记录
|
||||
export const editRecord = (chooseProject) => http.get(`/modifyRecord/page?id=${chooseProject}&type=1&size=2`)
|
||||
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
* @Author: lixg lixg@dongwu-inc.com
|
||||
* @Date: 2022-11-17 21:25:14
|
||||
* @LastEditors: lixg lixg@dongwu-inc.com
|
||||
* @LastEditTime: 2023-01-30 11:32:33
|
||||
* @FilePath: /fe-manage/src/api/indexWork.js
|
||||
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
*/
|
||||
import http from "./config";
|
||||
// 创建作业信息接口
|
||||
export const createWorkTask = (obj) =>
|
||||
@@ -13,3 +21,5 @@ export const queryWorkDetailById = (obj) => http.post('/work/queryWorkDetailById
|
||||
// 修改作业信息接口
|
||||
export const updateWorkTaskUsing = (obj) =>
|
||||
http.post("/work/updateWorkTask", obj);
|
||||
//查看作业
|
||||
export const getWorkSubmitInfo = (workId, stuId) => http.get(`/admin/student/getWorkSubmitInfo?id=${workId}&stuId=${stuId}`)
|
||||
Reference in New Issue
Block a user