index.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {extend name='admin@main'}
  2. {block name="button"}
  3. {/block}
  4. {block name="content"}
  5. <div class="think-box-shadow">
  6. {include file='order/index_search'}
  7. <table class="layui-table" lay-skin="line">
  8. {notempty name='list'}
  9. <thead>
  10. <tr>
  11. <th class='list-table-check-td think-checkbox'>
  12. <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
  13. </th>
  14. <th class='text-left nowrap'>账单月份</th>
  15. <th class='text-left nowrap'>账单年份</th>
  16. <th class='text-left nowrap'>微信昵称</th>
  17. <th class='text-left nowrap'>客户姓名</th>
  18. <th class='text-left nowrap'>银行</th>
  19. <th class='text-left nowrap'>账单编号</th>
  20. <th class='text-left nowrap'>状态</th>
  21. <th class='text-left nowrap'>支付时间</th>
  22. <th class='text-left nowrap'>需支付金额</th>
  23. <th class='text-left nowrap'>账单日</th>
  24. <th class='text-left nowrap'>还款日</th>
  25. <th class='text-left nowrap'>实际还款额度</th>
  26. <th class='text-left nowrap'>未刷出金额</th>
  27. <th class='text-left nowrap'>未刷出原因</th>
  28. <th class='text-left nowrap'>账单时间</th>
  29. <th class='text-left nowrap'></th>
  30. </tr>
  31. </thead>
  32. {/notempty}
  33. <tbody>
  34. {foreach $list as $key=>$vo}
  35. <tr data-dbclick>
  36. <td class='list-table-check-td think-checkbox'>
  37. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  38. </td>
  39. <td class='text-left nowrap'>{$vo.year|default='-'}年</td>
  40. <td class='text-left nowrap'>{$vo.month|default='-'}月</td>
  41. <td class='text-left nowrap'>{$vo.nickname|default='-'}</td>
  42. <td class='text-left nowrap'>{$vo.realname|default='-'}</td>
  43. <td class='text-left nowrap'>{$vo.bank_name|default='-'}</td>
  44. <td class='text-left nowrap'>{$vo.order_no|default='-'}</td>
  45. <td class='text-left nowrap'>{if $vo.is_pay == 1}已支付{else/}未支付{/if}</td>
  46. <td class='text-left nowrap'>{$vo.pay_time|default='-'}</td>
  47. <td class='text-left nowrap'>{$vo.money|default='-'}</td>
  48. <td class='text-left nowrap'>{$vo.Billing_day|default='-'}</td>
  49. <td class='text-left nowrap'>{$vo.Repayment_day|default='-'}</td>
  50. <td class='text-left nowrap'>{$vo.actual_repayment|default='-'}</td>
  51. <td class='text-left nowrap'>{$vo.money|default='-'}</td>
  52. <td class='text-left nowrap'>{$vo.remarks|default='-'}</td>
  53. <td class='text-left nowrap'>{$vo.create_at|default='-'}</td>
  54. <td class='text-left nowrap'>
  55. {if auth("remove")}
  56. <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>
  57. {/if}
  58. </td>
  59. </tr>
  60. {/foreach}
  61. </tbody>
  62. </table>
  63. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  64. </div>
  65. {/block}