|
|
@@ -63,7 +63,7 @@
|
|
|
<div class="box-buttom">
|
|
|
<div class="box-buttom-con">
|
|
|
<p>邮费</p>
|
|
|
- <p class="box-buttom-p">¥10</p>
|
|
|
+ <p class="box-buttom-p">¥{{ postage || 0 }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-buttom">
|
|
|
@@ -106,6 +106,7 @@ export default {
|
|
|
cardCaseInfo: {},
|
|
|
total: '',
|
|
|
message: '',
|
|
|
+ postage: {},
|
|
|
store: {}
|
|
|
};
|
|
|
},
|
|
|
@@ -167,6 +168,7 @@ export default {
|
|
|
this.total = res.total;
|
|
|
this.store = res.store;
|
|
|
this.Boxes = res.selectedBoxes;
|
|
|
+ this.postage = res.selectedCase.postage;
|
|
|
this.cardCaseInfo = res.selectedCase.collection;
|
|
|
})
|
|
|
.catch(e => {
|