From 83977865667dfc05b712e9ce8c4c4641c2686824 Mon Sep 17 00:00:00 2001 From: yubaolee Date: Thu, 22 Jul 2021 20:16:20 +0800 Subject: [PATCH] fix bug --- OpenAuth.App/Form/Response/FormResp.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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); + } } }