RoutineUpdate

This commit is contained in:
yubaolee
2015-12-05 21:24:01 +08:00
parent af5e04d62f
commit 0e98a6e3c8
11 changed files with 341 additions and 277 deletions

View File

@@ -161,7 +161,19 @@
return records[0];
}
//删除
function del() {
var selected = getSelected(2);
if (selected == null) return;
$.get('ModuleManager/Delete?Id=' + selected, function (data) {
if (data.statusCode == "200")
loadDataGrid();
else {
$(this).alertmsg('warn', data.message);
}
});
}
//自定义的编辑按钮
function editModule() {