|
@@ -109,6 +109,7 @@ import similarPositions from '@/components/Position/similarPositions.vue'
|
|
|
import EnterpriseInfo from '@/components/Enterprise/info.vue'
|
|
|
import Snackbar from '@/plugins/snackbar'
|
|
|
import Dialog from '@/components/CtDialog'
|
|
|
+import { getToken } from '@/utils/auth'
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
const router = useRouter()
|
|
@@ -130,7 +131,7 @@ const deliveryCheck = async () => {
|
|
|
const data = await jobCvRelCheckSend({ jobId: id })
|
|
|
if (data) delivery.value = true
|
|
|
}
|
|
|
-deliveryCheck()
|
|
|
+if (getToken()) deliveryCheck()
|
|
|
|
|
|
const desc = [
|
|
|
{ mdi: 'mdi-map-marker-outline', value: 'areaName' },
|