Showing
2 changed files
with
3 additions
and
2 deletions
@@ -34,7 +34,8 @@ exports.handleOrderList = (data, w, h) => { | @@ -34,7 +34,8 @@ exports.handleOrderList = (data, w, h) => { | ||
34 | color: good.colorName, | 34 | color: good.colorName, |
35 | size: good.sizeName, | 35 | size: good.sizeName, |
36 | count: good.buyNumber, | 36 | count: good.buyNumber, |
37 | - price: good.lastPrice | 37 | + price: good.lastPrice, |
38 | + tariffPrice: good.tariffPrice | ||
38 | }; | 39 | }; |
39 | }); | 40 | }); |
40 | order.count = order.ordersGoodsBoList.reduce((sum, good) => { | 41 | order.count = order.ordersGoodsBoList.reduce((sum, good) => { |
@@ -33,7 +33,7 @@ | @@ -33,7 +33,7 @@ | ||
33 | </p> | 33 | </p> |
34 | <p class="row price-wrap"> | 34 | <p class="row price-wrap"> |
35 | <span class="price"> | 35 | <span class="price"> |
36 | - ¥{{price}} | 36 | + ¥{{price}}{{#if tariffPrice}} 税费: ¥{{tariffPrice}}{{/if}} |
37 | </span> | 37 | </span> |
38 | <span class="count"> | 38 | <span class="count"> |
39 | ×{{count}} | 39 | ×{{count}} |
-
Please register or login to post a comment