|
function add() {
|
window.location.href = "/tssw/accountInfo/edit";
|
}
|
|
|
function edit(id){
|
window.location.href = "/tssw/accountInfo/edit?id="+id;
|
}
|
|
function editPasswd(id){
|
window.location.href = "/tssw/accountInfo/editPasswd?id="+id;
|
}
|
|
function del(id) {
|
if(confirm('你确定要删除吗?删除后,此用户下的资源将只对管理员可见,后续可通过新建相同的登录账号来恢复其对所属资源的管理')) {
|
window.location.href = "/tssw/accountInfo/del?id=" + id;
|
}
|
}
|
|
function showPasswd(){
|
var type = $("#passwd").attr("type");
|
if(type=='text'){
|
$("#eyeSwitch").attr("class","fa fa-eye");
|
$("#passwd").attr("type","password");
|
}else{
|
$("#eyeSwitch").attr("class","fa fa-eye-slash");
|
$("#passwd").attr("type","text");
|
}
|
}
|
|
|
function cancel(){
|
history.back();
|
}
|