doum
5 小时以前 b9b64778f693ebe82fcbc97837b6012dadb3b084
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
<template>
    <view class="box">
        <view class="title">核销订单</view>
        <view class="item">
            <view class="item-user">
                <view class="item-user-image">
                    <image src="/static/logo.png" mode="widthFix"></image>
                </view>
                <view class="item-user-info">
                    <text>张海涛</text>
                    <text>18155665556</text>
                </view>
            </view>
            <view class="item-info">订单备注:11月22日来拿</view>
        </view>
        <view class="item">
            <view class="item-title">商品列表</view>
            <view class="row">
                <view class="row-image">
                    <image src="/static/logo.png" mode="widthFix"></image>
                </view>
                <view class="row-info">
                    中联艾禾宽齿 适用雷沃/中联/久保田
                </view>
                <view class="row-price">
                    <text>¥499.00</text>
                    <text>x1</text>
                </view>
            </view>
        </view>
        <view style="width: 100%; height: calc(env(safe-area-inset-bottom) + 108rpx);"></view>
        <view class="button">确认核销</view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style>
    page {
        background-color: #F9F9FB;
    }
</style>
<style lang="scss" scoped>
    .box {
        width: 100%;
        padding: 30rpx;
        box-sizing: border-box;
        .button {
            width: calc(100vw - 60rpx);
            height: 88rpx;
            line-height: 88rpx;
            text-align: center;
            background: #004096;
            border-radius: 44rpx;
            font-weight: 600;
            font-size: 32rpx;
            color: #FFFFFF;
            position: fixed;
            left: 30rpx;
            bottom: calc(env(safe-area-inset-bottom) + 20rpx);
        }
        .title {
            font-weight: 600;
            font-size: 32rpx;
            color: #111111;
        }
        .item {
            width: 100%;
            padding: 30rpx;
            box-sizing: border-box;
            background: #FFFFFF;
            border-radius: 16rpx;
            margin-top: 30rpx;
            .row {
                width: 100%;
                display: flex;
                align-items: flex-start;
                margin-top: 32rpx;
                .row-image {
                    flex-shrink: 0;
                    margin-right: 20rpx;
                    width: 136rpx;
                    height: 136rpx;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    border-radius: 8rpx;
                    border: 1rpx solid #E5E5E5;
                    image {
                        width: 100%;
                    }
                }
                .row-info {
                    flex: 1;
                    font-weight: 400;
                    font-size: 30rpx;
                    color: #222222;
                    margin-right: 30rpx;
                    line-height: 42rpx;
                }
                .row-price {
                    flex-shrink: 0;
                    display: flex;
                    flex-direction: column;
                    text {
                        &:nth-child(1) {
                            font-weight: 500;
                            font-size: 30rpx;
                            color: #222222;
                        }
                        &:nth-child(2) {
                            font-weight: 400;
                            font-size: 24rpx;
                            color: #999999;
                            margin-top: 14rpx;
                        }
                    }
                }
            }
            .item-title {
                font-weight: 500;
                font-size: 30rpx;
                color: #222222;
            }
            .item-info {
                width: 100%;
                padding: 20rpx;
                box-sizing: border-box;
                background: #F8F9FB;
                border-radius: 8rpx;
                margin-top: 30rpx;
                font-weight: 400;
                font-size: 26rpx;
                color: #666666;
            }
            .item-user {
                width: 100%;
                display: flex;
                align-items: center;
                .item-user-image {
                    flex-shrink: 0;
                    width: 80rpx;
                    height: 80rpx;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    overflow: hidden;
                    margin-right: 20rpx;
                    image {
                        width: 100%;
                    }
                }
                .item-user-info {
                    flex: 1;
                    height: 80rpx;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    text {
                        &:nth-child(1) {
                            font-weight: 400;
                            font-size: 30rpx;
                            color: #222222;
                        }
                        &:nth-child(2) {
                            font-weight: 400;
                            font-size: 24rpx;
                            color: #999999;
                        }
                    }
                }
            }
        }
    }
</style>