Commit e5975af9 authored by honghy's avatar honghy Committed by wux

控货详情列表调整

parent c6cb7019
...@@ -102,9 +102,25 @@ ...@@ -102,9 +102,25 @@
<el-table-column :label="$t('序号')" width="50px"> <el-table-column :label="$t('序号')" width="50px">
<template slot-scope="scope">{{ scope.$index + 1 }}</template> <template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('订单号')" prop="orderNo" width="120px"/> <el-table-column :label="$t('订单号')" prop="orderNo" width="120px">
<el-table-column :label="$t('发货人编号')" prop="consignerNumber" width="90px"/> <template slot-scope="scope">
<el-table-column :label="$t('收货人编号')" prop="consigneeNumber" width="90px"/> <router-link :to="`detail?orderId=` + scope.row.orderId">{{ scope.row.orderNo }}</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('发货人编号')" prop="consignerNumber" width="90px">
<template slot-scope="{ row }">
<router-link :to="`/customer/query/${row.consignerId}`" class="link-type">
{{ row.consignerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('收货人编号')" prop="consigneeNumber" width="90px">
<template slot-scope="{ row }">
<router-link :to="`/customer/query/${row.consigneeId}`" class="link-type">
{{ row.consigneeNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('收货人')" prop="consigneeName" width="120px"/> <el-table-column :label="$t('收货人')" prop="consigneeName" width="120px"/>
<el-table-column :label="$t('收货人电话')" prop="consigneePhone" width="140px"> <el-table-column :label="$t('收货人电话')" prop="consigneePhone" width="140px">
......
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