table.hbs
1.36 KB
<div class="address-table">
<span class="blue table-title">已保存了3条地址,还能保存17条地址</span>
<table class="a-table">
<tr class="table-head">
<th class="width-80">收货人</th>
<th class="width-195">所在区域</th>
<th class="width-280">详细地址</th>
<th class="width-120">手机/电话</th>
<th class="width-260">操作</th>
</tr>
{{#each data}}
<tr class="table-body">
<td class="width-80">{{consignee}}</td>
<td class="width-195">{{address}}</td>
<td class="width-280">{{address}}</td>
<td class="width-120">{{mobile}}</td>
<td class="width-260">
<div>
<span class="blue opreation">修改</span>
|
<span class="blue opreation del-address" data-id="{{address_id}}">删除</span>
{{#if default}}
<span class="btn set-default opreation">默认地址</span>
{{else}}
<span class="btn set-default opreation" data-id="{{address_id}}">设为默认</span>
{{/if}}
</div>
</td>
</tr>
{{/each}}
</table>
</div>