You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
644 B
45 lines
644 B
2 months ago
|
<template>
|
||
|
<view class="apply">
|
||
|
<view class="content">
|
||
|
<image src="@/static/kong.png"></image>
|
||
|
<view class="txt">
|
||
|
<text>恭喜您成为陪玩达人,\n开始您的陪玩之旅!</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
page{
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
.apply{
|
||
|
.content{
|
||
|
width: 368rpx;
|
||
|
margin: 175rpx auto;
|
||
|
image{
|
||
|
width: 100%;
|
||
|
height: 285rpx;
|
||
|
}
|
||
|
.txt{
|
||
|
font-weight: 500;
|
||
|
font-size: 32rpx;
|
||
|
color: #222222;
|
||
|
margin-top: 40rpx;
|
||
|
text-align: center;
|
||
|
line-height: 45rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|