|
@@ -161,9 +161,19 @@
|
|
|
<el-col :span="6" class="table-cell">{{
|
|
|
order.receiverPostCode
|
|
|
}}</el-col>
|
|
|
- <el-col :span="6" class="table-cell">{{
|
|
|
- order | formatAddress
|
|
|
- }}</el-col>
|
|
|
+ <el-col :span="6" class="table-cell">
|
|
|
+ <el-tooltip
|
|
|
+ class="item"
|
|
|
+ effect="dark"
|
|
|
+ :content="formatAddresss(order)"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <p class="address">{{ formatAddresss(order)}}</p>
|
|
|
+
|
|
|
+ </el-tooltip>
|
|
|
+
|
|
|
+ </el-col
|
|
|
+ >
|
|
|
</el-row>
|
|
|
</div>
|
|
|
<div style="margin-top: 20px">
|
|
@@ -517,7 +527,7 @@ export default {
|
|
|
messageDialogVisible: false,
|
|
|
message: { title: null, content: null },
|
|
|
closeDialogVisible: false,
|
|
|
- closeInfo: { note: '', id: '' },
|
|
|
+ closeInfo: { note: "", id: "" },
|
|
|
markOrderDialogVisible: false,
|
|
|
markInfo: { note: null },
|
|
|
logisticsDialogVisible: false,
|
|
@@ -626,6 +636,16 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
+ formatAddresss(order) {
|
|
|
+ let str = order.receiverProvince;
|
|
|
+ if (order.receiverCity != null) {
|
|
|
+ str += " " + order.receiverCity;
|
|
|
+ }
|
|
|
+ str += " " + order.receiverRegion;
|
|
|
+ str += " " + order.receiverDetailAddress;
|
|
|
+ console.log('str',str)
|
|
|
+ return str;
|
|
|
+ },
|
|
|
onSelectRegion(data) {
|
|
|
this.receiverInfo.receiverProvince = data.province.value;
|
|
|
this.receiverInfo.receiverCity = data.city.value;
|
|
@@ -730,7 +750,7 @@ export default {
|
|
|
},
|
|
|
showCloseOrderDialog() {
|
|
|
this.closeDialogVisible = true;
|
|
|
- this.closeInfo.note = '';
|
|
|
+ this.closeInfo.note = "";
|
|
|
this.closeInfo.id = this.id;
|
|
|
},
|
|
|
handleCloseOrder() {
|
|
@@ -761,7 +781,7 @@ export default {
|
|
|
showMarkOrderDialog() {
|
|
|
this.markOrderDialogVisible = true;
|
|
|
this.markInfo.id = this.id;
|
|
|
- this.markInfo.note = '';
|
|
|
+ this.markInfo.note = "";
|
|
|
},
|
|
|
handleMarkOrder() {
|
|
|
this.$confirm("是否要备注订单?", "提示", {
|
|
@@ -773,7 +793,11 @@ export default {
|
|
|
// params.append("id", this.markInfo.id);
|
|
|
// params.append("note", this.markInfo.note);
|
|
|
// params.append("status", this.order.status);
|
|
|
- let obj = {id:this.markInfo.id,note:this.markInfo.note,status:this.order.status}
|
|
|
+ let obj = {
|
|
|
+ id: this.markInfo.id,
|
|
|
+ note: this.markInfo.note,
|
|
|
+ status: this.order.status,
|
|
|
+ };
|
|
|
updateOrderNote(obj).then((response) => {
|
|
|
this.markOrderDialogVisible = false;
|
|
|
this.$message({
|
|
@@ -794,7 +818,7 @@ export default {
|
|
|
}).then(() => {
|
|
|
// let params = new URLSearchParams();
|
|
|
// params.append("ids", [this.id]);
|
|
|
- let obj = {ids:this.id}
|
|
|
+ let obj = { ids: this.id };
|
|
|
deleteOrder(obj).then((response) => {
|
|
|
this.$message({
|
|
|
message: "删除成功!",
|
|
@@ -857,6 +881,13 @@ export default {
|
|
|
font-size: 14px;
|
|
|
color: #303133;
|
|
|
}
|
|
|
+
|
|
|
+.address {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
</style>
|
|
|
|
|
|
|