public.js 511 B

123456789101112131415161718192021222324252627
  1. import request from '@/api'
  2. export function getCommonAdList (data) {
  3. return request({
  4. baseURL: '/publicapply',
  5. url: '/free/getJyAdList',
  6. method: 'POST',
  7. data
  8. })
  9. }
  10. export function getFreeUserPushInfo (data) {
  11. return request({
  12. baseURL: '/publicapply',
  13. url: '/myinfo',
  14. method: 'POST'
  15. })
  16. }
  17. // 获取免费订阅信息接口
  18. export function getFreeUserSubscribeList (data) {
  19. return request({
  20. baseURL: '/publicapply',
  21. url: '/free/subscribe',
  22. method: 'POST'
  23. })
  24. }