|
@@ -192,7 +192,7 @@ onLoad((options) => {
|
|
|
})
|
|
|
|
|
|
// 效验是否有投递过简历
|
|
|
-const delivery = ref(true) // 是否已投递简历
|
|
|
+const delivery = ref(false) // 是否已投递简历
|
|
|
const deliveryCheck = async () => {
|
|
|
try {
|
|
|
if (!getAccessToken()) return delivery.value = false
|
|
@@ -237,7 +237,7 @@ const popupClose = () => {
|
|
|
|
|
|
|
|
|
// 效验求职者是否有收藏该职位
|
|
|
-const isCollection = ref(true)
|
|
|
+const isCollection = ref(false)
|
|
|
const getCollectionStatus = async () => {
|
|
|
if (!getAccessToken()) return isCollection.value = false
|
|
|
const { data } = await getJobFavoriteCheck({ jobId })
|