jiangping
2025-06-06 a2299a6d4a6f99e9c11132138f5d3e9ec68f03ea
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
<template>
    <view class="main_app">
        <image class="logo" src="/static/ic_paysuccess@2x.png" mode=""></image>
        <view class="title">提交成功</view>
        <view class="">感谢您的上报,我们将尽快核实处理</view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style lang="scss">
.main_app{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200rpx;
    font-size: 26rpx;
    color: #999999;
    .title{
        font-weight: 500;
        font-size: 36rpx;
        color: #333333;
        margin-bottom: 26rpx;
    }
    .logo{
        width: 180rpx;
        height: 180rpx;
        margin-bottom: 40rpx;
    }
}
</style>