| | |
| | | export function updateById (data) { |
| | | return request.post('/business/companyUserApply/updateById', data) |
| | | } |
| | | |
| | | // 根据ID查询 |
| | | export function getById (id) { |
| | | return request.get(`business/companyUserApply/${id}`) |
| | | } |
| | | |
| | | // 删除 |
| | | export function deleteById (id) { |
| | | return request.get(`/business/companyUserApply/delete/${id}`) |
| | | } |
| | | |
| | | // 审批 |
| | | export function audit (data) { |
| | | return request.post('/business/companyUserApply/audit', data) |
| | | } |
| | | |
| | | // 分页查询 |
| | | export function page (data) { |
| | | return request.post('/business/companyUserApply/page', data) |
| | | } |