12 lines
274 B
JavaScript
12 lines
274 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)
|