xuxueyang
2024-07-30 1fb44496929548b4f07b37796d506dedc494d44a
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<template>
    <view class="list-container order-sale supplier">
        <view class="component-tab-container m-t-12">
            <view class="tab-item" :class="[query.status==''?'cur':'']" @click="changeIndex('')">全部订单</view>
            <view class="tab-item" :class="[query.status=='PENDING'?'cur':'']" @click="changeIndex('PENDING')">待入位
            </view>
            <view class="tab-item" :class="[query.status=='ARRIVED'?'cur':'']" @click="changeIndex('ARRIVED')">已入位
            </view>
 
        </view>
        <view class="p15" style="min-height: calc(100vh - 160rpx);">
            <no-data v-if="!list||list.length==0" style="width: 100%;"></no-data>
            <view v-for="(item,index) in list" :key="index" class="m-b-24 order-sale-list list-container">
                <view class="order-sale-item list-item">
                    <view class="title flex">
                        <view>订单单号:{{item.orderNo}}</view>
                        <view class="m-l-a m-r-0 status">{{item.statusStr}}</view>
                    </view>
                    <view class="line" v-if="false"></view>
                    <view class="flower flex" v-if="false">
                        <image class="image img100 m-r-6" :src="item.flowerCover" @click="previewImg(item.flowerCover)">
                        </image>
                        <view class="flex1">
                            <view class=" flex">
                                <view class="title">{{item.flowerName }}
                                </view>
                            </view>
                            <view class="each-list flex">
                                <view class="each-item">
                                    <view class="label">颜色</view>
                                    <view class="value">{{ item.flowerColor || '-' }}</view>
 
                                </view>
                                <view class="each-item">
                                    <view class="label">规格</view>
                                    <view class="value">{{ item.flowerUnit || '-' }}</view>
                                </view>
                            </view>
                        </view>
                        <view class="each-list price">
                            <view class="each-item">
                                <view class="value">¥{{ item.price || '-' }}</view>
                            </view>
                            <view class="each-item">
                                <view class="value">x {{ item.num || 0 }}</view>
                            </view>
                        </view>
 
                    </view>
 
                    <view class="line"></view>
                    <view class="delivery-form">
                        <view class="form-item" style="max-width: 100%;">
                            <view class="label">下单时间</view>
                            <view class="value">{{item.paymentTime}}</view>
                        </view>
                    </view>
                    <view class="delivery-form">
                        <view class="form-item">
                            <view class="label">仓库名称</view>
                            <view class="value red">{{item.warehouseName || '待分配'}}</view>
                        </view>
                        <view class="form-item">
                            <view class="label">库位名称</view>
                            <view class="value red">{{item.warehouseLocationCode || '待分配'}}</view>
                        </view>
 
                    </view>
 
                    <view class="line"></view>
                    <view class="buttons">
                        <view class="button button-1 m-r-10" v-if="item.status==='PENDING'"
                            @click="toDetail(item,'PENDING')">确认入位</view>
                        <view class="button button-0" @click="toDetail(item,'')">查看详情</view>
                    </view>
 
 
                </view>
            </view>
        </view>
 
        <!-- 判断是否到底了,自动吧 -->
        <footer-msg :more="page.total>0&&page.total>page.current*page.size"></footer-msg>
 
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                tabIndex: 0,
                query: {
                    status: '',
                },
 
            }
        },
        onLoad(options) {
            if (options.status) {
                this.query.status = options.status || ''
            }
            this.listApi = '/api/supplier/delivery/list/today'
            this.getList()
 
        },
        onReachBottom() {
            this.getMore()
        },
        async onShow() {
            if (this.sign['delivery']) {
                await this.$store.dispatch('sign_clear', 'delivery');
                this.refreshList()
            }
        },
        async onPullDownRefresh() {
            this.page.current = 1
            await this.getList()
            uni.stopPullDownRefresh()
        },
        methods: {
            changeIndex(status) {
                if (this.query.status !== status) {
                    this.query.status = status
                    // 刷新 query
                    this.refreshList()
                }
            },
            toDetail(item, status) {
                uni.navigateTo({
                    url: `/pages/order/order-delivery-detail?id=${item.id}&status=${status}`
                })
            }
        }
    }
</script>
 
<style lang="scss" scope>
    .order-sale-list {
        .order-sale-item {
            background-color: #fff;
            margin-bottom: 20rpx;
            padding: 22rpx;
 
            .buttons {
                display: flex;
                margin-left: auto;
                width: fit-content;
 
                .button {
                    // width: 216rpx;
                    padding: 10rpx 20rpx;
                    line-height: 34rpx;
                    font-size: 24rpx;
                    height: 34rpx;
                    background: #20613D;
                    text-align: center;
                    border-radius: 30rpx;
 
                }
 
                .button-1 {
                    background: #fff;
                    color: #333;
                    border: 2rpx solid #333;
 
                }
 
                .button-0 {
                    color: #fff;
                    border: 2rpx solid #20613D;
                }
            }
 
            .title {
                font-weight: 600;
                font-size: 28rpx;
                color: #000000;
                line-height: 40rpx;
            }
 
            .status {
                color: #20613D;
            }
 
            .line {
                min-height: 2rpx;
                background-color: #EEEEEE;
                margin-top: 16rpx;
                margin-bottom: 16rpx;
            }
 
            .flower {
                font-weight: 400;
                font-size: 24rpx;
                color: #666666;
                line-height: 40rpx;
 
                .image {
                    width: 115rpx;
                    height: 106rpx;
                }
 
                .title {
                    font-weight: 600;
                    font-size: 28rpx;
                    color: #000000;
                    line-height: 40rpx;
                }
 
                .desc {}
 
                .price {
                    color: #CF0000;
                }
            }
 
            .delivery-form {
                display: flex;
                flex-wrap: wrap;
 
                .form-item {
                    flex: 1;
                    min-width: 40%;
                    max-width: 50%;
                    display: flex;
 
                    .label {
                        font-weight: 400;
                        font-size: 22rpx;
                        color: #666666;
                        line-height: 34rpx;
                        min-width: 120rpx
                    }
 
                    .label::after {
                        content: ":";
                        font-weight: 400;
                        font-size: 24rpx;
                        color: #666666;
                        line-height: 34rpx;
                    }
 
                    .value {
                        font-weight: 400;
                        font-size: 22rpx;
                        color: #333;
                        line-height: 34rpx;
                    }
 
                    .value.red {
                        color: #CF0000;
                    }
                }
 
                .form-item.width100 {
                    max-width: unset;
                }
            }
        }
    }
</style>