修改全局报表功能
This commit is contained in:
@@ -103,6 +103,14 @@ export function getTemplateByDept(params) {
|
||||
params
|
||||
})
|
||||
}
|
||||
// 获取模版
|
||||
export function querySysExcel(params) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcel/querySysExcel',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
//资源管理 查询数据
|
||||
export function queryData(data) {
|
||||
return createAxios({
|
||||
@@ -168,3 +176,43 @@ export function terminalChooseTree() {
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
//新增模版
|
||||
export function addSysExcel(data:any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcel/addSysExcel',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//修改模版
|
||||
export function updateSysExcel(data:any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcel/updateSysExcel',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//删除模版
|
||||
export function deleteSysExcel(params:any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcel/deleteSysExcel',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
//查詢綁定
|
||||
export function queryList(params:any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcelRelation/queryList',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
//綁定
|
||||
export function bandRelation(data:any) {
|
||||
return createAxios({
|
||||
url: '/cs-harmonic-boot/sysExcelRelation/bandRelation',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user