|
|
@@ -48,14 +48,14 @@ function getStatusText(orderItem) {
|
|
48
|
48
|
}
|
|
49
|
49
|
if (orderItem.status == 0) {
|
|
50
|
50
|
// return '待审核'
|
|
51
|
|
- return '退款中'
|
|
|
51
|
+ return '审核中'
|
|
52
|
52
|
}
|
|
53
|
53
|
if (orderItem.status == 1) {
|
|
54
|
54
|
// return '待退货'
|
|
55
|
|
- return '退款中'
|
|
|
55
|
+ return '审核中'
|
|
56
|
56
|
}
|
|
57
|
57
|
if (orderItem.status == 2) {
|
|
58
|
|
- return '退款中'
|
|
|
58
|
+ return '审核中'
|
|
59
|
59
|
// return '待收货'
|
|
60
|
60
|
}
|
|
61
|
61
|
if (orderItem.status == 3) {
|
|
|
@@ -192,8 +192,8 @@ function handleShowDetail(orderItem) {
|
|
192
|
192
|
<div class="f-text-color-2 i-tabler-chevron-right"></div>
|
|
193
|
193
|
|
|
194
|
194
|
</div>
|
|
195
|
|
- <div class=" text-xs flex w-15 justify-end"
|
|
196
|
|
- :class="(orderItem.status == 3 || orderItem.status == -1) ? 'text-gray' : 'text-primary'"
|
|
|
195
|
+ <div class=" text-xs flex w-15 justify-end 'text-primary'"
|
|
|
196
|
+
|
|
197
|
197
|
>
|
|
198
|
198
|
{{ getStatusText(orderItem) }}
|
|
199
|
199
|
</div>
|