|
@@ -295,7 +295,7 @@ const positionInfo = ref({})
|
|
|
const isEmployment = ref('-1')
|
|
|
|
|
|
const isStudent = ref(false) // 已测试,待开放上线
|
|
|
-// const isStudent = useUserStore.baseInfo?.type && Boolean(Number(useUserStore.baseInfo.type) === 1)
|
|
|
+// const isStudent = ref(useUserStore.baseInfo?.type && Boolean(Number(useUserStore.baseInfo.type) === 1))
|
|
|
|
|
|
onMounted(() => {
|
|
|
setTimeout(() => {
|
|
@@ -522,7 +522,7 @@ async function handleSendResume () {
|
|
|
return
|
|
|
}
|
|
|
let practice = null
|
|
|
- if (isStudent) {
|
|
|
+ if (isStudent.value) {
|
|
|
practice = await studentDeliveryFormRef.value.getQueryParams()
|
|
|
if (!practice) return
|
|
|
}
|