Commit 1e07fa26 authored by yaya's avatar yaya

feat: 中转单添加快递单号展示

parent 1ec53d30
......@@ -71,6 +71,16 @@
<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="fromWaybill">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.fromWaybill || '-'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="平台鉴定结果" prop="approved">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.approved === 1 ? '通过' : scope.row.approved === 0 ? '不通过' : '-'}` }}</span>
......
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