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');
});
});

View File

@ -13,6 +13,10 @@ using ProcessStatus = OptimaJet.Workflow.Core.Persistence.ProcessStatus;
namespace OpenAuth.Mvc.Controllers
{
/// <summary>
/// 通用申请流程处理
/// <para>李玉宝新增于2016-09-08 19:21:59</para>
/// </summary>
public class CommonAppliesController : BaseController
{
private CommonApplyApp _app;

View File

@ -62,7 +62,7 @@
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<!--系统版本,如果值为演示版本"demo"则关闭部分post功能-->
<add key="version" value="demo" />
<add key="version" value="" />
<!--SSO单点登录主域-->
<!--<add key="SSOPassport" value="http://sso.com"/>-->