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 = {
|
|
//会员中心-我的收藏(数量统计)
|
|
bossQueryCollectionCount: {
|
|
url: '/api/boss/queryCollectionCount',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
//会员中心-联系记录-谁看过我(数量统计)
|
|
bossQueryWatchMeCount: {
|
|
url: '/api/boss/queryWatchMeCount',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
//会员中心-联系记录-我看过谁(数量统计)
|
|
bossQueryWatchWhoCount: {
|
|
url: '/api/boss/queryWatchWhoCount',
|
|
method: 'GET',
|
|
auth: true,
|
|
},
|
|
}
|
|
|
|
export default api
|