myOrder.vue
8.5 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
<template>
<!-- 我的订单 -->
<view>
<u-navbar :placeholder="true" title="订单" bgColor="#F8FAFB" :autoBack="true"></u-navbar>
<view class="tabs">
<u-tabs
:activeStyle="{ color: '#000000', fontWeight: 'bold', transform: 'scale(1.05)' }"
:inactiveStyle="{ color: '#00000099', transform: 'scale(1)' }"
itemStyle="padding-left: 5px;padding-bottom:12rpx; padding-right: 5px; height: 34px;"
:list="list1"
:current="tabStatus"
lineWidth="15"
lineColor="#FB753C"
:scrollable="false"
@click="click"
></u-tabs>
</view>
<view class="mainBox">
<view class="orderBox" v-for="(item, index) in orderList" :key="item.id" @click="toDetaile(item.id)">
<view class="downTime" v-if="item.order_status == 1">
<u-count-down :time="item.time * 1000" format="mm:ss"></u-count-down>
</view>
<view class="orderNoBox flexJ" v-if="[3, 4, 21].includes(item.order_status)">
<view class="orderNo">快递单号 {{ item.express_no }}</view>
<view @click.stop="copy(item.express_no)" class="copy">复制</view>
</view>
<!-- 订单商品 -->
<orderShop :shop="item"></orderShop>
<view class="orderBtn">
<!-- 订单状态: 0=全部,1=待付款,2=待发货,3=待收货,4=待评价,11=已取消,21=售后 -->
<!-- 待付款 -->
<view class="flexA" v-if="item.order_status == 1">
<view @click.stop="operateOrder(item, 0)" class="cancel flexC">{{ item.goodstatus_text == '' ? '取消付款' : '取消兑换' }}</view>
<view @click.stop="operateOrder(item, 1)" v-if="item.order_status == 1" class="orange flexC">
{{ item.goodstatus_text == '' ? '立即支付' : '立即兑换' }}
</view>
</view>
<!-- 代发货 -->
<view @click.stop="operateOrder(item, 2)" v-if="item.order_status == 2" class="orange flexC">申请退款</view>
<!-- 待收货 -->
<view class="flexA" v-if="item.order_status == 3">
<view v-if="item.order_status == 3 && item.goodstatus_text == ''" class="cancel flexC" @click.stop="true">
<button open-type="contact"></button>
联系客服
</view>
<view @click.stop="operateOrder(item, 3)" class="orange flexC">确认收货</view>
</view>
<!-- 待评价 -->
<view @click.stop="operateOrder(item, 4)" v-if="item.order_status == 5" class="orange flexC">评价</view>
<!-- 售后 -->
<view @click.stop="operateOrder(item, 5)" v-if="item.order_status == 21" class="orange flexC">查看详情</view>
</view>
</view>
</view>
<!-- 暂无订单 -->
<view class="null flexV" v-if="!orderList.length">
<image src="/static/mineIc/orderNull.png" mode=""></image>
暂无订单
</view>
<!-- 选择支付方式 -->
<payMode @canclePop="modeShow = false" :orderId="orderId" :isOrderPay="true" :totalPrice="orderList.total_price" :modeShow="modeShow"></payMode>
<!-- 提示弹窗 -->
<tipPops @pointsBtns="pointsBtns" :integral="integral" :tipType="tipType" :tipShow="tipShow"></tipPops>
</view>
</template>
<script setup>
import { ref, reactive } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
import orderShop from '@/componets/orderShop.vue'
import PayMode from '@/componets/checkPayMode.vue'
import tipPops from '@/componets/tipPop.vue'
import { getOrderList, getCancleOrder, getRefund, getReceipt } from '@/api/'
onLoad(e => {
tabStatus.value = e.status * 1 //tabs当前选中
// console.log('订单状态', e.status)
})
onShow(() => {
console.log('订单状态', tabStatus.value)
getOrderLists(tabStatus.value == 5 ? 21 : tabStatus.value == 4 ? 5 : tabStatus.value * 1)
})
let tabStatus = ref(0) //订单状态
let orderList = ref([]) //订单
const list1 = reactive([{ name: '全部' }, { name: '待付款' }, { name: '待发货' }, { name: '待收货' }, { name: '待评价' }, { name: '售后' }])
// type == 0取消订单 1立即支付 2申请退款 3确认收货 4评价 5查看详情
const operateOrder = (item, type) => {
orderId.value = item.id
if (type == 0 || type == 2) {
tipType.value = type == 0 ? 1 : 2
tipShow.value = true
} else if (type == 1) {
modeShow.value = true
} else if (type == 3) {
getReceipts() //确认收货
} else if (type == 4) {
uni.navigateTo({
url: `/pages/mine/evaluate?id=${item.id}`
})
} else if (type == 5) {
toDetaile(item.id)
}
}
//提示弹窗按钮点击
const pointsBtns = type => {
console.log(type)
tipShow.value = false
if (type == 1) {
tipType.value == 1 ? getCancleOrders() : getRefunds()
}
}
let orderId = ref('') //订单id
let integral = ref(0) //积分
let tipType = ref(1) //1取消支付 2取消订单
let modeShow = ref(false) // 选择支付方式弹窗
let tipShow = ref(false) // 提示弹窗
// 跳转订单详情
const toDetaile = id => {
console.log('订单')
uni.navigateTo({
url: `/pages/mine/orderDetail?id=${id}`
})
}
// 复制订单号
const copy = text => {
uni.setClipboardData({
data: text,
success: () => {
uni.showToast({ title: '复制成功', icon: 'none' })
}
})
}
// tabs切换
const click = e => {
console.log(e)
getOrderLists(e.index == 5 ? 21 : e.index == 4 ? 5 : e.index)
}
// 订单状态: 0=全部,1=待付款,2=待发货,3=待收货,4=待评价,11=已取消,21=售后
const getOrderLists = async status => {
try {
const res = await getOrderList(status)
orderList.value = res
console.log('getOrderList', res)
// 保存数据
} catch (err) {
uni.showToast({
title: err,
icon: 'none'
})
console.log('getOrderList', err)
}
}
// 取消订单
const getCancleOrders = async () => {
try {
const res = await getCancleOrder(orderId.value)
uni.showToast({ title: '订单已取消~', icon: 'none' })
tipShow.value = false
tabStatus.value = 0
getOrderLists(0)
console.log('getCancleOrder', res)
// 保存数据
} catch (err) {
uni.showToast({ title: err, icon: 'none' })
console.log('getCancleOrder', err)
}
}
// 退款
const getRefunds = async () => {
try {
const res = await getRefund(orderId.value)
uni.showToast({ title: '已申请,等待客服审核', icon: 'none' })
getOrderLists(2)
console.log('getRefund', res)
// 保存数据
} catch (err) {
uni.showToast({ title: err, icon: 'none' })
console.log('getRefund', err)
}
}
// 确认收货
const getReceipts = async () => {
try {
const res = await getReceipt(orderId.value)
uni.showToast({ title: '已收货,期待下次下单~', icon: 'none' })
getOrderLists(3)
console.log('getReceipt', res)
// 保存数据
} catch (err) {
uni.showToast({ title: err, icon: 'none' })
console.log('getReceipt', err)
}
}
</script>
<style lang="scss">
page {
background: #f8fafb;
}
.tabs {
width: 100%;
height: 88rpx;
background: #fff;
}
.mainBox {
width: 100%;
padding: 24rpx 32rpx;
box-sizing: border-box;
.orderBox {
width: 100%;
padding: 28rpx 8rpx;
box-sizing: border-box;
border-radius: 12rpx;
background: #ffffffff;
margin-bottom: 16rpx;
.downTime {
display: flex;
justify-content: flex-end;
margin-bottom: 12rpx;
.u-count-down__text {
color: #fc4338ff;
font-size: 24rpx;
}
}
.orderNoBox {
margin-bottom: 20rpx;
:nth-child(1n) {
color: #757d8cff;
font-size: 24rpx;
}
}
.orderBtn {
display: flex;
justify-content: flex-end;
.cancel {
position: relative;
margin-right: 20rpx;
width: 194rpx;
height: 60rpx;
border-radius: 6rpx;
background: #f7f8faff;
color: #000000e6;
font-size: 24rpx;
button {
position: absolute;
background: transparent;
width: 100%;
height: 100%;
color: #000000e6;
font-size: 24rpx;
border: none !important;
padding: 0 !important;
line-height: 28rpx;
&::after {
border: none;
}
}
}
.orange {
border-radius: 6rpx;
width: 194rpx;
height: 60rpx;
color: #ffffffff;
font-size: 24rpx;
background: linear-gradient(139deg, #fb753cff 0%, #fb3e3cff 100%);
}
}
}
}
.null {
margin: 266rpx auto 0;
color: #969799ff;
font-size: 28rpx;
image {
margin-bottom: 16rpx;
width: 192rpx;
height: 192rpx;
}
}
</style>