Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
lijiahangmax
2024-08-29 00:23:33 +08:00
55 changed files with 368 additions and 92 deletions

View File

@@ -15,6 +15,7 @@ export interface HostConnectLogQueryRequest extends Pagination {
token?: string;
status?: string;
startTimeRange?: string[];
clearLimit?: number;
}
/**

View File

@@ -13,6 +13,7 @@ export interface ExecLogQueryRequest extends Pagination {
command?: string;
status?: string;
startTimeRange?: string[];
clearLimit?: number;
}
/**

View File

@@ -40,6 +40,7 @@ export interface UploadTaskQueryRequest extends Pagination {
description?: string;
status?: string;
createTimeRange?: string[];
clearLimit?: number;
}
/**

View File

@@ -27,8 +27,7 @@ export function getSystemAppInfo() {
* 获取仓库最后版本信息
*/
export function getRepoLatestRelease() {
// return axios.get<RepoReleaseResponse>('https://gitee.com/api/v5/repos/dromara/orion-visor/releases/latest', {
return axios.get<RepoReleaseResponse>('https://lijiahangmax.github.io/open-orion/orion-visor/releases-latest.json', {
return axios.get<RepoReleaseResponse>('https://visor.orionsec.cn/releases-latest.json', {
// 不添加请求头 否则会报 401
setAuthorization: false,
// 返回原始输出

View File

@@ -13,6 +13,7 @@ export interface OperatorLogQueryRequest extends Pagination {
riskLevel?: string;
result?: number;
startTimeRange?: string[];
clearLimit?: number;
}
/**