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 @@