MrShi
昨天 742e2a6eb5d0c6c348ae779a8bc8eaa79c958b4f
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<template>
    <view class="box">
        <view class="yue">
            <view class="yue-a">提现</view>
            <view class="yue-b">-¥1000.00</view>
            <view class="yue-c succ">审核中</view>
        </view>
        <view class="info">
            <view class="info-item">
                <view class="info-item-label">提交时间</view>
                <view class="info-item-val">2025-12-31 21:00:22</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">提现银行</view>
                <view class="info-item-val">中国工商银行大钟楼支行(8788)</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">审核时间</view>
                <view class="info-item-val">2025-12-31 21:00:22</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">打款银行</view>
                <view class="info-item-val">中国工商银行大钟楼支行</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">备注信息</view>
                <view class="info-item-val">-</view>
            </view>
            <view class="info-item">
                <view class="info-item-label">打款凭证</view>
                <view class="info-item-list">
                    <view class="info-item-list-item">
                        <image src="/static/logo.png" mode="widthFix"></image>
                    </view>
                    <view class="info-item-list-item">
                        <image src="/static/logo.png" mode="widthFix"></image>
                    </view>
                    <view style="width: 120rpx; height: 0rpx;"></view>
                    <view style="width: 120rpx; height: 0rpx;"></view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style>
    page {
        background-color: #F9F9FB;
    }
</style>
<style lang="scss" scoped>
    .box {
        width: 100%;
        .yue {
            width: 100%;
            height: 286rpx;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: #FFFFFF;
            .yue-a {
                font-weight: 400;
                font-size: 30rpx;
                color: #222222;
            }
            .yue-b {
                font-weight: 600;
                font-size: 48rpx;
                color: #222222;
                margin-top: 30rpx;
            }
            .succ {
                background: rgba(0,64,150,0.1) !important;
                color: #004096 !important;
            }
            .err {
                background: rgba(228,0,29,0.1);
                color: #E4001D;
            }
            .yue-c {
                width: 110rpx;
                height: 48rpx;
                line-height: 48rpx;
                text-align: center;
                border-radius: 8rpx;
                font-weight: 400;
                font-size: 26rpx;
                margin-top: 20rpx;
            }
        }
        .info {
            width: 100%;
            padding: 30rpx;
            box-sizing: border-box;
            background-color: #ffffff;
            margin-top: 20rpx;
            display: flex;
            flex-direction: column;
            .info-item {
                width: 100%;
                display: flex;
                align-items: flex-start;
                margin-bottom: 30rpx;
                &:last-child {
                    margin: 0 !important;
                }
                .info-item-label {
                    flex-shrink: 0;
                    font-weight: 400;
                    font-size: 28rpx;
                    color: #666666;
                    margin-right: 40rpx;
                }
                .info-item-val {
                    flex: 1;
                    font-weight: 400;
                    font-size: 28rpx;
                    color: #222222;
                }
                .info-item-list {
                    flex: 1;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    .info-item-list-item {
                        width: 120rpx;
                        height: 120rpx;
                        border-radius: 8rpx;
                        image {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
</style>