withdraw_list.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_deposit}</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_storedeposit_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_storedeposit_wait}</option>
  20. <option value="3" {if condition="$Request.param.paystate_search eq '3'"}selected="selected"{/if}>{$Think.lang.admin_storedeposit_agree}</option>
  21. <option value="4" {if condition="$Request.param.paystate_search eq '4'"}selected="selected"{/if}>{$Think.lang.admin_storedeposit_reject}</option>
  22. <option value="5" {if condition="$Request.param.paystate_search eq '5'"}selected="selected"{/if}>{$Think.lang.admin_storedeposit_payed}</option>
  23. <option value="6" {if condition="$Request.param.paystate_search eq '6'"}selected="selected"{/if}>{$Think.lang.admin_storedeposit_cancel}</option>
  24. <option value="7" {if condition="$Request.param.paystate_search eq '7'"}selected="selected"{/if}>{$Think.lang.admin_storedeposit_paying}</option>
  25. </select>
  26. </dd>
  27. </dl>
  28. <div class="btn_group">
  29. <a href="javascript:document.getElementById('formSearch').submit();" class="btn " title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
  30. {if $filtered}
  31. <a href="{:url('Storedeposit/withdraw_list')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  32. {/if}
  33. </div>
  34. </div>
  35. </form>
  36. <table class="ds-default-table">
  37. <thead>
  38. <tr class="thead">
  39. <th>&nbsp;</th>
  40. <th>{$Think.lang.admin_storedeposit_membername}</th>
  41. <th class="align-center">{$Think.lang.admin_storedeposit_apptime}</th>
  42. <th class="align-center">{$Think.lang.admin_storedeposit_cash_price}({$Think.lang.ds_yuan})</th>
  43. <th class="align-center">{$Think.lang.admin_storedeposit_cash_shoukuanaccount}</th>
  44. <th class="align-center">{$Think.lang.admin_storedeposit_recordstate}</th>
  45. <th class="align-center">{$Think.lang.ds_handle}</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. {notempty name="withdraw_list"}
  50. {foreach name="withdraw_list" item="v" key="k" }
  51. <tr class="hover">
  52. <td class="w12">&nbsp;</td>
  53. <td>{$v.store_name}</td>
  54. <td class="nowrap align-center">{notempty name="$v.storedepositlog_add_time"}{$v.storedepositlog_add_time|date='Y-m-d H:i:s'}{/notempty}</td>
  55. <td class="align-center">{if $v.storedepositlog_state == '2' || $v.storedepositlog_state == '3' || $v.storedepositlog_state == '4'}{$v.store_freeze_deposit}{else}{$v.store_payable_deposit}{/if}</td>
  56. <td class="align-center">{$v.storedepositlog_desc}</td>
  57. <td class="align-center">{if $v.storedepositlog_state==2}{$Think.lang.admin_storedeposit_wait}{elseif $v.storedepositlog_state==3}{$Think.lang.admin_storedeposit_agree}{elseif $v.storedepositlog_state==4}{$Think.lang.admin_storedeposit_reject}{elseif $v.storedepositlog_state==5}{$Think.lang.admin_storedeposit_payed}{elseif $v.storedepositlog_state==6}{$Think.lang.admin_storedeposit_cancel}{elseif $v.storedepositlog_state==7}{$Think.lang.admin_storedeposit_paying}{/if}</td>
  58. <td class="w90 align-center">
  59. {if $v.storedepositlog_state==2}
  60. <a href="javascript:dsLayerOpen('{:url('Storedeposit/withdraw_view',['id'=>$v.storedepositlog_id])}','{$Think.lang.ds_verify}')" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_verify}</a>
  61. {/if}
  62. {if $v.storedepositlog_state==7}
  63. <a href="javascript:dsLayerOpen('{:url('Storedeposit/recharge_view',['id'=>$v.storedepositlog_id])}','{$Think.lang.ds_handle}')" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_handle}</a>
  64. {/if}
  65. </td>
  66. </tr>
  67. {/foreach}
  68. {else /}
  69. <tr class="no_data">
  70. <td colspan="10">{$Think.lang.ds_no_record}</td>
  71. </tr>
  72. {/notempty}
  73. </tbody>
  74. </table>
  75. {$show_page|raw}
  76. </div>
  77. <script language="javascript">
  78. $(function(){
  79. $('#stime').datepicker({dateFormat: 'yy-mm-dd'});
  80. $('#etime').datepicker({dateFormat: 'yy-mm-dd'});
  81. });
  82. </script>