|
@@ -101,23 +101,21 @@
|
|
|
</template>
|
|
|
<template #price>
|
|
|
<div class="pricBox flex-row align-end" :class="{ orderError: item.status === 0 }">
|
|
|
- <span class="txt9">{{ item.statusText }}:</span>
|
|
|
+ <span class="txt9">{{ item.statusText }}:
|
|
|
+ <span v-if="user.ifForeign === '0'" class="word14 o-ptb-8">
|
|
|
+ {{ $t('orderCenter.dividingDomesticService') }} :{{ currencySymbol }}{{ showSubcom(item) }}
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
<!-- 订单明细 - 线下支付 ¥ -->
|
|
|
- <!-- <span class="info5">¥</span> -->
|
|
|
<span class="info5">{{ currencySymbol }}</span>
|
|
|
<span class="word12" v-if="item.status === 3">{{ item.price.toFixed(2) }}</span>
|
|
|
<span class="word12" v-else>{{ item.refundAmount == null ? item.price.toFixed(2) : (item.price -
|
|
|
item.refundAmount).toFixed(2) }}</span>
|
|
|
- <!-- 分佣¥ -->
|
|
|
- <!-- <span class="word14">{{ $t('orderCenter.dividingDomesticService') }}:¥{{ showSubcom(item)
|
|
|
- }}</span> -->
|
|
|
- <span v-if="user.ifForeign === '0'" class="word14">{{ $t('orderCenter.dividingDomesticService')
|
|
|
- }}:{{ currencySymbol }}{{ showSubcom(item)
|
|
|
-}}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template #price-top>
|
|
|
- <span class="time_01">{{ $t('orderCenter.paymentTime') }}:{{ showOrderTime(item, 1) }}</span>
|
|
|
+ <span class="time_01" :style="user.ifForeign == '0' ? 'margin-top: 20px;' : 'margin-top: 40px;'">{{
|
|
|
+ $t('orderCenter.paymentTime') }}:{{ showOrderTime(item, 1) }}</span>
|
|
|
</template>
|
|
|
<template #footer>
|
|
|
<span v-if="item.status === 3">x{{ item.refundQuantity }}</span>
|
|
@@ -643,13 +641,13 @@ export default {
|
|
|
|
|
|
// 跳转订单导出
|
|
|
const gotoOrderExcel = async () => {
|
|
|
- if (searchParams.type == null || searchParams.type == '' ) {
|
|
|
+ if (searchParams.type == null || searchParams.type == '') {
|
|
|
searchParams.type = user.ifForeign;
|
|
|
}
|
|
|
console.log("searchParams", searchParams);
|
|
|
console.log("user", user);
|
|
|
// 显示加载框
|
|
|
- const downloadOrder = showLoadingToast({
|
|
|
+ const downloadOrder = showLoadingToast({
|
|
|
// message: '加载中...',
|
|
|
forbidClick: true,
|
|
|
duration: 0,
|