123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <template>
- <form
- class="w-full h-full flex flex-col items-center justify-between pt-8 text-foreground animate__animated animate__fadeIn"
- @submit.prevent="nextPage"
- >
- <div class="flex flex-col justify-center items-center">
- <h1 class="text-4xl font-bold text-center">
- Какая у вас роль?
- </h1>
- <p class="opacity-50">
- Вы студент?
- </p>
- </div>
- <div>
- <ClientOnly>
- <lottie-player
- class="w-[200px] h-[200px]"
- autoplay
- loop
- mode="normal"
- src="/lottie/teacher.json"
- />
- </ClientOnly>
- </div>
- <BaseSelect
- id="id"
- v-model:selected="isStudent"
- :data="userTypes"
- name="name"
- />
- <div />
- <button
- class="w-full py-2 bg-primary flex gap-3 justify-center items-center group disabled:opacity-50 duration-150"
- type="submit"
- >
- <svg
- svg
- class="w-6 h-6 opacity-75 rotate-180 group-hover:opacity-100"
- width="48"
- height="48"
- viewBox="0 0 48 48"
- fill="none"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M8 24.0002H40"
- stroke="black"
- stroke-width="4"
- stroke-linecap="round"
- stroke-linejoin="round"
- />
- <path
- d="M20 12.0002L8.12502 23.8752C8.05598 23.9442 8.05598 24.0562 8.12502 24.1252L20 36.0002"
- stroke="black"
- stroke-width="4"
- stroke-linecap="round"
- stroke-linejoin="round"
- />
- </svg>
- <p
- class="text-2xl text-background-100 font-semibold opacity-75 group-hover:opacity-100 duration-150"
- v-text="'Далее'"
- />
- </button>
- </form>
- </template>
- <script setup lang="ts">
- import { useUser } from '~/store/useUser'
- definePageMeta({
- layout: 'none',
- middleware: ['user-only'],
- })
- const router = useRouter()
- const user = useUser()
- const userTypes = [
- {
- id: 0,
- name: 'Преподаватель',
- },
- {
- id: 1,
- name: 'Студент',
- },
- ]
- const isStudent = ref()
- delete user.data.teacher_id
- delete user.data.group_id
- function nextPage() {
- if (isStudent.value !== null) {
- user.data.is_student = Boolean(isStudent.value)
- if (isStudent.value) {
- router.push('/timetable/group')
- }
- else {
- router.push('/timetable/teacher')
- }
- }
- else {
- alert('Выберите филиал')
- }
- }
- </script>
- <style scoped>
- @keyframes show {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- .show {
- animation: show ease-in-out 300ms;
- }
- </style>
|