抖音小程序端
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.

15 lines
341 B

import request from '@/utils/request'
const serviceTitle = '/img'
const prefix = '/img/mini/tiktok'
//GET 传参需要用 params
//POST 传参需要用 data
//获取用户收藏分頁
export function listTiktokCollection(data) {
return request({
url: `${serviceTitle}${prefix}/listTiktokCollection`,
method: 'post',
data: data
})
}