Commit f9dcf505 authored by xiami's avatar xiami

新增换藏bugfix

parent a872d1de
......@@ -111,17 +111,29 @@
</template>
</el-table-column> -->
<el-table-column align="center" label="订单状态" prop="stateName" />
<el-table-column align="center" label="中转状态" prop="transferStateName" >
<!-- <el-table-column align="center" label="中转状态" prop="transferStateName" >
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.transferStateName || '-'}` }}</span>
</template>
</el-table-column> -->
<el-table-column align="center" label="用户寄出物流公司" prop="fromLogisticsName">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.fromLogisticsName || '-'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="物流公司" prop="logisticsName">
<el-table-column align="center" label="用户寄出快递单号" prop="fromWaybill">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.fromWaybill || '-'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="平台寄出物流公司" prop="logisticsName">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.logisticsName || '-'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="快递单号" prop="waybill">
<el-table-column align="center" label="平台寄出快递单号" prop="waybill">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.waybill || '-'}` }}</span>
</template>
......@@ -194,6 +206,9 @@ export default {
}, {
value: 6,
label: '待换货'
}, {
value: 8,
label: '待验货'
}],
listLoading: true,
listQuery: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment