付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
function searchByOrder(orderBy,orderType){
    window.location.href = "/tssw/dash/hostDrawList?orderBy="+orderBy+"&orderType="+orderType;
}
 
function searchByOnlineDashView(state){
    window.location.href = "/tssw/dash/hostDrawList?state="+state;
}
 
 
function viewChart(id) {
    window.location.href="/tssw/systemInfo/chart?id="+id;
}
 
function view(id) {
    window.location.href = "/tssw/dash/hostDraw?id="+id;
}
 
function viewDocker(id) {
    window.location.href = "/tssw/dockerInfo/view?id="+id;
}
 
function viewAppInfo(id) {
    window.location.href = "/tssw/appInfo/view?id="+id;
}
 
function viewCustomInfo(id) {
    window.location.href = "/tssw/customInfo/view?id="+id;
}
 
function viewApps(hostname){
    window.location.href = "/tssw/appInfo/list?hostname="+hostname;
}
 
function viewDockers(hostname){
    window.location.href = "/tssw/dockerInfo/list?hostname="+hostname;
}
 
function viewPorts(hostname){
    window.location.href = "/tssw/portInfo/list?hostname="+hostname;
}
 
function viewFileWarn(hostname){
    window.location.href = "/tssw/fileWarnInfo/list?hostname="+hostname;
}
 
function stateList(id) {
    window.location.href = "/tssw/fileWarnInfo/stateList?fileWarnId="+id;
}
 
function viewFileWarnInfo(id) {
    window.location.href = "/tssw/fileWarnInfo/view?id="+id;
}
 
function cancel(){
    history.back();
}