完成用户列表/资源列表改造

This commit is contained in:
yubaolee
2016-10-15 01:27:39 +08:00
parent 62f3885380
commit 43c44d30af
16 changed files with 509 additions and 469 deletions

View File

@@ -264,12 +264,12 @@ function del() {
if (selected == null) return;
$.post('/moduleManager/Delete?Id=' + selected.Id, function (data) {
if (data.statusCode == "200") {
if (data.Status) {
list.reload();
ztree.reload();
}
else {
$(this).alertmsg('warn', data.message);
$(this).alertmsg('warn', data.Message);
}
}, "json");
}