|
@ -6,20 +6,20 @@ |
|
|
</el-card> |
|
|
</el-card> |
|
|
<div class="table-container"> |
|
|
<div class="table-container"> |
|
|
<el-table ref="deliverOrderTable" |
|
|
<el-table ref="deliverOrderTable" |
|
|
style="width: 100%;" |
|
|
style="margin-left: 20px;width: 95%;" |
|
|
:data="list" border> |
|
|
:data="list" border> |
|
|
<el-table-column label="订单编号" width="180" align="center"> |
|
|
<el-table-column label="订单编号" width="200" align="center"> |
|
|
<template slot-scope="scope">{{scope.row.orderSn}}</template> |
|
|
<template slot-scope="scope">{{scope.row.orderSn}}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="收货人" width="180" align="center"> |
|
|
<el-table-column label="收货人" width="120" align="center"> |
|
|
<template slot-scope="scope">{{scope.row.receiverName}}</template> |
|
|
<template slot-scope="scope">{{scope.row.receiverName}}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="手机号码" width="160" align="center"> |
|
|
<el-table-column label="手机号码" width="160" align="center"> |
|
|
<template slot-scope="scope">{{scope.row.receiverPhone}}</template> |
|
|
<template slot-scope="scope">{{scope.row.receiverPhone}}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="邮政编码" width="160" align="center"> |
|
|
<!-- <el-table-column label="邮政编码" width="160" align="center"> |
|
|
<template slot-scope="scope">{{scope.row.receiverPostCode}}</template> |
|
|
<template slot-scope="scope">{{scope.row.receiverPostCode}}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> --> |
|
|
<el-table-column label="收货地址" align="center"> |
|
|
<el-table-column label="收货地址" align="center"> |
|
|
<template slot-scope="scope">{{scope.row.address}}</template> |
|
|
<template slot-scope="scope">{{scope.row.address}}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
@ -36,7 +36,7 @@ |
|
|
</el-select> |
|
|
</el-select> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="物流单号" width="180" align="center"> |
|
|
<el-table-column label="物流单号" width="200" align="center"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-input size="small" v-model="scope.row.deliverySn"></el-input> |
|
|
<el-input size="small" v-model="scope.row.deliverySn"></el-input> |
|
|
</template> |
|
|
</template> |
|
@ -62,6 +62,7 @@ |
|
|
}, |
|
|
}, |
|
|
created(){ |
|
|
created(){ |
|
|
this.list= this.$route.query.list; |
|
|
this.list= this.$route.query.list; |
|
|
|
|
|
console.log("list", this.list) |
|
|
}, |
|
|
}, |
|
|
methods:{ |
|
|
methods:{ |
|
|
cancel(){ |
|
|
cancel(){ |
|
|