4373acf5
wesley88
1
|
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
|
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
})
}
|
4373acf5
wesley88
1
|
46
47
48
49
50
51
52
53
54
|
// 修改
export function cerePlatformMerchantedit(data) {
return requestnew({
url: '/cerePlatformMerchant/edit',
method: 'post',
data
})
}
|