From 3c51d565a23d495b2af9368a54ec1812a7b2baeb Mon Sep 17 00:00:00 2001 From: zhouhaibin Date: Thu, 22 May 2025 14:36:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8B=9B=E6=8A=95=E6=A0=87?= =?UTF-8?q?=E7=9A=84=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DocumentTasks/SjjDocumentTasks.data.ts | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/src/views/sjjTender/DocumentTasks/SjjDocumentTasks.data.ts b/src/views/sjjTender/DocumentTasks/SjjDocumentTasks.data.ts index 2d7eef7..24d9cb6 100644 --- a/src/views/sjjTender/DocumentTasks/SjjDocumentTasks.data.ts +++ b/src/views/sjjTender/DocumentTasks/SjjDocumentTasks.data.ts @@ -12,7 +12,11 @@ export const formSchemas: FormSchema[] = [ options: [{ label: '招标文件审核', value: 'sjjbidAnalysis', - }] + }, + { + label: '招标文件图片相似度审核', + value: 'sjjbidImageAnalysis', + }] }, }, { @@ -53,7 +57,13 @@ export const columns: BasicColumn[] = [ { title: '任务名称', dataIndex: 'taskName', - customRender: ({ value }) => "招标文件审核", + customRender: ({ value }) => { + if (value === 'sjjbidAnalysis') { + return '招标文件审核'; + } else if (value === 'sjjbidImageAnalysis') { + return '招标文件图片相似度审核'; + } + }, }, { @@ -86,7 +96,11 @@ export const modalSchemas: FormSchema[] = [ options: [{ label: '招标文件审核', value: 'sjjbidAnalysis', - }] + }, + { + label:"招标文件图片相似度审核", + value:"sjjbidImageAnalysis" + }] }, }, {