Administrator
2021-12-09 d1b058faa19088838b668d6c03dd71c2bcc7d5d3
src/api/accreditationRecords/accreditationRecords.js
@@ -1,14 +1,13 @@
import request from '@/router/axios';
export const getList = (current, size, params, deptId) => {
export const getList = (current, size, params) => {
    return request({
        url: '/api/accreditationRecords/page',
        method: 'get',
        params: {
            ...params,
            current,
            size,
            deptId,
            ...params
        }
    })
}
@@ -51,6 +50,24 @@
}
export const audit = (row) => {
    return request({
        url: '/api/accreditationRecords/audit',
        method: 'post',
        data: row
    })
}
export const batchAudit = (row) => {
    return request({
        url: '/api/accreditationRecords/batchAudit',
        method: 'post',
        data: row
    })
}
export const securityApply = (row) => {
    return request({
        url: '/api/accreditationRecords/securityApply',