delete demo config in web.config

This commit is contained in:
yubaolee
2016-09-09 17:51:33 +08:00
parent b4f02ff7d3
commit e430b2716d
3 changed files with 12 additions and 3 deletions

View File

@@ -38,8 +38,13 @@ $(function () {
.on("click", function () { //执行命令
$.post("/CommonApplies/ExeCmd?id=" +$("#processId").val() +"&cmd=" +$(this).val() ,
function (data) {
BJUI.dialog('refresh', 'detailDlg');
});
if (data.statusCode == "200") {
BJUI.dialog('refresh', 'detailDlg');
}
else {
$(this).alertmsg('warn', data.message);
}
},'json');
});
});