rk
2026-06-26 3d46f89ff6c600f60d97f4541443540be20460c1
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
<template>
    <view class="yy">
        <view class="yy_title">欢迎回来,张兰~</view>
        <view class="yy_info">8月29日,星期五</view>
        <view class="yy_cate">
            <view class="yy_cate_item" style="margin-bottom: 40rpx;">
                <image src="/static/images/yingshou_ic_zongdingdan@2x.png" mode="widthFix"></image>
                <view class="yy_cate_item_info">
                    <text>329</text>
                    <text>今日订单</text>
                </view>
            </view>
            <view class="yy_cate_item" style="margin-bottom: 40rpx;">
                <image src="/static/images/yingshou_ic_zongwancheng@2x.png" mode="widthFix"></image>
                <view class="yy_cate_item_info">
                    <text>143</text>
                    <text>进行中订单</text>
                </view>
            </view>
            <view class="yy_cate_item">
                <image src="/static/images/yingshou_ic_zongyingshou@2x.png" mode="widthFix"></image>
                <view class="yy_cate_item_info">
                    <text>700</text>
                    <text>留存押金(元)</text>
                </view>
            </view>
            <view class="yy_cate_item">
                <image src="/static/images/yingshou_ic_siji@2x.png" mode="widthFix"></image>
                <view class="yy_cate_item_info">
                    <text>12839.23</text>
                    <text>今日收入(元)</text>
                </view>
            </view>
        </view>
        <view class="yy_image">
            <image src="/static/images/home_img_zulingxuzhi.png" mode="widthFix"></image>
        </view>
        <view class="yy_image">
            <image src="/static/images/home_img_zulingxuzhi@2.png" mode="widthFix"></image>
        </view>
        <view class="yy_image">
            <image src="/static/images/home_img_zulingxuzhi@.png" mode="widthFix"></image>
        </view>
        <view class="yy_btn">退出登录</view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style lang="scss" scoped>
    .yy {
        width: 100%;
        padding: 40rpx 30rpx;
        box-sizing: border-box;
        .yy_title {
            font-weight: 600;
            font-size: 40rpx;
            color: #333333;
        }
        .yy_info {
            font-weight: 400;
            font-size: 28rpx;
            color: #999999;
            margin-top: 24rpx;
        }
        .yy_cate {
            width: 100%;
            padding: 30rpx;
            box-sizing: border-box;
            background: #F8F9FB;
            border-radius: 20rpx;
            margin-top: 30rpx;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            .yy_cate_item {
                width: 50%;
                display: flex;
                align-items: center;
                image {
                    width: 68rpx;
                    height: 68rpx;
                    margin-right: 24rpx;
                }
                .yy_cate_item_info {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    text {
                        &:nth-child(1) {
                            font-weight: normal;
                            font-size: 32rpx;
                            color: #222222;
                        }
                        &:nth-child(2) {
                            font-weight: 400;
                            font-size: 24rpx;
                            color: #999999;
                            margin-top: 12rpx;
                        }
                    }
                }
            }
        }
        .yy_image {
            width: 100%;
            height: 182rpx;
            margin-top: 30rpx;
            image {
                width: 100%;
            }
        }
        .yy_btn {
            position: fixed;
            left: 50%;
            bottom: calc(env(safe-area-inset-bottom) + 40rpx);
            width: 200rpx;
            height: 72rpx;
            transform: translate(-50%, 0);
            line-height: 72rpx;
            text-align: center;
            border-radius: 36rpx;
            font-weight: 400;
            font-size: 28rpx;
            color: #01B6AD;
            border: 1rpx solid #01B6AD;
        }
    }
</style>