From b94520e00a1e3e0bedb91e17e734553fe49a1973 Mon Sep 17 00:00:00 2001 From: geekgeekrun Date: Sun, 22 Feb 2026 10:11:58 +0800 Subject: [PATCH] fix salaryMarkAsNotSuitLabelText --- .../page/MainLayout/GeekAutoStartChatWithBoss/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue index ce69550..d094806 100644 --- a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue +++ b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue @@ -2196,10 +2196,13 @@ const handleExpectSalaryCalculateWayChanged = getHandlerForExpectSalaryCalculate const salaryMarkAsNotSuitLabelText = computed(() => { const textSeg = [] - if (formContent.value.expectSalaryLow) { + const formContentToUse = !formContent.value.fieldsForUseCommonConfig.salary + ? formContent.value + : commonJobConditionConfig.value + if (formContentToUse.expectSalaryLow) { textSeg.push('低于期望薪资下限') } - if (formContent.value.expectSalaryHigh) { + if (formContentToUse.expectSalaryHigh) { textSeg.push('高于期望薪资上限') } return textSeg.join(' / ')