From af4a1dc1767e59df43c273035b54cc2ca630ad7f Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Fri, 7 Aug 2026 16:04:17 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260807=20=E7=9D=A3=E5=8A=9E=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F-=E6=9F=A5=E8=AF=A2=E7=9D=A3=E5=8A=9E=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E5=88=97=E8=A1=A8=20=E4=BC=98=E5=8C=96=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=8E=92=E5=BA=8F=E5=92=8C=E5=B1=95=E7=A4=BA=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../semri/process/QueryProcessList.data.ts | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/src/components/semri/process/QueryProcessList.data.ts b/src/components/semri/process/QueryProcessList.data.ts index b61e9f9..66ca9bf 100644 --- a/src/components/semri/process/QueryProcessList.data.ts +++ b/src/components/semri/process/QueryProcessList.data.ts @@ -68,16 +68,17 @@ export const columns: BasicColumn[] = [ // align: "center", // dataIndex: 'sourceId' // }, - { - title: '是否紧急', + title: '要求完成日期', align: 'center', - dataIndex: 'urgencyLevel', - width: 90, - customRender: ({ text, record }) => { - return getTranslatedText(record, 'urgencyLevel_dictText', text, 'yn'); + dataIndex: 'requireFinishDate', + width: 120, + customRender: ({ text }) => { + text = !text ? '' : text.length > 10 ? text.substr(0, 10) : text; + return text; }, }, + // { // title: '自定义分组', // align: "center", @@ -148,16 +149,7 @@ export const columns: BasicColumn[] = [ // align: "center", // dataIndex: 'followerNames' // }, - { - title: '要求完成日期', - align: 'center', - dataIndex: 'requireFinishDate', - width: 120, - customRender: ({ text }) => { - text = !text ? '' : text.length > 10 ? text.substr(0, 10) : text; - return text; - }, - }, + // { // title: '截止时间(精确到时分,与 require_finish_date 互补)', @@ -178,15 +170,23 @@ export const columns: BasicColumn[] = [ width: 160, ellipsis: true, }, - { - title: '流程实例ID', + title: '是否紧急', align: 'center', - dataIndex: 'processInstId', - width: 220, - ellipsis: true, + dataIndex: 'urgencyLevel', + width: 90, + customRender: ({ text, record }) => { + return getTranslatedText(record, 'urgencyLevel_dictText', text, 'yn'); + }, }, // { + // title: '流程实例ID', + // align: 'center', + // dataIndex: 'processInstId', + // width: 220, + // ellipsis: true, + // }, + // { // title: '是否已逾期', // align: "center", // dataIndex: 'isOverdue'