引入获取是否自动生成报告接口

This commit is contained in:
caozehui
2025-03-27 15:54:27 +08:00
parent 760dcbf723
commit e0941d628b
3 changed files with 16 additions and 2 deletions

View File

@@ -50,3 +50,10 @@ export const getCurrentScene = () => {
export const getPublicKey = (username: string, checked: boolean) => {
return http.get(`/admin/getPublicKey?username=${username}&checked=${checked}`, {}, {loading: false})
}
/**
* 获取是否在检测中自动生成报告
*/
export const getAutoGenerate = () => {
return http.get('/sysTestConfig/getAutoGenerate', {}, {loading: false})
}