k94314517
2024-10-16 17efddc6a667670dca682bf36b51a43e99615e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<template>
    <view class="main_app">
        <view class="ima_wrap">
            <image src="@/static/driver/btn_qiandao@2x.png" mode="widthFix"></image>
            <u-icon class="txt" color="#fff" size="72" name="checkbox-mark"></u-icon>
        </view>
        <view class="h1">提交成功</view>
        <view class="placeholder9">感谢你的反馈,我们将尽快核实处理</view>
        <view class="btn"  @click="$jump('/pages/staff/index')">返回首页</view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style lang="scss">
.main_app{
    text-align: center;
    .btn{
        margin-top: 60rpx;
        padding-bottom: env(safe-area-inset-bottom);
        box-sizing: border-box;
        width: 300rpx;
        margin: 60rpx auto;
          height: 88rpx;
          line-height: 88rpx;
          text-align: center;
          background: #fff;
          border-radius: 44rpx;
          font-size: 32rpx;
            border: 1rpx solid #4e99a9;
            border-radius: 50rpx;
          color: #4e99a9;
    }
    .h1{
        font-size: 44rpx;
        font-weight: 600;
        margin-bottom: 30rpx;
    }
    .ima_wrap{
        width: 300rpx;
        height: 300rpx;
        margin: 300rpx auto 40rpx;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        image{
            width: 100%;
            position: absolute;
        }
        .txt{
            font-size: 50rpx;
            color: #fff;
        }
    }
}
</style>