25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <template>
- <view class="registerCode">
- <view class="registerImg">
- <image src="../../static/images/scuess.png" mode=""></image>
- </view>
- <view class="registerBtn">
- 提交成功
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
-
- <style lang="scss">
- .registerCode{
- .registerImg{
- width: 300rpx;
- height: 300rpx;
- margin: 130rpx auto;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .registerBtn{
- width: 80%;
- height: 80rpx;
- background: #3384fd;
- color: #FFFFFF;
- border-radius: 10rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 30rpx;
- margin: 50rpx auto;
- }
- }
- </style>
|