Administrator
2021-08-28 e4100ecc3a88273dcdbc2c1452d4e9f00736f3db
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
    })
@@ -74,4 +84,15 @@
            id,
        }
    })
}
export const getSecurityApplyInfo = (id, userId) => {
    return request({
        url: '/api/apply/getSecurityApplyDetail',
        method: 'get',
        params: {
            id,
            userId
        }
    })
}