2025-04-22 10:22:33 +08:00

36 lines
949 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="success-page">
<image src="/src/static/base/home/bmcg.png" mode="aspectFit" class="header-image"></image>
<uni-icons type="checkmark-filled" size="80" color="#4CAF50"></uni-icons>
<text class="success-text">恭喜你报名成功!</text>
</view>
</template>
<script lang="ts" setup>
// No script logic needed for this simple static page
</script>
<style lang="scss" scoped>
.success-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh; /* Make sure it takes full viewport height */
padding-bottom: 50rpx; /* Add some padding at the bottom */
box-sizing: border-box;
background: #fff;
}
.header-image {
width: 300rpx; /* Adjust width as needed */
height: 200rpx; /* Adjust height as needed */
margin-bottom: 40rpx; /* Space below the image */
}
.success-text {
margin-top: 40rpx;
font-size: 36rpx;
color: #333;
}
</style>