1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {extend name='admin@main'}
- {block name="button"}
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='order/index_search'}
- <table class="layui-table" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'>
- <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
- </th>
- <th class='text-left nowrap'>账单月份</th>
- <th class='text-left nowrap'>账单年份</th>
- <th class='text-left nowrap'>微信昵称</th>
- <th class='text-left nowrap'>客户姓名</th>
- <th class='text-left nowrap'>银行</th>
- <th class='text-left nowrap'>账单编号</th>
- <th class='text-left nowrap'>状态</th>
- <th class='text-left nowrap'>支付时间</th>
- <th class='text-left nowrap'>需支付金额</th>
- <th class='text-left nowrap'>账单日</th>
- <th class='text-left nowrap'>还款日</th>
- <th class='text-left nowrap'>实际还款额度</th>
- <th class='text-left nowrap'>未刷出金额</th>
- <th class='text-left nowrap'>未刷出原因</th>
- <th class='text-left nowrap'>账单时间</th>
- <th class='text-left nowrap'></th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr data-dbclick>
- <td class='list-table-check-td think-checkbox'>
- <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
- </td>
- <td class='text-left nowrap'>{$vo.year|default='-'}年</td>
- <td class='text-left nowrap'>{$vo.month|default='-'}月</td>
- <td class='text-left nowrap'>{$vo.nickname|default='-'}</td>
- <td class='text-left nowrap'>{$vo.realname|default='-'}</td>
- <td class='text-left nowrap'>{$vo.bank_name|default='-'}</td>
- <td class='text-left nowrap'>{$vo.order_no|default='-'}</td>
- <td class='text-left nowrap'>{if $vo.is_pay == 1}已支付{else/}未支付{/if}</td>
- <td class='text-left nowrap'>{$vo.pay_time|default='-'}</td>
- <td class='text-left nowrap'>{$vo.money|default='-'}</td>
- <td class='text-left nowrap'>{$vo.Billing_day|default='-'}</td>
- <td class='text-left nowrap'>{$vo.Repayment_day|default='-'}</td>
- <td class='text-left nowrap'>{$vo.actual_repayment|default='-'}</td>
- <td class='text-left nowrap'>{$vo.money|default='-'}</td>
- <td class='text-left nowrap'>{$vo.remarks|default='-'}</td>
- <td class='text-left nowrap'>{$vo.create_at|default='-'}</td>
- <td class='text-left nowrap'>
- {if auth("remove")}
- <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该账单吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|