|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-04-18 15:28:14
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-05-17 17:55:56
|
|
|
|
|
* @LastEditTime: 2022-06-01 15:34:49
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
<UiGoodsInfo :class="idx === orderInfo.products.length-1 ? 'goods-info__last' : ''" :key="item.orderProductId"
|
|
|
|
|
v-for="(item, idx) in orderInfo.products" :data="item"></UiGoodsInfo>
|
|
|
|
|
</UiWhiteBox>
|
|
|
|
|
<UiWhiteBox class="company">
|
|
|
|
|
<UiWhiteBox class="company" v-if="orderInfo.orderType !== ORDER_TYPE.VIRTUAL">
|
|
|
|
|
<text class="company--name">{{orderInfo.companyName}}</text>
|
|
|
|
|
<view class="company--no">
|
|
|
|
|
<text>{{orderInfo.trackingNo}}</text>
|
|
|
|
@ -38,10 +38,12 @@ import UiGoodsInfo from '@/components/UiGoodsInfo.vue'
|
|
|
|
|
import UiWhiteBox from '@/components/UiWhiteBox.vue'
|
|
|
|
|
import {ApiGetOrderLogistics} from '@/common/api/order';
|
|
|
|
|
import UiCopy from '../../components/UiCopy.vue';
|
|
|
|
|
import {ORDER_TYPE} from '@/common/dicts/order';
|
|
|
|
|
export default {
|
|
|
|
|
components: { UiWhiteBox, UiGoodsInfo, UiCopy },
|
|
|
|
|
data(){
|
|
|
|
|
return {
|
|
|
|
|
ORDER_TYPE,
|
|
|
|
|
orderInfo : {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|