mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-09-05 07:27:35 +08:00
fix salaryMarkAsNotSuitLabelText
This commit is contained in:
@@ -2196,10 +2196,13 @@ const handleExpectSalaryCalculateWayChanged = getHandlerForExpectSalaryCalculate
|
|||||||
|
|
||||||
const salaryMarkAsNotSuitLabelText = computed(() => {
|
const salaryMarkAsNotSuitLabelText = computed(() => {
|
||||||
const textSeg = []
|
const textSeg = []
|
||||||
if (formContent.value.expectSalaryLow) {
|
const formContentToUse = !formContent.value.fieldsForUseCommonConfig.salary
|
||||||
|
? formContent.value
|
||||||
|
: commonJobConditionConfig.value
|
||||||
|
if (formContentToUse.expectSalaryLow) {
|
||||||
textSeg.push('低于期望薪资下限')
|
textSeg.push('低于期望薪资下限')
|
||||||
}
|
}
|
||||||
if (formContent.value.expectSalaryHigh) {
|
if (formContentToUse.expectSalaryHigh) {
|
||||||
textSeg.push('高于期望薪资上限')
|
textSeg.push('高于期望薪资上限')
|
||||||
}
|
}
|
||||||
return textSeg.join(' / ')
|
return textSeg.join(' / ')
|
||||||
|
|||||||
Reference in New Issue
Block a user