checked-invoice-show.hbs 470 Bytes
<div class="invoice-radio">
    {{#if checked}}
        <span class="iconfont radio checked">&#xe603;</span>
    {{^}}
        <span class="iconfont radio">&#xe604;</span>
    {{/if}}
    <label>发票开具</label>
</div>
{{#if invoiceTitle}}
    <p class="invoice-detail" data-title="{{invoiceTitle}}" data-content="{{content}}">
        <em>{{invoiceTitle}}</em><em>{{invoiceContent}}</em>
        <span class="modify-invoice btn white">修改</span>
    </p>
{{/if}}