123456789101112131415161718192021222324252627 |
- import request from '@/api'
- export function getCommonAdList (data) {
- return request({
- baseURL: '/publicapply',
- url: '/free/getJyAdList',
- method: 'POST',
- data
- })
- }
- export function getFreeUserPushInfo (data) {
- return request({
- baseURL: '/publicapply',
- url: '/myinfo',
- method: 'POST'
- })
- }
- // 获取免费订阅信息接口
- export function getFreeUserSubscribeList (data) {
- return request({
- baseURL: '/publicapply',
- url: '/free/subscribe',
- method: 'POST'
- })
- }
|