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

10 lines
220 B
TypeScript
Raw Normal View History

2023-12-05 17:05:54 +08:00
// 个人中心 基础信息模块
import { get, post } from '../../index'
// 申请企业信息认证接口
export const applyAttestationApi = (data: any) => {
return post('/company_info/addCompanyInfo', data)
}