Administrator
2022-04-11 79d9fc857559982b00b68b2d709807bdc4cd286f
src/api/examapi/applyexam.js
@@ -15,7 +15,7 @@
export const addApply = (row) => {
    return request({
        url: '/api/apply/submit',
        url: '/api/apply/save',
        method: 'post',
        data: row
    })
@@ -25,6 +25,16 @@
export const cancelApply = (row) => {
    return request({
        url: '/api/apply/cancelApply',
        method: 'post',
        data: row
    })
}
export const cancelApplyNotApplyId = (row) => {
    return request({
        url: '/api/apply/cancelApplyNotApplyId',
        method: 'post',
        data: row
    })
@@ -50,16 +60,11 @@
    })
}
export const addExam = (ids, examTime, startTime, endTime) => {
export const addExam = (params) => {
    return request({
        url: '/api/apply/batchExam',
        method: 'post',
        params: {
            ids,
            examTime,
            startTime,
            endTime
        }
        data: params
    })
}
@@ -74,4 +79,15 @@
            id,
        }
    })
}
export const getSecurityApplyInfo = (id, userId) => {
    return request({
        url: '/api/apply/getSecurityApplyDetail',
        method: 'get',
        params: {
            id,
            userId
        }
    })
}