pdlog_list.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_predeposit}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <div class="explanation" id="explanation">
  13. <div class="title" id="checkZoom">
  14. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  15. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  16. </div>
  17. <ul>
  18. <li>{$Think.lang.admin_predeposit_cash_help1}</li>
  19. <li>{$Think.lang.admin_predeposit_cash_help2}</li>
  20. </ul>
  21. </div>
  22. <form method="get" name="formSearch">
  23. <div class="ds-search-form">
  24. <dl>
  25. <dt>{$Think.lang.admin_predeposit_membername}</dt>
  26. <dd><input type="text" name="mname" class="txt" value='{$Request.param.mname}'></dd>
  27. </dl>
  28. <dl>
  29. <dt>{$Think.lang.admin_predeposit_maketime}</dt>
  30. <dd><input type="text" id="stime" name="stime" class="txt date" value="{$Request.param.stime}" >
  31. ~
  32. <input type="text" id="etime" name="etime" class="txt date" value="{$Request.param.etime}" >
  33. </dd>
  34. </dl>
  35. <dl>
  36. <dt>{$Think.lang.admin_predeposit_adminname}</dt>
  37. <dd><input type="text" name="aname" class="txt" value='{$Request.param.aname}'></dd>
  38. </dl>
  39. <div class="btn_group">
  40. <a href="javascript:document.formSearch.submit();" class="btn " title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
  41. {if $filtered}
  42. <a href="{:url('Pdlog_list')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  43. {/if}
  44. <a class="btn btn-mini" href="javascript:export_xls('{:url('Predeposit/export_mx_step1')}')"><span>{$Think.lang.ds_export}Excel</span></a>
  45. </div>
  46. </div>
  47. </form>
  48. <table class="ds-default-table">
  49. <thead>
  50. <tr class="thead">
  51. <th>{$Think.lang.admin_predeposit_membername}</th>
  52. <th class="align-center">{$Think.lang.admin_predeposit_changetime}</th>
  53. <th>{$Think.lang.admin_predeposit_pricetype_available}({$Think.lang.ds_yuan})</th>
  54. <th>{$Think.lang.admin_predeposit_pricetype_freeze}({$Think.lang.ds_yuan})</th>
  55. <th>{$Think.lang.admin_predeposit_log_desc}</th>
  56. </tr>
  57. </thead>
  58. <tbody>
  59. {notempty name="list_log"}
  60. {foreach name="list_log" item="v" key="k" }
  61. <tr class="hover">
  62. <td>{$v.lg_member_name}</td>
  63. <td class="nowarp align-center">{notempty name="$v.lg_addtime"}{$v.lg_addtime|date='Y-m-d H:i:s'}{/notempty}</td>
  64. <td><?php echo floatval($v['lg_av_amount']) ? (floatval($v['lg_av_amount']) > 0 ? '+' : null ).$v['lg_av_amount'] : null;?></td>
  65. <td><?php echo floatval($v['lg_freeze_amount']) ? (floatval($v['lg_freeze_amount']) > 0 ? '+' : null ).$v['lg_freeze_amount'] : null;?></td>
  66. <td>{$v.lg_desc}
  67. {notempty name="$v.lg_admin_name"}
  68. ( {$Think.lang.admin_predeposit_adminname} {$v.lg_admin_name} )
  69. {/notempty}
  70. </td>
  71. </tr>
  72. {/foreach}
  73. {else /}
  74. <tr class="no_data">
  75. <td colspan="10">{$Think.lang.ds_no_record}</td>
  76. </tr>
  77. {/notempty}
  78. </tbody>
  79. </table>
  80. {$show_page|raw}
  81. </div>
  82. <script language="javascript">
  83. $(function() {
  84. $('#stime').datepicker({dateFormat: 'yy-mm-dd'});
  85. $('#etime').datepicker({dateFormat: 'yy-mm-dd'});
  86. });
  87. </script>