36 lines
949 B
Vue
36 lines
949 B
Vue
<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> |