2023-12-05 17:05:54 +08:00
|
|
|
// 个人中心 基础信息模块
|
|
|
|
|
|
|
|
|
|
import { get, post } from '../../index'
|
|
|
|
|
|
|
|
|
|
// 申请企业信息认证接口
|
|
|
|
|
export const applyAttestationApi = (data: any) => {
|
2023-12-08 10:10:04 +08:00
|
|
|
return post('/zlpt-company/company_info/addCompanyInfo', data)
|
2023-12-05 17:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
2023-12-08 15:05:47 +08:00
|
|
|
// 获取订单统计接口
|
|
|
|
|
export const getOrderCountTotalApi = () => {
|
|
|
|
|
return get('/zlpt-order/info/count', {})
|
|
|
|
|
}
|
|
|
|
|
// 获取装备统计接口
|
|
|
|
|
export const getEquipCountTotalApi = () => {
|
|
|
|
|
return get('/zlpt-equip/dev/sumType', {})
|
|
|
|
|
}
|
2023-12-10 01:43:50 +08:00
|
|
|
// 获取企业信息
|
|
|
|
|
export const getEnterpriseInfoApi = () => {
|
|
|
|
|
return get('/zlpt-company/company_info/getCompanyInfoByUserId', {})
|
|
|
|
|
}
|
2023-12-08 15:05:47 +08:00
|
|
|
|