api.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. const API_BASE = 'https://xinghuolanqiu.com/newApi'
  2. module.exports = {
  3. // 微信授权登录
  4. wxLogin: API_BASE + '/v2/sale/login/wxLogin',
  5. // 账号密码登录
  6. loginByPassword: API_BASE + '/v2/sale/login/login',
  7. // 获取统计图数据
  8. getCensusChart: API_BASE + '/v2/sale/home/getCustomerCreateStatisticsList',
  9. // 获取附近场馆列表
  10. getNearVenueList: API_BASE + '/v2/sale/home/getVenueNearList',
  11. // 获取所有场馆列表
  12. getAllVenueList: API_BASE + '/v2/sale/home/getVenueNearMoreList',
  13. // 获取场馆详情
  14. getVenueDetail: API_BASE + '/v2/home/getVenueDetailById',
  15. // 获取班级详情
  16. getClassDetail: API_BASE + '/v2/home/getClassDetailById',
  17. // 获取新增统计数据
  18. getCensusInfo: API_BASE + '/v2/sale/home/getCustomerCreateStatisticsDetailCount',
  19. // 获取新增统计列表
  20. getCensusList: API_BASE + '/v2/sale/home/getCustomerCreateStatisticsDetailList',
  21. // 获取班级列表
  22. getClassList: API_BASE + '/v2/sale/customer/getClassList',
  23. // 获取礼物列表
  24. getGiftList: API_BASE + '/v2/sale/customer/getGiftList',
  25. // 获取销售员列表
  26. getSaleList: API_BASE + '/v2/sale/customer/getSaleList',
  27. // 获取谈单人列表
  28. getTalkerList: API_BASE + '/v2/sale/customer/getTalkerList',
  29. // 获取支付方式列表
  30. getPayTypeList: API_BASE + '/v2/sale/customer/getPayTypeList',
  31. // 提交已报名表单
  32. submitEnrolledForm: API_BASE + '/v2/sale/customer/joinCLass',
  33. // 提交意向客户表单
  34. submitIntentionForm: API_BASE + '/v2/sale/customer/insertCustomer',
  35. // 获取全部客户列表
  36. getCustomerList: API_BASE + '/v2/sale/center/getCustomerList',
  37. // 获取客户报名列表
  38. getOrderList: API_BASE + '/v2/sale/center/getCustomerDetailList',
  39. // 获取客户报名详情
  40. getOrderInfo: API_BASE + '/v2/sale/center/getCustomerDetail',
  41. // 获取当月销售额
  42. getSaleSortInfo: API_BASE + '/v2/sale/center/getSaleSort',
  43. // 获取业绩销售列表
  44. getSaleSortList: API_BASE + '/v2/sale/center/getSaleSortList',
  45. // 获取续费提醒列表
  46. getRenewList: API_BASE + '/v2/sale/center/getRenewRemindList',
  47. // 获取续费学员详情
  48. getStudentInfo: API_BASE + '/v2/sale/center/getRenewalStudent',
  49. // 获取续费学员沟通记录列表
  50. getRecordList: API_BASE + '/v2/sale/center/getRenewalCommunicateRecordList',
  51. // 提交续费学员沟通记录表单
  52. submitRecordForm: API_BASE + '/v2/sale/center/writeRenewalCommunicateRecord',
  53. // 获取消息通知列表
  54. getMessageList: API_BASE + '/v2/sale/center/messageInform',
  55. // 获取数据统计
  56. getDataCensus: API_BASE + '/v2/sale/center/dataStatistics',
  57. // 获取小程序二维码
  58. getShareUrl: API_BASE + '/v2/sale/center/share',
  59. // 获取服务器端图片
  60. getServerImg: API_BASE + '/download/icon/',
  61. // 上传地址
  62. uploadFile: API_BASE + '/v2/common/file/uploadOne',
  63. }