No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <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>
|