|
@@ -64,7 +64,9 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="common-text">
|
|
<div class="common-text">
|
|
|
<el-text>电 话:</el-text>
|
|
<el-text>电 话:</el-text>
|
|
|
- <el-text v-if="!isShowPhone">{{ formatPhone(detail.sendMobile) }}</el-text>
|
|
|
|
|
|
|
+ <el-text v-if="!isShowPhone">{{
|
|
|
|
|
+ formatPhone(detail.sendMobile)
|
|
|
|
|
+ }}</el-text>
|
|
|
<el-text v-else>{{ detail.sendMobile }}</el-text>
|
|
<el-text v-else>{{ detail.sendMobile }}</el-text>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="common-text">
|
|
<div class="common-text">
|
|
@@ -173,6 +175,12 @@
|
|
|
formatter: (row) =>
|
|
formatter: (row) =>
|
|
|
typeof row.finalMoney == 'number' ? '¥' + row.finalMoney : '待核算'
|
|
typeof row.finalMoney == 'number' ? '¥' + row.finalMoney : '待核算'
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '快递重量',
|
|
|
|
|
+ prop: 'chargeWeight',
|
|
|
|
|
+ width: 120,
|
|
|
|
|
+ formatter: (row) => row.chargeWeight ? row.chargeWeight + 'kg' : '-'
|
|
|
|
|
+ },
|
|
|
{ label: '下单时间', prop: 'orderTime', slot: 'orderTime', width: 200 },
|
|
{ label: '下单时间', prop: 'orderTime', slot: 'orderTime', width: 200 },
|
|
|
{ label: '交易状态', prop: 'status', slot: 'status', width: 240 }
|
|
{ label: '交易状态', prop: 'status', slot: 'status', width: 240 }
|
|
|
]);
|
|
]);
|