特易招,招聘小程序
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.
 
 
 

36 lines
668 B

// 工作相关接口
const api = {
// 首页-添加工作信息
addJob: {
url: '/employ/job/addJob',
method: 'POST',
auth : true,
limit : 1500,
},
// 首页-根据Id查看工作详情
employeeQueryJobList: {
url: '/employ/job/queryJobById',
method: 'GET',
},
// 首页-查询工作信息列表
employeeQueryJobById: {
url: '/employ/job/queryJobList',
method: 'GET',
},
// 会员中心-我的招工
bossQueryJobListByUserId: {
url: '/employ/job/queryJobListByUserId',
method: 'GET',
auth : true,
},
// 首页-修改工作信息
updateJob: {
url: '/employ/job/updateJob',
method: 'GET',
auth : true,
},
}
export default api