bug
jiangping
2023-12-06 1f4e7d0f73a73e7350cf5a1df279d5f30904c5d5
h5_standard/src/apis/PlanningAPI.ts
@@ -104,3 +104,56 @@
        method: 'get'
    })
}
// 根据对象信息查询
export function queryOne (data: any): Promise<any> {
    return httpRequest({
        url: '/ext/salaryParam/queryOne',
        method: 'post',
        data
    })
}
// 根据对象信息查询
export function queryList (data: any): Promise<any> {
    return httpRequest({
        url: '/ext/salaryParam/queryList',
        method: 'post',
        data
    })
}
// 一键报工
export function autoWorkReport (data: any): Promise<any> {
    return httpRequest({
        url: '/ext/plansExt/autoWorkReport',
        method: 'post',
        data
    })
}
// 根据id查询
export function getIdPlansExt(id: any): Promise<any> {
    return httpRequest({
        url: `/ext/plansExt/${id}`,
        method: 'get'
    })
}
// 列表查询
export function categoryExtList (data: any): Promise<any> {
    return httpRequest({
        url: '/ext/categoryExt/list',
        method: 'post',
        data
    })
}
// 查询全部
export function allUser (data: any): Promise<any> {
    return httpRequest({
        url: '/ext/companyUserExt/allUser',
        method: 'post',
        data
    })
}