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.
|
|
|
// 联系记录相关接口
|
|
|
|
const api = {
|
|
//联系记录-谁看过我(谁看过我的简历)
|
|
employeeQueryWatchMe: {
|
|
url: '/employ/check/queryWatchMeEmployee',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
//会员中心-联系记录-谁看过我(谁看过我的招工)
|
|
bossQueryWatchMe: {
|
|
url: '/employ/check/queryWatchMeBoss',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
//会员中心-联系记录-我看过谁
|
|
bossQueryWatchWho: {
|
|
url: '/api/boss/queryWatchWho',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
}
|
|
|
|
export default api
|