| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <view class="page">
- <view class="headers ">
- <view class="header">
- <view class="dis a-c j-start ">
- <u-icon name="arrow-left" size="40" @tap="back"></u-icon>
- <text style="margin: auto;">认证结果</text>
- </view>
- </view>
- </view>
- <view class="authresult dis f-c a-c ">
- <image src="../../static/image/user/wawit.png" mode=""></image>
- <text class="mt-1">等待审核</text>
- <text class="mt-2">已提交资料,请耐心等待后台人员审核</text>
- </view>
- <view class="footer">
- <u-button type="primary" style="background:linear-gradient( 90deg, #499DFF 0%, #0052FF 100%);"
- @tap="returnHome">返回主页</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- //页面返回按钮
- back() {
- uni.navigateBack({
- delta: 1, // 返回的页面数,如果是1表示返回上一页
- success: function() {}
- });
- },
- returnHome() {
- uni.switchTab({
- url: "/pages/index/index"
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background: #fff;
- }
- .headers {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999999;
- width: 100%;
- border-bottom: 1px solid #EEEEEE;
- .header {
- width: 100%;
- height: auto;
- padding: 50px 16px 14px;
- background: linear-gradient(180deg, #D1E3FE 0%, #FFFFFF 100%);
- text {
- font-size: 18px;
- font-weight: bold;
- color: #000;
- }
- }
- }
- .denyReason {
- width: 100%;
- background: #F9F9F9;
- border-radius: 5px;
- padding: 15px;
- color: #666;
- font-size: 14px;
- }
- .authresult {
- position: fixed;
- top: 200px;
- left: 0;
- right: 0;
- width: 100%;
- text-align: center;
- padding: 25px;
- image {
- width: 50px;
- height: 50px;
- }
- text:nth-child(2) {
- font-size: 15px;
- color: #333;
- font-weight: bold;
- }
- text:nth-child(3) {
- font-size: 14px;
- color: #666;
- }
- }
- .footer {
- background: #FFFFFF;
- box-shadow: 0px -2px 5px 0px rgba(1, 83, 255, 0.05);
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 12px 16px;
- }
- </style>
|