doum
昨天 fa6202debd1e940f9f779c86d9d3084c7c7b5e83
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<template>
    <view class="box">
        <view class="head">
            <u-search
                placeholder="搜索会员昵称/手机号"
                :showAction="false"
                bgColor="#F8F9FB"
                placeholderColor="#999999"
                searchIconSize="28"
                height="36"
                v-model="keyword" />
            <view class="head-cate">
                <view class="head-cate-item">
                    <text class="num">5,323</text>
                    <text class="title">会员总数</text>
                </view>
                <view class="head-cate-item">
                    <text class="num">3,289</text>
                    <text class="title">订单总数</text>
                </view>
                <view class="head-cate-item">
                    <view class="price">
                        <text>5,323</text>
                        <text>.00</text>
                    </view>
                    <text class="title">订单金额</text>
                </view>
            </view>
        </view>
        <view class="list">
            <view class="list-item">
                <view class="tx">
                    <image src="/static/logo.png" mode="widthFix"></image>
                </view>
                <view class="info">
                    <view class="info-a">
                        <text>李婷平</text>
                        <text>1815****5556</text>
                    </view>
                    <view class="info-date">关联时间:2024-04-18 19:29:01</view>
                    <view class="info-num">
                        <text>订单量:3</text>
                        <text>订单金额:¥3678.00</text>
                    </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%;
        .head {
            width: 100%;
            height: 242rpx;
            padding: 20rpx 30rpx 0 30rpx;
            box-sizing: border-box;
            background: #FFFFFF;
            position: sticky;
            top: 0;
            left: 0;
            z-index: 99;
            .head-cate {
                width: 100%;
                height: 150rpx;
                
                display: flex;
                align-items: center;
                .head-cate-item {
                    flex: 1;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    .price {
                        display: flex;
                        align-items: baseline;
                        text {
                            &:nth-child(1) {
                                font-weight: 600;
                                font-size: 32rpx;
                                color: #E4001D;
                                &::before {
                                    content: '¥';
                                    font-weight: 600;
                                    font-size: 24rpx;
                                    color: #E4001D;
                                }
                            }
                            &:nth-child(2) {
                                font-weight: 600;
                                font-size: 24rpx;
                                color: #E4001D;
                            }
                        }
                    }
                    .num {
                        font-weight: 600;
                        font-size: 32rpx;
                        color: #222222;
                    }
                    .title {
                        font-weight: 400;
                        font-size: 26rpx;
                        color: #555555;
                        margin-top: 10rpx;
                    }
                }
            }
        }
        .list {
            width: 100%;
            margin-top: 20rpx;
            background-color: #ffffff;
            padding: 0 30rpx;
            box-sizing: border-box;
            .list-item {
                width: 100%;
                padding: 30rpx 0;
                box-sizing: border-box;
                border-bottom: 1rpx solid #E5E5E5;
                display: flex;
                align-items: flex-start;
                .tx {
                    width: 80rpx;
                    height: 80rpx;
                    flex-shrink: 0;
                    border-radius: 50%;
                    overflow: hidden;
                    margin-right: 20rpx;
                    image {
                        width: 100%;
                    }
                }
                .info {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    .info-a {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        text {
                            &:nth-child(1) {
                                font-weight: 400;
                                font-size: 30rpx;
                                color: #222222;
                                margin-right: 20rpx;
                            }
                            &:nth-child(2) {
                                font-weight: 400;
                                font-size: 24rpx;
                                color: #999999;
                            }
                        }
                    }
                    .info-date {
                        font-weight: 400;
                        font-size: 24rpx;
                        color: #999999;
                        margin-top: 10rpx;
                    }
                    .info-num {
                        width: 80%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-top: 20rpx;
                        text {
                            font-weight: 400;
                            font-size: 26rpx;
                            color: #333333;
                        }
                    }
                }
            }
        }
    }
</style>