1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| /**
| * 视频标签相关API
| */
|
| import { http, Method } from "@/utils/request.js";
|
|
|
|
| /**
| * 收藏/取消收藏
| *
| * @param params
| */
| export function changeCollect(data) {
| return http.request({
| url: "/lmk/my-collect/change",
| method: Method.POST,
| needToken: true,
| data: data
| });
| }
|
| /**
| * 获得我的收藏按传入类型 video,activity,store
| * @param {Object} param
| */
| export function getMyCollectList(param){
| return http.request({
| url: "/lmk/my-collect/getMyCollectList",
| method: Method.GET,
| needToken: true,
| params: param
| });
| }
|
|