newly.js
1.06 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
import request from '@/utils/request'
import requestnew from '@/utils/request2'
// 获取策略
export function cereResourceStrategylist(data) {
return request({
url: '/cereResourceStrategy/queryByResources',
method: 'post',
data
})
}
// 绑定策略
export function cereResourceStrategy(data) {
return request({
url: '/cereResourceStrategy/addList',
method: 'post',
data
})
}
// ******商家管理******
// 列表
export function cerePlatformMerchant(data) {
return requestnew({
url: '/cerePlatformMerchant/queryByPage',
method: 'post',
data
})
}
// 添加
export function cerePlatformMerchantadd(data) {
return requestnew({
url: '/cerePlatformMerchant/add',
method: 'post',
data
})
}
// 详情
export function cerePlatformMerchantinfo(data) {
return requestnew({
url: '/cerePlatformMerchant/queryById',
method: 'post',
data
})
}
// 修改
export function cerePlatformMerchantedit(data) {
return requestnew({
url: '/cerePlatformMerchant/edit',
method: 'post',
data
})
}