1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view>
- <u-navbar title="修改手机号"></u-navbar>
-
- <view class="bgc">
- <img src="../../assets/img/result.png" alt="">
-
- </view>
- <view class="success">
- 修改成功
- </view>
- <view class="hint">
- 您的密码已经修改生效
- </view>
- <button >立即登录</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- .bgc{
- display: flex;
- justify-content: center;
- padding-top: 100rpx;
-
- }
- .success{
- color: rgba(16, 16, 16, 1);
- font-size: 20px;
- text-align: center;
- font-family: 'Regular';
- }
- .hint{
- color: rgba(119, 119, 119, 1);
- font-family: 'Regular';
- text-align: center;
- margin-top: 8rpx;
- }
- uni-button{
- margin: 80rpx 70rpx;
- height: 44px;
- border-radius: 8px;
- background-color: rgba(31, 74, 153, 1);
- color: rgba(255, 255, 255, 1);
- font-size: 16px;
- }
- </style>
|