Administrator
2022-04-11 79d9fc857559982b00b68b2d709807bdc4cd286f
src/api/accreditationRecords/accreditationRecords.js
@@ -33,9 +33,17 @@
    })
}
export const add = (row) => {
export const submit = (row) => {
    return request({
        url: '/api/accreditationRecords/submit',
        method: 'post',
        data: row
    })
}
export const add = (row) => {
    return request({
        url: '/api/accreditationRecords/save',
        method: 'post',
        data: row
    })
@@ -74,4 +82,12 @@
        method: 'post',
        data: row
    })
}
export const batchAccreditation = (row) => {
    return request({
        url: '/api/accreditationRecords/batchAccreditation',
        method: 'post',
        data: row
    })
}