2025-10-10 15:50:21 +08:00
|
|
|
<script setup lang="ts">
|
2025-10-16 11:01:54 +08:00
|
|
|
import { ref, onMounted } from 'vue'
|
2025-10-10 15:50:21 +08:00
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
const router = useRouter()
|
2025-12-29 14:48:54 +08:00
|
|
|
|
2025-10-10 15:50:21 +08:00
|
|
|
const onExit = () => {
|
|
|
|
|
console.log('exit')
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="end">
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="title">Thank you.</div>
|
|
|
|
|
<div class="tip">
|
2025-12-30 14:58:15 +08:00
|
|
|
We are starting to learn your preferences,
|
|
|
|
|
<br />
|
|
|
|
|
Looking forward to see you again,
|
2025-10-10 15:50:21 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
|
|
.header-title {
|
|
|
|
|
--header-title-color: #000;
|
|
|
|
|
--header-title-background: #fff;
|
|
|
|
|
}
|
|
|
|
|
.end {
|
|
|
|
|
width: 100%;
|
2025-10-16 11:01:54 +08:00
|
|
|
flex: 1;
|
2025-10-10 15:50:21 +08:00
|
|
|
position: relative;
|
|
|
|
|
color: #fff;
|
2025-10-16 11:01:54 +08:00
|
|
|
background: url('@/assets/images/workshop/bg/end_bg.png') no-repeat center center;
|
|
|
|
|
background-size: cover;
|
2025-10-10 15:50:21 +08:00
|
|
|
> .content {
|
2025-10-16 11:01:54 +08:00
|
|
|
position: absolute;
|
2025-12-30 14:58:15 +08:00
|
|
|
top: 15.4rem;
|
|
|
|
|
left: 9.6rem;
|
2025-10-10 15:50:21 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
> .title {
|
|
|
|
|
font-family: satoshiBold;
|
2025-12-30 14:58:15 +08:00
|
|
|
font-size: 11rem;
|
2025-10-10 15:50:21 +08:00
|
|
|
line-height: 124%;
|
|
|
|
|
}
|
|
|
|
|
> .tip {
|
|
|
|
|
margin-top: 2.5rem;
|
|
|
|
|
font-family: satoshiRegular;
|
2025-12-30 14:58:15 +08:00
|
|
|
font-size: 4rem;
|
2025-10-10 15:50:21 +08:00
|
|
|
line-height: 132%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|