mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-09-08 00:47:15 +08:00
ignore case sensitive of expectCompanies
This commit is contained in:
@@ -539,7 +539,7 @@ async function toRecommendPage (hooks) {
|
|||||||
tempTargetJobIndexToCheckDetail = jobListData.findIndex(it =>
|
tempTargetJobIndexToCheckDetail = jobListData.findIndex(it =>
|
||||||
!blockBossNotNewChat.has(it.encryptBossId) &&
|
!blockBossNotNewChat.has(it.encryptBossId) &&
|
||||||
!blockBossNotActive.has(it.encryptBossId) &&
|
!blockBossNotActive.has(it.encryptBossId) &&
|
||||||
[...expectCompanySet].find(name => it.brandName.includes(name)) &&
|
[...expectCompanySet].find(name => it.brandName?.toLowerCase?.()?.includes(name.toLowerCase())) &&
|
||||||
!blockJobNotSuit.has(it.encryptJobId)
|
!blockJobNotSuit.has(it.encryptJobId)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="expectCompanies" mb10px>
|
<el-form-item prop="expectCompanies" mb10px>
|
||||||
<div font-size-12px>
|
<div font-size-12px>
|
||||||
期望公司(以逗号分隔)<el-tooltip
|
期望公司(以逗号分隔,不区分大小写)<el-tooltip
|
||||||
effect="light"
|
effect="light"
|
||||||
placement="bottom-start"
|
placement="bottom-start"
|
||||||
@show="gtagRenderer('tooltip_shown_about_expect_company_figure')"
|
@show="gtagRenderer('tooltip_shown_about_expect_company_figure')"
|
||||||
|
|||||||
Reference in New Issue
Block a user