123456789101112131415161718192021222324252627282930313233343536373839 |
- <route lang="json">
- {
- "style": {
- "navigationBarTitleText": "游学计划",
- "navigationBarBackgroundColor": "#fff"
- }
- }
- </route>
- <script setup lang="ts">
- import SectionHeading from '@/components/section-heading.vue'
- import { getContents, getStudyTours } from '../../../core/libs/requests'
- import dayjs from 'dayjs'
- import StudyTourCard from './components/study-tour-card.vue'
- import PageHelper from '@/components/page-helper.vue'
- const title = computed(() => `${dayjs().year()}年游学计划`)
- onMounted(async () => {})
- </script>
- <template>
- <div class="flex flex-col gap-6 p-3.5">
- <SectionHeading custom-class="" :title="title"></SectionHeading>
- <div
- class="mx-3.5 relative top--4 text-justify text-black/40 text-sm font-normal font-['PingFang_SC'] leading-relaxed"
- >
- *我们为您精心打造了一个独特且极具价值的游学项目。这个项目的核心旨在全方位提升
- </div>
- <PageHelper :request="getStudyTours" :query="{}">
- <template #default="{ source }">
- <div class="py-4 flex flex-col gap-6">
- <template v-for="(it, index) in source.list" :key="index">
- <div class="mx--2.5 my--2.5">
- <StudyTourCard custom-class="" :options="it"></StudyTourCard>
- </div>
- </template>
- </div>
- </template>
- </PageHelper>
- </div>
- </template>
|