mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-04-18 03:28:02 +08:00
更新域名
fix issue #I3ZCIX 可以控制流程审批过程中表单项是否可写
This commit is contained in:
@@ -48,6 +48,11 @@ namespace OpenAuth.App.Response
|
||||
/// 表单原html模板未经处理的
|
||||
/// </summary>
|
||||
public string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单的数据
|
||||
/// </summary>
|
||||
public string FrmData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序码
|
||||
@@ -69,5 +74,15 @@ namespace OpenAuth.App.Response
|
||||
get { return FormUtil.GetHtml(this); }
|
||||
}
|
||||
|
||||
public string[] CanWriteFormItemIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户显示(表单项包含读写控制权限)
|
||||
/// </summary>
|
||||
public string HtmlWithCanWriteIds
|
||||
{
|
||||
get { return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user