withdraw_list.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_store_money}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <form method="get" id="formSearch">
  13. <div class="ds-search-form">
  14. <dl>
  15. <dt>{$Think.lang.admin_storemoney_recordstate}</dt>
  16. <dd>
  17. <select id="paystate_search" name="paystate_search">
  18. <option value="">{$Think.lang.ds_please_choose}</option>
  19. <option value="2" {if condition="$Request.param.paystate_search eq '2'"}selected="selected"{/if}>{$Think.lang.admin_storemoney_wait}</option>
  20. <option value="3" {if condition="$Request.param.paystate_search eq '3'"}selected="selected"{/if}>{$Think.lang.admin_storemoney_agree}</option>
  21. <option value="4" {if condition="$Request.param.paystate_search eq '4'"}selected="selected"{/if}>{$Think.lang.admin_storemoney_reject}</option>
  22. </select>
  23. </dd>
  24. </dl>
  25. <div class="btn_group">
  26. <a href="javascript:document.getElementById('formSearch').submit();" class="btn " title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
  27. {if $filtered}
  28. <a href="{:url('Storemoney/withdraw_list')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  29. {/if}
  30. </div>
  31. </div>
  32. </form>
  33. <table class="ds-default-table">
  34. <thead>
  35. <tr class="thead">
  36. <th>&nbsp;</th>
  37. <th>{$Think.lang.admin_storemoney_membername}</th>
  38. <th class="align-center">{$Think.lang.admin_storemoney_apptime}</th>
  39. <th class="align-center">{$Think.lang.admin_storemoney_cash_price}({$Think.lang.ds_yuan})</th>
  40. <th class="align-center">{$Think.lang.admin_storemoney_cash_shoukuanaccount}</th>
  41. <th class="align-center">{$Think.lang.admin_storemoney_recordstate}</th>
  42. <th class="align-center">{$Think.lang.ds_handle}</th>
  43. </tr>
  44. </thead>
  45. <tbody>
  46. {notempty name="withdraw_list"}
  47. {foreach name="withdraw_list" item="v" key="k" }
  48. <tr class="hover">
  49. <td class="w12">&nbsp;</td>
  50. <td>{$v.store_name}</td>
  51. <td class="nowrap align-center">{notempty name="$v.storemoneylog_add_time"}{$v.storemoneylog_add_time|date='Y-m-d H:i:s'}{/notempty}</td>
  52. <td class="align-center">{$v.store_freeze_money}</td>
  53. <td class="align-center">{$v.storemoneylog_desc}</td>
  54. <td class="align-center">{if $v.storemoneylog_state==2}{$Think.lang.admin_storemoney_wait}{elseif $v.storemoneylog_state==3}{$Think.lang.admin_storemoney_agree}{elseif $v.storemoneylog_state==4}{$Think.lang.admin_storemoney_reject}{/if}</td>
  55. <td class="w90 align-center">
  56. {if $v.storemoneylog_state==2}
  57. <a href="javascript:dsLayerOpen('{:url('Storemoney/withdraw_view',['id'=>$v.storemoneylog_id])}','{$Think.lang.ds_verify}')" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_verify}</a>
  58. {/if}
  59. </td>
  60. </tr>
  61. {/foreach}
  62. {else /}
  63. <tr class="no_data">
  64. <td colspan="10">{$Think.lang.ds_no_record}</td>
  65. </tr>
  66. {/notempty}
  67. </tbody>
  68. </table>
  69. {$show_page|raw}
  70. </div>
  71. <script language="javascript">
  72. $(function(){
  73. $('#stime').datepicker({dateFormat: 'yy-mm-dd'});
  74. $('#etime').datepicker({dateFormat: 'yy-mm-dd'});
  75. });
  76. </script>