45 lines
679 B
Vue
45 lines
679 B
Vue
<template>
|
|
<view class="page">
|
|
<view class="placeholder">
|
|
<text class="icon">✅</text>
|
|
<text class="title">注册结果</text>
|
|
<text class="desc">页面开发中...</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #f5f5f5;
|
|
padding: 40rpx;
|
|
}
|
|
|
|
.placeholder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 200rpx 40rpx;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 100rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.desc {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
</style>
|