list.vue
7.8 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<template>
<view class="page_box">
<view class="head_box">
<view class="order-nav x-f">
<view class="nav-item y-f" v-for="nav in orderState" :key="nav.id" @tap="onNav(nav.type)">
<view class="item-title">{{ nav.title }}</view>
<text class="nav-line" :class="{ 'line-active': orderType === nav.type }"></text>
</view>
</view>
</view>
<view class="content_box">
<scroll-view scroll-y="true" enable-back-to-top @scrolltolower="loadMore" class="scroll-box">
<view class="order-list" v-for="(order, orderIndex) in orderList" :key="order.id" @tap.stop="jump('/pages/order/detail', { id: order.id })">
<view class="order-head x-bc">
<text class="no">订单编号:{{ order.order_sn }}</text>
<text class="state">{{ order.status_name }}</text>
</view>
<view class="goods-order" v-for="goods in order.item" :key="goods.id">
<view class="order-content"><shopro-mini-card :type="'order'" :detail="goods"></shopro-mini-card></view>
</view>
<view class="order-bottom">
<view class="all-msg x-f">
优惠:
<text class="all-unit">¥</text>
{{ order.discount_fee }} ,运费:
<text class="all-unit">¥</text>
{{ order.dispatch_amount }} ,需付款:
<view class="all-money">{{ order.pay_fee }}</view>
</view>
<view class="btn-box x-f" v-if="order.btns.length">
<block v-for="orderBtn in order.btns" :key="orderBtn">
<button v-if="orderBtn === 'cancel'" @tap.stop="onCancel(order.id, orderIndex)" class="cu-btn obtn1">取消订单</button>
<button v-if="orderBtn === 'pay'" @tap.stop="onPay(order.id)" class="cu-btn obtn2">立即支付</button>
<button v-if="orderBtn === 'groupon'" @tap.stop="jump('/pages/activity/groupon/detail', { id: order.ext_arr.groupon_id })" class="cu-btn obtn2">
拼团详情
</button>
<button v-if="orderBtn === 'delete'" style="background:#FFEEEE;color:#E50808" @tap.stop="onDelete(order.id, orderIndex)" class="cu-btn obtn1">删除</button>
<button v-if="orderBtn === 'express'" @tap.stop="onExpress(order.id, orderIndex)" class="cu-btn obtn1">查看物流</button>
</block>
</view>
</view>
</view>
<!-- 空白页 -->
<shopro-empty v-if="!orderList.length && !isLoading" :emptyData="emptyData"></shopro-empty>
<!-- load -->
<shopro-load v-model="isLoading"></shopro-load>
<!-- 更多 -->
<view v-if="orderList.length" class="cu-load text-gray" :class="loadStatus"></view>
</scroll-view>
</view>
<view class="foot_box"></view>
<!-- 自定义底部导航 -->
<shopro-tabbar></shopro-tabbar>
<!-- 关注弹窗 -->
<shopro-float-btn></shopro-float-btn>
<!-- 登录提示 -->
<shopro-login-modal></shopro-login-modal>
</view>
</template>
<script>
import shoproMiniCard from '@/components/shopro-mini-card/shopro-mini-card.vue';
export default {
components: {
shoproMiniCard
},
data() {
return {
routerTo: this.$Router,
isLoading: true,
loadStatus: '', //loading,over分页
currentPage: 1,
lastPage: 1,
orderType: 'all',
orderList: [],
emptyData: {
img: '/static/imgs/empty/empty_groupon.png',
tip: '暂无商品,还有更多好货等着你噢~'
},
orderState: [
{
id: 0,
title: '全部',
type: 'all'
},
{
id: 1,
title: '待付款',
type: 'nopay'
},
{
id: 2,
title: '待发货',
type: 'nosend'
},
{
id: 3,
title: '待收货',
type: 'noget'
},
{
id: 4,
title: '待评价',
type: 'nocomment'
}
]
};
},
computed: {},
onLoad() {
if (this.$Route.query.type) {
this.orderType = this.$Route.query.type;
}
this.getOrderList();
},
onShow() {
// this.orderList = [];
},
methods: {
jump(path, parmas) {
this.$Router.push({
path: path,
query: parmas
});
},
onNav(id) {
this.orderType = id;
this.orderList = [];
this.currentPage = 1;
this.getOrderList();
},
// 订单列表
getOrderList() {
let that = this;
that.isLoading = true;
that.loadStatus = 'loading';
that.$api('order.index', {
type: that.orderType,
page: that.currentPage
}).then(res => {
if (res.code === 1) {
that.isLoading = false;
that.orderList = [...that.orderList, ...res.data.data];
that.lastPage = res.data.last_page;
if (that.currentPage < res.data.last_page) {
that.loadStatus = '';
} else {
that.loadStatus = 'over';
}
}
});
},
// 加载更多
loadMore() {
if (this.currentPage < this.lastPage) {
this.currentPage += 1;
this.getOrderList();
}
},
// 删除订单
onDelete(orderId, orderIndex) {
let that = this;
uni.showModal({
title: '删除订单',
content: '确定要删除这个订单么?',
cancelText: '取消',
confirmText: '删除',
success: res => {
if (res.confirm) {
that.$api('order.deleteOrder', {
id: orderId
}).then(res => {
if (res.code === 1) {
this.$tools.toast(res.msg);
this.orderList.splice(orderIndex, 1);
}
});
}
}
});
},
// 取消订单
onCancel(id, orderIndex) {
let that = this;
that.$api('order.cancel', {
id: id
}).then(res => {
if (res.code === 1) {
this.$tools.toast(res.msg);
this.orderList.splice(orderIndex, 1);
}
});
},
// 立即购买
onPay(id) {
uni.navigateTo({
url: `/pages/order/payment/method?orderId=${id}`
});
},
// 查看物流,Todo
onExpress(orderId) {
let that = this;
that.$api('order.expressList', {
order_id: orderId
}).then(res => {
if (res.code === 1) {
if (res.data.length == 1) {
this.jump('/pages/order/express', { orderId: orderId, expressId: res.data[0].id });
} else if (res.data.length > 1) {
this.jump('/pages/order/express-list', { orderId: orderId });
} else {
this.$tools.toast('暂无包裹~');
}
}
});
}
}
};
</script>
<style lang="scss">
.order-nav {
background: #fff;
height: 80rpx;
.nav-item {
flex: 1;
.item-title {
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(51, 51, 51, 1);
line-height: 76rpx;
}
.nav-line {
width: 100rpx;
height: 4rpx;
background: #fff;
}
.line-active {
background: rgba(230, 184, 115, 1);
}
}
}
.order-list {
background: #fff;
margin: 20rpx 0;
.order-bottom {
padding-bottom: 20rpx;
.btn-box {
justify-content: flex-end;
}
.all-msg {
font-size: 24rpx;
color: #999;
justify-content: flex-end;
margin-bottom: 10rpx;
padding: 0 30rpx;
.all-unit {
font-size: 20rpx;
}
.all-money {
font-size: 26rpx;
color: #333;
font-weight: 500;
&::before {
content: '¥';
font-size: 20rpx;
}
}
}
.obtn1 {
width: 160rpx;
height: 60rpx;
background: rgba(238, 238, 238, 1);
border-radius: 30rpx;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(51, 51, 51, 1);
margin-right: 20rpx;
padding: 0;
}
.obtn2 {
width: 160rpx;
height: 60rpx;
background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
border-radius: 30rpx;
margin-right: 20rpx;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #fff;
padding: 0;
}
}
.order-head {
padding: 0 25rpx;
height: 77rpx;
border-bottom: 1rpx solid #dfdfdf;
.no {
font-size: 26rpx;
color: #999;
}
.state {
font-size: 26rpx;
color: #a8700d;
}
}
.order-content {
padding-bottom: 20rpx;
}
.goods-order {
border-bottom: 1px solid rgba(223, 223, 223, 0.5);
padding: 20rpx 20rpx 0;
margin-bottom: 20rpx;
}
.goods-bottom {
background: #fff;
padding-bottom: 30rpx;
}
}
</style>