import request from '@/utils/request'
|
|
// 查询客户应用配置列表
|
export function listClientApp(query) {
|
return request({
|
url: '/system/clientApp/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询客户应用配置详细
|
export function getClientApp(appId) {
|
return request({
|
url: '/system/clientApp/' + appId,
|
method: 'get'
|
})
|
}
|
|
// 新增客户应用配置
|
export function addClientApp(data) {
|
return request({
|
url: '/system/clientApp',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改客户应用配置
|
export function updateClientApp(data) {
|
return request({
|
url: '/system/clientApp',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 删除客户应用配置
|
export function delClientApp(appId) {
|
return request({
|
url: '/system/clientApp/' + appId,
|
method: 'delete'
|
})
|
}
|
|
// 导出客户应用配置
|
export function exportClientApp(query) {
|
return request({
|
url: '/system/clientApp/export',
|
method: 'post',
|
params: query
|
})
|
}
|