Commit 4b9b0440 authored by liwei's avatar liwei

liwei

parent 7ba51427
...@@ -120,6 +120,21 @@ export default { ...@@ -120,6 +120,21 @@ export default {
} }
if (!this.deliverDetail && !this.noDeliverDetail) { if (!this.deliverDetail && !this.noDeliverDetail) {
this.isShowAddress = false; this.isShowAddress = false;
} else if (
!this.deliverDetail &&
this.noDeliverDetail.length == 0
) {
this.isShowAddress = false;
} else if (
this.deliverDetail.length == 0 &&
!this.noDeliverDetail
) {
this.isShowAddress = false;
} else if (
this.deliverDetail.length == 0 &&
this.noDeliverDetail.length == 0
) {
this.isShowAddress = false;
} else { } else {
this.isShowAddress = true; this.isShowAddress = true;
} }
......
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