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