Files
lanecarford_front/src/views/Workshop/end.vue

56 lines
1.1 KiB
Vue
Raw Normal View History

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">
We are starting to learn your preferences, Looking forward to see you again,
</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-10-10 15:50:21 +08:00
top: 12.9rem;
left: 6rem;
// width: 100%;
display: flex;
flex-direction: column;
> .title {
font-family: satoshiBold;
font-size: 14.7rem;
line-height: 124%;
}
> .tip {
margin-top: 2.5rem;
width: 58.2rem;
font-family: satoshiRegular;
font-size: 4.1rem;
line-height: 132%;
}
}
}
</style>