51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import type {PqReport} from '@/api/device/interface/report'
|
|
import http from '@/api'
|
|
|
|
/**
|
|
* @name 报告模版模块
|
|
*/
|
|
|
|
//获取报告模版
|
|
export const getPqReportList = (params: PqReport.ReqReportParams) => {
|
|
return http.post(`/report/list`, params)
|
|
}
|
|
|
|
//新增报告模版
|
|
export const addPqReport = (params: PqReport.ResReport) => {
|
|
return http.upload(`/report/add`, params)
|
|
}
|
|
|
|
//删除报告模版
|
|
export const deletePqReport = (params: string[]) => {
|
|
return http.post(`/report/delete`, params)
|
|
}
|
|
|
|
//查询报告模板详情
|
|
export const getPqReportById = (params: PqReport.ResReport) => {
|
|
return http.get(`/report/getById?id=${params.id}`)
|
|
}
|
|
|
|
//修改报告模板
|
|
export const updatePqReport = (params: PqReport.ResReport) => {
|
|
return http.upload(`/report/update`, params)
|
|
}
|
|
|
|
//查询所有报告模板名称
|
|
export const getPqReportAllName = () => {
|
|
return http.get(`/report/listAllName`)
|
|
}
|
|
|
|
//根据名称查询指定报告模板的所有版本
|
|
export const getPqReportAllVersion = (params:any) => {
|
|
return http.get(`/report/listAllVersion?name=${params.name}`)
|
|
}
|
|
|
|
//被检设备归档
|
|
export const documentedPqDev = (ids: string[]) => {
|
|
return http.post(`/report/documented`, ids)
|
|
}
|
|
|
|
//上传报告到云端
|
|
export const uploadReportToCloud = (deviceIds: string[]) => {
|
|
return http.post(`/report/uploadReportToCloud`, deviceIds)
|
|
} |