2023-07-21 15:35:53 +08:00
|
|
|
import oahttp from "@/utils/oahttp.js";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 我的公司
|
|
|
|
*/
|
|
|
|
export const companyMine = (data) => oahttp.get('/company/mine', data)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 公司列表
|
|
|
|
*/
|
|
|
|
export const companyIndex = (data) => oahttp.get('/company/index', data)
|
|
|
|
|
2023-08-03 14:05:16 +08:00
|
|
|
/**
|
|
|
|
* 未签约公司列表
|
|
|
|
*/
|
|
|
|
export const companyUnsigned = (data) => oahttp.get('/company/unsigned', data)
|
|
|
|
|
2023-07-21 15:35:53 +08:00
|
|
|
/**
|
|
|
|
* 公司详情
|
|
|
|
*/
|
|
|
|
export const companyView = (data) => oahttp.get('/company/view', data)
|
2023-07-21 16:05:49 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 公司详情
|
|
|
|
*/
|
2023-07-22 14:41:42 +08:00
|
|
|
export const companyAreaManager = (data) => oahttp.get('/company/areaManager', data)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 人员列表
|
|
|
|
*/
|
|
|
|
export const companyUser = (data) => oahttp.get('/company/users', data)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 人员详情
|
|
|
|
*/
|
2023-08-03 14:05:16 +08:00
|
|
|
export const companyUserDetail = (data) => oahttp.get('/company/user', data)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 人员详情
|
|
|
|
*/
|
|
|
|
export const accountMonthList = (data) => oahttp.get('/account_log/company_year_count', data)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 人员详情
|
|
|
|
*/
|
|
|
|
export const accountDateList = (data) => oahttp.get('/account_log/company_lists', data)
|