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

24 lines
522 B

2 months ago
  1. // 积分相关接口
  2. const api = {
  3. //会员中心-我的收藏(数量统计)
  4. bossQueryCollectionCount: {
  5. url: '/api/boss/queryCollectionCount',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. //会员中心-联系记录-谁看过我(数量统计)
  10. bossQueryWatchMeCount: {
  11. url: '/api/boss/queryWatchMeCount',
  12. method: 'GET',
  13. auth: true,
  14. },
  15. //会员中心-联系记录-我看过谁(数量统计)
  16. bossQueryWatchWhoCount: {
  17. url: '/api/boss/queryWatchWhoCount',
  18. method: 'GET',
  19. auth: true,
  20. },
  21. }
  22. export default api