完善订单列表
This commit is contained in:
2023-03-04 16:49:12 +08:00
parent 30e80a3721
commit c753039b19
6 changed files with 3895 additions and 3216 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -131,7 +131,7 @@ a:hover {
}
//操作栏样式
.operate-container {
margin-top: 20px;
// margin-top: 20px;
}
.operate-container .btn-add {

View File

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff