From 350c8e58c1718d61b80585ada61cbd22596cb08f Mon Sep 17 00:00:00 2001 From: wintel Date: Wed, 2 Apr 2025 23:31:38 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0URL=E8=A1=A8=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Infrastructure/Define.cs | 6 ++++++ OpenAuth.App/Form/FormFactory.cs | 7 ++++--- OpenAuth.App/Form/Response/FormResp.cs | 4 ++-- docs/core/form.md | 12 +++++++++--- 4 files changed, 21 insertions(+), 8 deletions(-) diff --git a/Infrastructure/Define.cs b/Infrastructure/Define.cs index 7be61674..a878c86f 100644 --- a/Infrastructure/Define.cs +++ b/Infrastructure/Define.cs @@ -39,6 +39,12 @@ //流程实例知会角色 public const string INSTANCE_NOTICE_ROLE = "INSTANCE_NOTICE_ROLE"; + //表单类型 + public const int FORM_TYPE_DYNAMIC = 0; //动态表单 + public const int FORM_TYPE_DEVELOP = 1; //自定义表单 + public const int FORM_TYPE_DRAG = 2; //vForm拖拽表单 + public const int FORM_TYPE_URL = 3; //URL表单 + public const string API = "API_RESOURCE"; } } \ No newline at end of file diff --git a/OpenAuth.App/Form/FormFactory.cs b/OpenAuth.App/Form/FormFactory.cs index 7266a0d5..f514e8f5 100644 --- a/OpenAuth.App/Form/FormFactory.cs +++ b/OpenAuth.App/Form/FormFactory.cs @@ -2,6 +2,7 @@ using OpenAuth.Repository; using OpenAuth.Repository.Domain; using OpenAuth.Repository.Interface; +using Infrastructure; namespace OpenAuth.App { @@ -9,14 +10,14 @@ namespace OpenAuth.App { public static IForm CreateForm(Form form, IUnitWork unitWork) { - if (form.FrmType == 0) + if (form.FrmType == Define.FORM_TYPE_DYNAMIC) { return new LeipiForm(unitWork); - }else if (form.FrmType == 1) + }else if (form.FrmType == Define.FORM_TYPE_DEVELOP) { throw new Exception("自定义表单不需要创建数据库表"); } - else + else { return new DragForm(unitWork); } diff --git a/OpenAuth.App/Form/Response/FormResp.cs b/OpenAuth.App/Form/Response/FormResp.cs index 6f680a0d..76c3fb81 100644 --- a/OpenAuth.App/Form/Response/FormResp.cs +++ b/OpenAuth.App/Form/Response/FormResp.cs @@ -7,7 +7,7 @@ // Author:Yubao Li // //------------------------------------------------------------------------------ - +using Infrastructure; namespace OpenAuth.App.Response { /// @@ -83,7 +83,7 @@ namespace OpenAuth.App.Response { get { - if (this.FrmType != 0) //只有开原版动态表单才需要转换 + if (this.FrmType != Define.FORM_TYPE_DYNAMIC) //只有开原版动态表单才需要转换 { return string.Empty; } diff --git a/docs/core/form.md b/docs/core/form.md index 1311ce88..fa856b4e 100644 --- a/docs/core/form.md +++ b/docs/core/form.md @@ -1,10 +1,14 @@ # 表单设计 -OpenAuth.Net集成了表单设计的功能,目前表单仅用于流程审批。后期会集成到代码生成功能中。系统内置的表单类型有以下三种: +OpenAuth.Net集成了表单设计的功能,目前表单仅用于流程审批。后期会集成到代码生成功能中。系统内置的表单类型有以下几种: -## 动态表单 +## 动态表单(开源版可用,付费版本已废弃) -动态表单适用于灵活设计界面,逻辑简单的表单。这种表单无需编码,即可直接集成到流程功能。 +动态表单基于Ueditor富文本编辑器,适用于灵活设计界面,逻辑简单的表单。这种表单无需编码,即可直接集成到流程功能。 + +## URL表单 + +URL表单本质上不是实际存在的表单,指的是审批的过程中,审批内容是发起流程时传入的一个URL网址,审批人员根据这个URL展示的内容进行审批。 ## 自定义开发表单【企业版】 @@ -14,3 +18,5 @@ OpenAuth.Net集成了表单设计的功能,目前表单仅用于流程审批 适用场景和普通的动态表单一样。但该表单操作方便,与系统界面风格匹配度高,缺点是排版没有普通的动态表单灵活,只能做简单的行排列。详细请参考:[可拖拽表单](/pro/dragform.html) + +