changeResult.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view>
  3. <u-navbar title="修改密码" >
  4. </u-navbar>
  5. <view class="main">
  6. <view class="img-box">
  7. <img src="../../../../assets/img/result.png" alt="">
  8. </view>
  9. <view class="text">
  10. <view class="success">
  11. 修改成功
  12. </view>
  13. <view class="tips">
  14. 您的密码已经修改生效
  15. </view>
  16. </view>
  17. </view>
  18. <button class="login" @click="gotoUrl('pages/youth/login/login')">立即登录</button>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. page{
  33. background-color: #fff;
  34. }
  35. .main{
  36. padding: 100rpx 0 80rpx 0;
  37. .img-box{
  38. width: 300rpx;
  39. height: 300rpx;
  40. overflow: hidden;
  41. margin: auto;
  42. img{
  43. width: 100%;
  44. height: 100%;
  45. }
  46. }
  47. .text{
  48. text-align: center;
  49. line-height: 20px;
  50. .success{
  51. color: rgba(16, 16, 16, 1);
  52. font-size: 20px;
  53. }
  54. .tips{
  55. color: rgba(119, 119, 119, 1);
  56. margin-top: 8rpx;
  57. }
  58. }
  59. }
  60. .login{
  61. margin: 0 70rpx;
  62. border-radius: 50px;
  63. background-color: rgba(0, 186, 200, 1);
  64. color: rgba(255, 255, 255, 1);
  65. font-size: 32rpx;
  66. line-height: 96rpx;
  67. }
  68. </style>