map1.js
825 Bytes
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
36
37
38
39
40
41
42
43
44
45
// import request from '@/api/map'
import request from '@/utils/request'
// 查询列表
export function getAlls (data) {
return request({
url: '/cereAdvertisingInformation/queryByPage',
method: 'post',
data
})
}
// 新增
export function addList (data) {
return request({
url: '/cereAdvertisingInformation/add',
method: 'post',
data
})
}
// 编辑
export function editList (data) {
return request({
url: '/cereAdvertisingInformation/edit',
method: 'post',
data
})
}
// 删除
export function delList (data) {
return request({
url: '/cereAdvertisingInformation/deleteById',
method: 'post',
data
})
}
// 查询指定数据
export function likeGet (data) {
return request({
url: '/cereAdvertisingInformation/likeGet',
method: 'post',
data
})
}