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();
|
}
|