1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="activate">
- <view class="notice">
- 短信已下发手机,请根据短信内容操作办理激活
- </view>
- <button class="save-btn" type="default" @click="save">我已激活</button>
- </view>
- </template>
- <script>
- export default {
- methods: {
- save() {
- uni.navigateTo({
- url: '../login/login/login',
- })
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .activate {
- .notice {
- padding: 0 170rpx;
- text-align: center;
- font-size: 32rpx;
- line-height: 52rpx;
- font-weight: bold;
- margin-top: 160rpx;
- }
- .save-btn {
- width: 560rpx;
- height: 96rpx;
- line-height: 96rpx;
- font-size: 32rpx;
- border-radius: 48rpx;
- font-weight: bold;
- background: $uni-color-primary;
- color: #fff;
- text-align: center;
- margin: 95rpx auto 0;
- }
- }
- </style>
|