Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <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>
|