21 lines
532 B
JavaScript
21 lines
532 B
JavaScript
|
import oahttp from "@/utils/oahttp.js";
|
||
|
|
||
|
/**
|
||
|
* 股金流水
|
||
|
*/
|
||
|
export const companyAccountLog = (data) => oahttp.get('/company_account_log/lists', data)
|
||
|
|
||
|
/**
|
||
|
* 股金详情
|
||
|
*/
|
||
|
export const companyShareholderInfo = (data) => oahttp.get('/company/shareholder_info', data)
|
||
|
|
||
|
/**
|
||
|
* 发起合同
|
||
|
*/
|
||
|
export const initiateShareholderContract = (data) => oahttp.post('/company/initiate_shareholder_contract', data)
|
||
|
|
||
|
/**
|
||
|
* 上交股金
|
||
|
*/
|
||
|
export const companyPayShareCapital = (data) => oahttp.post('/company/pay_share_capital', data)
|