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(' / ')