|
@@ -9,12 +9,8 @@ defineOptions({ name: 'register-school'})
|
|
|
import { ref, onMounted } from 'vue'
|
|
|
import PhonePage from './person.vue'
|
|
|
import { webContentStore } from '@/store/webContent'
|
|
|
-import { useUserStore } from '@/store/user'
|
|
|
-import { useRouter } from 'vue-router'
|
|
|
|
|
|
-const router = useRouter()
|
|
|
const webContent = webContentStore()
|
|
|
-const userStore = useUserStore()
|
|
|
const isMobile = ref(false)
|
|
|
onMounted(async () => {
|
|
|
await webContent.getSystemWebContent()
|
|
@@ -24,9 +20,7 @@ onMounted(async () => {
|
|
|
|
|
|
// 手机验证码效验通过
|
|
|
const handleValidate= async () => {
|
|
|
- // 验证通过,跳转到学校信息填写页面
|
|
|
localStorage.setItem('necessaryInfoReady', 'ready')
|
|
|
- // await userStore.handleSmsLogin()
|
|
|
}
|
|
|
</script>
|
|
|
|