From fbe92541144e4ac3b8603b4d022f0966fee5e5e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Thu, 25 Sep 2025 11:34:52 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=20=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=9D=83=E9=99=90=E4=B8=8D=E8=AE=BE=E7=BD=AE=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Process/submitVerify.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Process/submitVerify.vue b/src/components/Process/submitVerify.vue index 6163cfb..7b4b652 100644 --- a/src/components/Process/submitVerify.vue +++ b/src/components/Process/submitVerify.vue @@ -259,7 +259,7 @@ const openDialog = async (id?: string) => { const response = await getTask(taskId.value); task.value = response.data; buttonObj.value = {}; - task.value.buttonList.forEach((e) => { + task.value.buttonList?.forEach((e) => { buttonObj.value[e.code] = e.show; }); selectCopyUserList.value = task.value.copyList;