更新
This commit is contained in:
0
api/userManagement/customer.js
Normal file
0
api/userManagement/customer.js
Normal file
45
api/userManagement/yunSite.js
Normal file
45
api/userManagement/yunSite.js
Normal file
@@ -0,0 +1,45 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export default {
|
||||
// 司机
|
||||
customerRelationSite(data) {
|
||||
return request({
|
||||
url: '/oil-user/oilCustomerChannelRelation/customerRelationSite',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
},
|
||||
|
||||
// 油站渠道
|
||||
getSiteChannelList(data) {
|
||||
return request({
|
||||
url: '/oil-site/oilSiteChannel/getSiteChannelList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
},
|
||||
// 权限
|
||||
getSiteCloudRoles() {
|
||||
return request({
|
||||
url: '/oil-user/sysRole/getSiteCloudRoles',
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
// 修改
|
||||
updateCustomerRelationSite(data) {
|
||||
return request({
|
||||
url: '/oil-user/oilCustomerChannelRelation/updateCustomerRelationSite',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
},
|
||||
// 新增
|
||||
saveCustomerRelationSite(data) {
|
||||
return request({
|
||||
url: '/oil-user/oilCustomerChannelRelation/saveCustomerRelationSite',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
},
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user