| | |
| | | export function create (data) { |
| | | return request.post('/business/company/create', data) |
| | | } |
| | | export function createShop (data) { |
| | | return request.post('/business/company/createShop', data) |
| | | } |
| | | |
| | | // 修改 |
| | | export function updateById (data) { |
| | |
| | | export function updateSolutions (data) { |
| | | return request.post('/business/company/updateSolutions', data) |
| | | } |
| | | |
| | | // 查询当前企业进行集团申请可以申请的企业 |
| | | export function findAllCompanyList (data) { |
| | | return request.post('/business/company/findAllCompanyList', data) |
| | | } |
| | | |
| | | // 发起签署 |
| | | export function getSignLink (id) { |
| | | return request.get(`/business/companySolution/getSignLink?id=${id}`) |
| | | } |