| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view>
- <u-navbar :is-back="false" title="提交成功"></u-navbar>
- <view class="content">
- <image src="@/static/icon/success.png" mode=""></image>
- <text class="tips">资料提交成功,请耐心等待审核</text>
- <view class="cu-btn round btn" @click="$jump('/pages/login/account-login')">
- 确认
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- background-color: #FFFFFF;
- }
- </style>
- <style lang="scss" scoped>
- .content{
- margin-top: 140rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
-
- image{
- width: 200rpx;
- height: 200rpx;
- }
-
- .tips{
- margin-top: 50rpx;
- color: #313131;
- font-size: 28rpx;
- }
-
- .btn{
- margin-top: 150rpx;
- background-color: #D18C42;
- color: #FFFFFF;
- width: 74%;
- padding: 46rpx;
- }
- }
- </style>
|