Blame view

doraemon/views/partial/order/order.hbs 565 Bytes
郭成尧 authored
1 2 3 4 5 6 7
<div class="order" data-id="{{orderNum}}" data-href="{{detailUrl}}">
    <header class="header">
        订单编号:{{orderNum}}
        <span class="order-status">{{orderStatus}}</span>
    </header>
    <section class="order-goods">
        {{# goods}}
8
            {{> order/good}}
郭成尧 authored
9 10 11 12 13 14 15
        {{/ goods}}
    </section>
    <footer class="footer">
{{count}}件商品  实付<span class="sum-cost">¥{{sumCost}}</span>
        {{#shippingCost}}(含运费¥{{.}}){{/shippingCost}}
    </footer>
郝肖肖 authored
16 17
    {{!--按钮组--}}
    {{> order/order-btns}}
郭成尧 authored
18
</div>