Zlpt_Portal/src/http/api/usercenter/baseinfo.ts

10 lines
233 B
TypeScript
Raw Normal View History

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
}