|
@@ -221,8 +221,7 @@ import {
|
|
|
getPersonJobUnfavorite, // 取消收藏
|
|
|
getPersonJobFavorite, // 收藏
|
|
|
getJobFavoriteCheck,
|
|
|
- jobCvRelHireSend,
|
|
|
- getShareDetail
|
|
|
+ jobCvRelHireSend
|
|
|
} from '@/api/position'
|
|
|
import { getPersonResumeCv, saveResume } from '@/api/user'
|
|
|
import { dealDictObjData } from '@/utils/position'
|
|
@@ -232,6 +231,7 @@ import { prologue, defaultText } from '@/hooks/useIM'
|
|
|
import { userStore } from '@/store/user'
|
|
|
import { getSubscribeTemplateList } from '@/api/common'
|
|
|
import { formatName } from '@/utils/getText'
|
|
|
+import { getShareQueryById } from '@/api/jobFair.js'
|
|
|
|
|
|
const useUserStore = userStore()
|
|
|
const sharePopup = ref()
|
|
@@ -266,7 +266,7 @@ onLoad(async (options) => {
|
|
|
if (options.scene) {
|
|
|
const scene = decodeURIComponent(options.scene)
|
|
|
const str = scene.split('=')
|
|
|
- const res = await getShareDetail({ id: str[1] })
|
|
|
+ const res = await getShareQueryById({ key: str[1] })
|
|
|
obj = res.data
|
|
|
}
|
|
|
|