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.
13 lines
311 B
13 lines
311 B
import request from '@/utils/request'
|
|
const serviceTitle = '/img'
|
|
//GET 传参需要用 params
|
|
//POST 传参需要用 data
|
|
|
|
//获取用户收藏列表
|
|
export function getCollectionList(data) {
|
|
return request({
|
|
url: `${serviceTitle}/img/mini/tiktok/listTiktokCollection`,
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|