From eebd0c3891866ce2a12dbf67c571e3f9612607cc Mon Sep 17 00:00:00 2001 From: ahao Date: Sun, 24 Sep 2023 22:08:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=B7=A5=E4=BD=9C=E6=B5=81?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workflow/businessForm/types.ts | 10 ++ src/api/workflow/category/types.ts | 2 + src/views/index.vue | 8 +- src/views/workflow/businessForm/index.vue | 13 ++- src/views/workflow/businessForm/list.vue | 105 +++++++++--------- src/views/workflow/category/index.vue | 11 +- src/views/workflow/form/index.vue | 50 ++++----- src/views/workflow/model/index.vue | 49 ++++---- .../components/processPreview.vue | 6 +- .../workflow/processDefinition/index.vue | 70 +++++------- src/views/workflow/processInstance/index.vue | 39 +++---- src/views/workflow/task/allTaskWaiting.vue | 24 ++-- src/views/workflow/task/index.vue | 27 ++--- src/views/workflow/task/myDocument.vue | 39 +++---- 14 files changed, 214 insertions(+), 239 deletions(-) diff --git a/src/api/workflow/businessForm/types.ts b/src/api/workflow/businessForm/types.ts index aca4ec1..530f783 100644 --- a/src/api/workflow/businessForm/types.ts +++ b/src/api/workflow/businessForm/types.ts @@ -14,6 +14,16 @@ export interface BusinessFormVO { */ formId: string | number; + /** + * 表单内容 + */ + content: string; + + /** + * 表单值 + */ + contentValue: string; + /** * 表单名称 */ diff --git a/src/api/workflow/category/types.ts b/src/api/workflow/category/types.ts index 154bd6f..5a58982 100644 --- a/src/api/workflow/category/types.ts +++ b/src/api/workflow/category/types.ts @@ -23,6 +23,8 @@ export interface CategoryVO { * 排序 */ sortNum: number; + + children?: CategoryVO[]; } export interface CategoryForm extends BaseEntity { diff --git a/src/views/index.vue b/src/views/index.vue index 438c1af..465d52b 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -40,9 +40,7 @@

访问码云 访问GitHub - 更新日志 + 更新日志

@@ -85,9 +83,7 @@

访问码云 访问GitHub - 更新日志 + 更新日志

diff --git a/src/views/workflow/businessForm/index.vue b/src/views/workflow/businessForm/index.vue index 91047a6..5f68a4a 100644 --- a/src/views/workflow/businessForm/index.vue +++ b/src/views/workflow/businessForm/index.vue @@ -1,7 +1,6 @@