activate.vue 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view class="activate">
  3. <view class="notice">
  4. 短信已下发手机,请根据短信内容操作办理激活
  5. </view>
  6. <button class="save-btn" type="default" @click="save">我已激活</button>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. methods: {
  12. save() {
  13. uni.navigateTo({
  14. url: '../login/login/login',
  15. })
  16. }
  17. },
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .activate {
  22. .notice {
  23. padding: 0 170rpx;
  24. text-align: center;
  25. font-size: 32rpx;
  26. line-height: 52rpx;
  27. font-weight: bold;
  28. margin-top: 160rpx;
  29. }
  30. .save-btn {
  31. width: 560rpx;
  32. height: 96rpx;
  33. line-height: 96rpx;
  34. font-size: 32rpx;
  35. border-radius: 48rpx;
  36. font-weight: bold;
  37. background: $uni-color-primary;
  38. color: #fff;
  39. text-align: center;
  40. margin: 95rpx auto 0;
  41. }
  42. }
  43. </style>