function searchByOrder(orderBy,orderType){
|
window.location.href = "/tssw/fileSafe/list?orderBy="+orderBy+"&orderType="+orderType+"&hostname="+$("#hostname").val();
|
}
|
|
function searchByOnline(state){
|
window.location.href = "/tssw/fileSafe/list?state="+state;
|
}
|
|
function searchByAccount() {
|
window.location.href = "/tssw/fileSafe/list?account="+$("#account").val();
|
}
|
|
function add() {
|
window.location.href = "/tssw/fileSafe/edit";
|
}
|
|
function addBatch() {
|
window.location.href = "/tssw/fileSafe/editBatch";
|
}
|
|
|
function edit(id){
|
window.location.href = "/tssw/fileSafe/edit?id="+id;
|
}
|
|
function del(id) {
|
if(confirm('你确定要删除吗?')) {
|
window.location.href = "/tssw/fileSafe/del?id=" + id;
|
}
|
}
|
|
|
function cancel(){
|
history.back();
|
}
|