// 个人中心 基础信息模块 import { get, post } from '../../index' // 申请企业信息认证接口 export const applyAttestationApi = (data: any) => { return post('/zlpt-company/company_info/addCompanyInfo', data) } // 获取订单统计接口 export const getOrderCountTotalApi = () => { return get('/zlpt-order/info/count', {}) } // 获取装备统计接口 export const getEquipCountTotalApi = () => { return get('/zlpt-equip/dev/sumType', {}) } // 获取企业信息 export const getEnterpriseInfoApi = () => { return get('/zlpt-company/company_info/getCompanyInfoByUserId', {}) }