27 lines
677 B
Vue
27 lines
677 B
Vue
<template>
|
|
<view class="min-h-screen flex flex-col items-center bg-[#313131]">
|
|
<image
|
|
src="https://lw-zk.oss-cn-hangzhou.aliyuncs.com/liebian/zhuanshuyaoqing.png"
|
|
mode="widthFix"
|
|
/>
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useInviteStore } from '@/store/invite'
|
|
|
|
const inviteStore = useInviteStore()
|
|
const referralCode = inviteStore.currentPromoter?.referralCode
|
|
onShareAppMessage(() => {
|
|
return {
|
|
title: '六纬中考通',
|
|
path: `/pages-sub/invite/jump?referralCode=${referralCode}`,
|
|
imageUrl: 'https://lw-zk.oss-cn-hangzhou.aliyuncs.com/liebian/yaoqingzhibotu.png',
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
//
|
|
</style>
|