...
|
...
|
@@ -12,6 +12,7 @@ |
|
|
共{{count}}件商品 实付<span class="sum-cost">¥{{sumCost}}</span>
|
|
|
</footer>
|
|
|
|
|
|
{{!-- 对应订单状态的操作逻辑 --}}
|
|
|
{{#if unpaid}}
|
|
|
<div class="order-opt">
|
|
|
<span class="btn cancel">取消订单</span>
|
...
|
...
|
@@ -24,4 +25,22 @@ |
|
|
<a class="check-logistics" href="{{.}}">查看物流</a>
|
|
|
</div>
|
|
|
{{/with}}
|
|
|
|
|
|
{{#with unshipped}}
|
|
|
<div class="order-opt">
|
|
|
<a class="check-logistics" href="{{.}}">查看物流</a>
|
|
|
</div>
|
|
|
{{/with}}
|
|
|
|
|
|
{{#if canceled}}
|
|
|
<div class="order-opt">
|
|
|
<span class="btn del">删除订单</span>
|
|
|
</div>
|
|
|
{{/if}}
|
|
|
|
|
|
{{#if completed}}
|
|
|
<div class="order-opt">
|
|
|
<span class="btn del">删除订单</span>
|
|
|
</div>
|
|
|
{{/if}}
|
|
|
</div> |
|
|
\ No newline at end of file |
...
|
...
|
|