From e954f4a49eaa8cf6cef9d962399ccb32bc69a6e1 Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Mon, 27 Apr 2026 16:04:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=88=9D=E6=A0=B8=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/negative/verify-sfss.vue | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/components/negative/verify-sfss.vue b/src/components/negative/verify-sfss.vue index f08a60d..3a3edfc 100644 --- a/src/components/negative/verify-sfss.vue +++ b/src/components/negative/verify-sfss.vue @@ -20,7 +20,8 @@ > - + + {{ initialStatusLabel }} { "businessType", "yesNo", "handleMethodType", + "initialStatus", ]) || {}, props.extraDict || {} ); @@ -291,6 +293,18 @@ const isInitialStage = computed(() => { const initialRemainingDuration = computed(() => currentRow.value?.remainingDuration ); +const gwf3 = computed(() => currentRow.value?.gwf3); + +const showInitialCountdown = computed(() => + !gwf3.value || gwf3.value === '0' +); + +const initialStatusLabel = computed(() => { + if (!gwf3.value || gwf3.value === '0') return ''; + const item = dict.initialStatus?.find(d => d.dictValue === gwf3.value); + return item?.dictLabel || ''; +}); + const showPetitionFields = computed(() => [ ProblemSources.GJXFPT, @@ -535,4 +549,12 @@ span { .repeat-btn { padding: 0; } + +.initial-status-text { + color: var(--el-color-success); +} + +.initial-status-text.danger { + color: var(--el-color-danger); +}