|
@@ -120,10 +120,10 @@ export const jumpToEnterpriseDetail = async (id, isOpenWindow = false, tabKey =
|
|
|
|
|
|
// 不在优选集团中跳转企业详情
|
|
// 不在优选集团中跳转企业详情
|
|
const key = tabKey ? 'recruitmentPositions' : 'briefIntroduction'
|
|
const key = tabKey ? 'recruitmentPositions' : 'briefIntroduction'
|
|
|
|
+ const url = `/recruit/personal/company/details/${id}?key=${key}`
|
|
if (isOpenWindow) {
|
|
if (isOpenWindow) {
|
|
- window.open(`/recruit/personal/company/details/${id}?key=${key}`)
|
|
|
|
|
|
+ window.open(url)
|
|
} else {
|
|
} else {
|
|
- await router.push(`/recruit/personal/company/details/${id}?key=${key}`)
|
|
|
|
- await nextTick()
|
|
|
|
|
|
+ router.push({ path: url})
|
|
}
|
|
}
|
|
}
|
|
}
|