From 6be8a4c8d15476eb0b87406d31a58bcbfeaa6f97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Mon, 8 May 2023 13:52:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E7=AE=A1=E7=90=86=E5=AD=97?= =?UTF-8?q?=E5=85=B8=E5=88=97=E8=A1=A8=E5=A2=9E=E5=8A=A0=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectManagement/components/listOfRegulations.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index ec38b56f9..e1128744b 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -748,14 +748,16 @@ align: 'left', ellipsis: true, dataIndex: 'attestationType_dictText', - width: 180 + width: 180, + sorter: true, }, { title: this.$t('certificationLevel'), align: 'left', ellipsis: true, dataIndex: 'attestationRank_dictText', - width: 180 + width: 180, + sorter: true, }, { title: this.$t('areaOfResponsibility'), @@ -2314,6 +2316,10 @@ this.orderByField = 'verifyFlowStatus' } else if (sorter.columnKey == 'designFlowStatusName') { this.orderByField = 'designFlowStatus' + } else if (sorter.columnKey == 'attestationType_dictText') { + this.orderByField = 'attestationType' + } else if (sorter.columnKey == 'attestationRank_dictText') { + this.orderByField = 'attestationRank' } else { this.orderByField = sorter.columnKey }