diff --git a/apps/web-antd/src/api/bpm/form/index.ts b/apps/web-antd/src/api/bpm/form/index.ts index 27191230..581178c5 100644 --- a/apps/web-antd/src/api/bpm/form/index.ts +++ b/apps/web-antd/src/api/bpm/form/index.ts @@ -3,6 +3,7 @@ import type { PageParam, PageResult } from '@vben/request'; import { requestClient } from '#/api/request'; export namespace BpmFormApi { + // TODO @siye:注释加一个。。嘿嘿 export interface FormVO { id?: number | undefined; name: string; @@ -11,7 +12,6 @@ export namespace BpmFormApi { status: number; remark: string; createTime: string; - } } diff --git a/apps/web-antd/src/router/routes/modules/bpm.ts b/apps/web-antd/src/router/routes/modules/bpm.ts index cf15a454..2d2cb5b8 100644 --- a/apps/web-antd/src/router/routes/modules/bpm.ts +++ b/apps/web-antd/src/router/routes/modules/bpm.ts @@ -27,7 +27,6 @@ const routes: RouteRecordRaw[] = [ }, ], }, - { path: 'process-instance/detail', component: () => import('#/views/bpm/processInstance/detail/index.vue'), @@ -47,8 +46,6 @@ const routes: RouteRecordRaw[] = [ }; }, }, - - /** 编辑流程表单 */ { path: '/bpm/manager/form/edit', name: 'BpmFormEditor', diff --git a/apps/web-antd/src/views/bpm/form/data.ts b/apps/web-antd/src/views/bpm/form/data.ts index 53620885..a416dd26 100644 --- a/apps/web-antd/src/views/bpm/form/data.ts +++ b/apps/web-antd/src/views/bpm/form/data.ts @@ -91,20 +91,17 @@ export function useGridColumns( props: { type: DICT_TYPE.COMMON_STATUS }, }, }, - { field: 'remark', title: '备注', minWidth: 200, }, - { field: 'createTime', title: '创建时间', minWidth: 180, formatter: 'formatDateTime', }, - { field: 'operation', title: '操作', diff --git a/apps/web-antd/src/views/bpm/form/editor.vue b/apps/web-antd/src/views/bpm/form/editor.vue index c4fba895..1c374357 100644 --- a/apps/web-antd/src/views/bpm/form/editor.vue +++ b/apps/web-antd/src/views/bpm/form/editor.vue @@ -1,4 +1,5 @@