冀北项目添加表格导出功能 技术监督添加下载模版上传功能
This commit is contained in:
@@ -67,6 +67,16 @@ export const downloadSensitiveReportTemplate = () => {
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 下载技术监督模版
|
||||
*/
|
||||
export const downloadPlanTemplate = () => {
|
||||
return createAxios({
|
||||
url: '/supervision-boot/surveyPlan/downloadPlanTemplate',
|
||||
method: 'GET',
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 导入敏感及重要用户数据
|
||||
@@ -90,6 +100,17 @@ export const importSensitiveReportData = (data: any) => {
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 批量导入技术监督数据
|
||||
*/
|
||||
export const importPlanData = (data: any) => {
|
||||
return createAxios({
|
||||
url: '/supervision-boot/surveyPlan/importPlanData',
|
||||
method: 'POST',
|
||||
data: data,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量导入终端台账入网
|
||||
|
||||
Reference in New Issue
Block a user