result.vue 986 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view>
  3. <u-navbar title="修改手机号"></u-navbar>
  4. <view class="bgc">
  5. <img src="../../assets/img/result.png" alt="">
  6. </view>
  7. <view class="success">
  8. 修改成功
  9. </view>
  10. <view class="hint">
  11. 您的密码已经修改生效
  12. </view>
  13. <button >立即登录</button>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .bgc{
  28. display: flex;
  29. justify-content: center;
  30. padding-top: 100rpx;
  31. }
  32. .success{
  33. color: rgba(16, 16, 16, 1);
  34. font-size: 20px;
  35. text-align: center;
  36. font-family: 'Regular';
  37. }
  38. .hint{
  39. color: rgba(119, 119, 119, 1);
  40. font-family: 'Regular';
  41. text-align: center;
  42. margin-top: 8rpx;
  43. }
  44. uni-button{
  45. margin: 80rpx 70rpx;
  46. height: 44px;
  47. border-radius: 8px;
  48. background-color: rgba(31, 74, 153, 1);
  49. color: rgba(255, 255, 255, 1);
  50. font-size: 16px;
  51. }
  52. </style>