|
@@ -120,7 +120,7 @@ onLoad(async (options) => {
|
|
|
options.jobFairId = res?.data?.jobFairId
|
|
|
options.enterpriseId = res?.data?.enterpriseId
|
|
|
options.backgroundColor = res?.data?.backgroundColor
|
|
|
- options.entName = entName.value = formatName(res?.data?.entName)
|
|
|
+ entName.value = formatName(res?.data?.entName)
|
|
|
}
|
|
|
if (options?.jobFairId) {
|
|
|
query.jobFairId = options.jobFairId
|
|
@@ -129,7 +129,6 @@ onLoad(async (options) => {
|
|
|
getShareImg()
|
|
|
getEntPositionList()
|
|
|
await getEnterpriseInfo()
|
|
|
- options.entName = entName.value
|
|
|
} else {
|
|
|
getJobFairDetail()
|
|
|
}
|
|
@@ -140,9 +139,9 @@ onLoad(async (options) => {
|
|
|
onShareAppMessage(() => {
|
|
|
if (!options?.enterpriseId && !jobFairTitle.value) setTimeout(() => {}, 1000)
|
|
|
let path = `/pagesB/jobFair/positionClassification?jobFairId=${options.jobFairId}`
|
|
|
- if (options?.enterpriseId) path += `&enterpriseId=${options.enterpriseId}&entName=${options.entName}`
|
|
|
+ if (options?.enterpriseId) path += `&enterpriseId=${options.enterpriseId}`
|
|
|
return {
|
|
|
- title: options?.enterpriseId ? options?.entName || '门墩儿 专注顶尖招聘' : jobFairTitle.value,
|
|
|
+ title: options?.enterpriseId ? entName.value || '门墩儿 专注顶尖招聘' : jobFairTitle.value,
|
|
|
path
|
|
|
}
|
|
|
})
|
|
@@ -150,7 +149,7 @@ onLoad(async (options) => {
|
|
|
onShareTimeline(() => {
|
|
|
if (!query.enterpriseId && !jobFairTitle.value) setTimeout(() => {}, 1000)
|
|
|
let path = `/pagesB/jobFair/positionClassification?jobFairId=${options.jobFairId}`
|
|
|
- if (options?.enterpriseId) path += `&enterpriseId=${options.enterpriseId}&entName=${options.entName}`
|
|
|
+ if (options?.enterpriseId) path += `&enterpriseId=${options.enterpriseId}`
|
|
|
return {
|
|
|
title: query.enterpriseId ? entName.value || '门墩儿 专注顶尖招聘' : jobFairTitle.value,
|
|
|
path
|