diff --git a/OpenAuth.App/Form/Response/FormResp.cs b/OpenAuth.App/Form/Response/FormResp.cs index 03e8e589..6f680a0d 100644 --- a/OpenAuth.App/Form/Response/FormResp.cs +++ b/OpenAuth.App/Form/Response/FormResp.cs @@ -81,7 +81,14 @@ namespace OpenAuth.App.Response /// public string HtmlWithCanWriteIds { - get { return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds); } + get + { + if (this.FrmType != 0) //只有开原版动态表单才需要转换 + { + return string.Empty; + } + return FormUtil.GetHtml(this.ContentData, this.ContentParse, this.FrmData,"",this.CanWriteFormItemIds); + } } }