mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-17 10:42:08 +08:00
delete demo config in web.config
This commit is contained in:
parent
b4f02ff7d3
commit
e430b2716d
@ -38,8 +38,13 @@ $(function () {
|
|||||||
.on("click", function () { //执行命令
|
.on("click", function () { //执行命令
|
||||||
$.post("/CommonApplies/ExeCmd?id=" +$("#processId").val() +"&cmd=" +$(this).val() ,
|
$.post("/CommonApplies/ExeCmd?id=" +$("#processId").val() +"&cmd=" +$(this).val() ,
|
||||||
function (data) {
|
function (data) {
|
||||||
BJUI.dialog('refresh', 'detailDlg');
|
if (data.statusCode == "200") {
|
||||||
});
|
BJUI.dialog('refresh', 'detailDlg');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$(this).alertmsg('warn', data.message);
|
||||||
|
}
|
||||||
|
},'json');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -13,6 +13,10 @@ using ProcessStatus = OptimaJet.Workflow.Core.Persistence.ProcessStatus;
|
|||||||
|
|
||||||
namespace OpenAuth.Mvc.Controllers
|
namespace OpenAuth.Mvc.Controllers
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 通用申请流程处理
|
||||||
|
/// <para>李玉宝新增于2016-09-08 19:21:59</para>
|
||||||
|
/// </summary>
|
||||||
public class CommonAppliesController : BaseController
|
public class CommonAppliesController : BaseController
|
||||||
{
|
{
|
||||||
private CommonApplyApp _app;
|
private CommonApplyApp _app;
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<add key="ClientValidationEnabled" value="true" />
|
<add key="ClientValidationEnabled" value="true" />
|
||||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||||
<!--系统版本,如果值为演示版本"demo"则关闭部分post功能-->
|
<!--系统版本,如果值为演示版本"demo"则关闭部分post功能-->
|
||||||
<add key="version" value="demo" />
|
<add key="version" value="" />
|
||||||
|
|
||||||
<!--SSO单点登录主域-->
|
<!--SSO单点登录主域-->
|
||||||
<!--<add key="SSOPassport" value="http://sso.com"/>-->
|
<!--<add key="SSOPassport" value="http://sso.com"/>-->
|
||||||
|
Loading…
Reference in New Issue
Block a user