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

46 lines
1.0 KiB

// 联系记录相关接口
const api = {
//联系记录-谁看过我(谁看过我的简历)
employeeQueryWatchMe: {
url: '/employ/check/queryWatchMeEmployee',
method: 'GET',
auth: true,
},
//会员中心-联系记录-谁看过我(谁看过我的招工)
bossQueryWatchMe: {
url: '/employ/check/queryWatchMeBoss',
method: 'GET',
auth: true,
},
//会员中心-联系记录-我看过谁(我看过谁的简历)
bossQueryWatchWho: {
url: '/employ/check/queryWatchWhoBoss',// queryWatchWhoBoss
method: 'GET',
auth: true,
},
//会员中心-联系记录-我看过谁 (我看过谁的招工)
queryWatchWhoEmployee: {
url: '/employ/check/queryWatchWhoEmployee',
method: 'GET',
auth: true,
},
//电子合同-获取电子合同列表
queryContractList: {
url: '/employ/contract/queryContractList',
method: 'GET',
auth: true,
},
//电子合同-根据id查询电子合同详情
queryContracById: {
url: '/employ/contract/queryContracById',
method: 'GET',
auth: true,
},
}
export default api