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

47 lines
866 B

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