特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
329 B

// 企业相关接口
const api = {
// 根据企业id查看企业信息
queryCompany: {
url: '/employ/company/queryCompany',
method: 'GET',
},
// 修改企业信息
updateCompany: {
url: '/employ/company/updateCompany',
method: 'POST',
auth : true,
limit : 1500,
showLoading : true,
},
}
export default api