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
| import request from "@/utils/request";
|
| export function saveOrUpdate(data) {
| return request({
| url: "/dataapi/scene/scene/bookmark/saveOrUpdate",
| method: 'post',
| data: data
| });
| }
|
| export function getBookmarkList(id) {
| return request({
| url: "/dataapi/scene/scene/bookmark/getBookmarkList?userId="+id,
| method: 'get'
| })
| }
|
| export function getBookmarkInfoById(id) {
| return request({
| url: "/dataapi/scene/scene/bookmark/getBookmarkInfoById?userId="+id,
| method: 'get',
| })
| }
|
| export function deleteById(id) {
| return request({
| url: "/dataapi/scene/scene/bookmark/deleteById",
| method: 'get',
| params: {
| id: id
| }
| })
| }
|
|