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.
21 lines
489 B
21 lines
489 B
import request from '@/utils/request'
|
|
const serviceTitle = '/img'
|
|
//GET 传参需要用 params
|
|
//POST 传参需要用 data
|
|
|
|
//获取banner列表
|
|
export function getBannerList(data) {
|
|
return request({
|
|
url: `${serviceTitle}/img/mini/tiktok/listBanner`,
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
//判断用户是否存在
|
|
// export function getUserCheck(data) {
|
|
// return request({
|
|
// url: `/${url}/dev-api/service/front/user/getUserCheck`,
|
|
// method: 'post',
|
|
// data: data
|
|
// })
|
|
//}
|
|
|