|
@@ -14,7 +14,10 @@ import StudyTourCard from './components/study-tour-card.vue'
|
|
|
import PageHelper from '@/components/page-helper.vue'
|
|
|
import { CircleType, DictType } from '@/core/libs/models'
|
|
|
import { zipToObject } from 'radash'
|
|
|
+import {messages} from "@/core/libs/messages";
|
|
|
+import {useShare} from "@/composables/share";
|
|
|
|
|
|
+const {} = useShare()
|
|
|
// const title = computed(() => `${dayjs().year()}年游学计划`)
|
|
|
const designStudyAbroadYear = ref('')
|
|
|
const title = ref('')
|
|
@@ -38,6 +41,12 @@ onLoad(async (query) => {
|
|
|
onMounted(async () => {
|
|
|
await setLevels()
|
|
|
})
|
|
|
+onShareAppMessage(() => ({
|
|
|
+ title: '游学计划',
|
|
|
+}))
|
|
|
+onShareTimeline(() => ({
|
|
|
+ title: '游学计划',
|
|
|
+}))
|
|
|
</script>
|
|
|
<template>
|
|
|
<div class="flex flex-col gap-6 p-3.5">
|