From c8626b68932295e386e2866928eacd8eba5d78d0 Mon Sep 17 00:00:00 2001 From: gssong <1742057357@qq.com> Date: Mon, 3 Jun 2024 21:23:32 +0800 Subject: [PATCH] =?UTF-8?q?remove=20=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workflow/leave/types.ts | 2 -- src/views/workflow/leave/leaveEdit.vue | 7 ++----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/api/workflow/leave/types.ts b/src/api/workflow/leave/types.ts index b86c480..a44d35d 100644 --- a/src/api/workflow/leave/types.ts +++ b/src/api/workflow/leave/types.ts @@ -6,7 +6,6 @@ export interface LeaveVO { leaveDays: number; remark: string; status?: string; - processInstanceId?: string; } export interface LeaveForm extends BaseEntity { @@ -17,7 +16,6 @@ export interface LeaveForm extends BaseEntity { leaveDays?: number; remark?: string; status?: string; - processInstanceId?: string; } export interface LeaveQuery extends PageQuery { diff --git a/src/views/workflow/leave/leaveEdit.vue b/src/views/workflow/leave/leaveEdit.vue index 3dca4fc..d6210f0 100644 --- a/src/views/workflow/leave/leaveEdit.vue +++ b/src/views/workflow/leave/leaveEdit.vue @@ -30,7 +30,7 @@ @click="approvalVerifyOpen" >审批 - 流程进度 + 流程进度
返回 @@ -82,8 +82,6 @@ const { proxy } = getCurrentInstance() as ComponentInternalInstance; const buttonLoading = ref(false); const loading = ref(true); const leaveTime = ref>([]); -//流程实例id -const processInstanceId = ref(''); //路由参数 const routeParams = ref>({}); const options = [ @@ -125,8 +123,7 @@ const initFormData: LeaveForm = { endDate: undefined, leaveDays: undefined, remark: undefined, - status: undefined, - processInstanceId: undefined + status: undefined }; const data = reactive>({ form: { ...initFormData },