|
@@ -267,7 +267,7 @@ const isSendResume = ref(false)
|
|
|
const positionInfo = ref({})
|
|
|
const isEmployment = ref('-1')
|
|
|
|
|
|
-const isStudent = ref(false) // 已测试,待开放上线 const isStudent = computed(() => useUserStore.baseInfo?.type && Boolean(Number(useUserStore.baseInfo.type) === 1))
|
|
|
+const isStudent = ref(false) // 已测试,待开放上线 const isStudent = useUserStore.baseInfo?.type && Boolean(Number(useUserStore.baseInfo.type) === 1)
|
|
|
|
|
|
onMounted(() => {
|
|
|
setTimeout(() => {
|