| 对比新文件 |
| | |
| | | import request from '../../utils/request' |
| | | |
| | | // 鏌ヨ |
| | | export function fetchList (data) { |
| | | return request.post('/business/companyUserApply/page', data, { |
| | | trim: true |
| | | }) |
| | | } |
| | | |
| | | // 鍒涘缓 |
| | | export function create (data) { |
| | | return request.post('/business/companyUserApply/create', data) |
| | | } |
| | | |
| | | // 淇敼 |
| | | 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) |
| | | } |