withdraw_add.html 1.3 KB

123456789101112131415161718192021222324
  1. <div class="eject_con">
  2. <div id="warning" class="alert alert-error"></div>
  3. <form method="post" id="cash_form" action="{:url('Sellermoney/withdraw_add')}">
  4. <dl>
  5. <dt><i class="required">*</i>{$Think.lang.sellermoney_withdraw_money}:</dt>
  6. <dd><input name="pdc_amount" type="text" class="text w50" id="pdc_amount" maxlength="10" ><em class="add-on">
  7. <i class="iconfont">&#xe65c;</i></em> ({$Think.lang.sellermoney_avaliable_money}:<strong class="orange">{:floatval($store_info.store_avaliable_money)}</strong>&nbsp;&nbsp;{$Think.lang.ds_yuan})<span></span>
  8. <p class="hint mt5">{$Think.lang.sellermoney_withdraw_cycle}{$store_withdraw_cycle}{$Think.lang.day},{$Think.lang.sellermoney_withdraw_min}{$store_withdraw_min}{$Think.lang.ds_yuan},{$Think.lang.sellermoney_withdraw_max}{$store_withdraw_max}{$Think.lang.ds_yuan}</p>
  9. </dd>
  10. </dl>
  11. <div class="bottom">
  12. <input type="submit" class="submit" value="{$Think.lang.ds_submit}" />
  13. </div>
  14. </form>
  15. </div>
  16. <script>
  17. $(document).ready(function(){
  18. $('#cash_form').validate({
  19. submitHandler:function(form){
  20. ds_ajaxpost('cash_form');
  21. }
  22. });
  23. });
  24. </script>