index.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <form id="form" action="{:url('popupshop/config/index')}">
  2. <div class="titlebar"><i class="iconfont icon-line-chart_icon"></i>会员配置</div>
  3. <table class="formtable">
  4. <tr><th>提现方式:</th><td>
  5. <select datatype="*" class="select w180" name="is_wechat_touser">
  6. <option value="0"{if $info.is_wechat_touser == 0} selected{/if}>转账到卡号</option>
  7. <option value="1"{if $info.is_wechat_touser == 1} selected{/if}>付款到零钱</option>
  8. </select>
  9. <span class="gray">是否允许使用您的帐号余额来支付</span>
  10. </td></tr>
  11. <tr><th>提现手续费:</th><td>
  12. <input class="input" datatype="n" type="text" name="tax" value="{$info.tax}" /> (%)
  13. <span class="gray">公式:【 实际提现金额 - 实际提现金额*手续费 】 </span>
  14. </td></tr>
  15. <tr><th>交易服务费:</th><td>
  16. <input class="input" datatype="n" type="text" name="profit" value="{$info.profit}" /> (%)
  17. <span class="gray">单件商品成交利润率.<span class="fn-f12">商品成交价-商品成本价-交易服务费=利润</span></span><br />
  18. </td></tr>
  19. </table>
  20. <div class="titlebar"><i class="iconfont icon-money_icon"></i>提现规则</div>
  21. <table class="formtable">
  22. <tr><th>提现周期(天):</th><td>
  23. <input class="input" datatype="n" type="text" name="cycle" value="{$info.cycle}" /> 天
  24. <span class="gray">每一次申请提现到账间隔天数</span>
  25. </td></tr>
  26. <tr><th>提现限额(元):</th><td>
  27. <input class="input" datatype="n" type="text" name="lack_cash" value="{$info.lack_cash}" />(¥)
  28. <span class="gray">应付金额最少多少钱的时候才允许提现</span>
  29. </td></tr>
  30. <tr><th>限制委托(天)</th><td>
  31. <input class="input" datatype="n" type="text" name="lock_sale_day" value="{$info.lock_sale_day}" />
  32. <span class="gray">新委托寄卖的商品,如到期未寄卖成功,将会自动转换为下架发货商品</span>
  33. </td></tr>
  34. </table>
  35. <div class="titlebar"><i class="iconfont icon-weixinzhifu"></i>购买规则</div>
  36. <table class="formtable">
  37. <tr><th>推荐绩效(人):</th><td>
  38. <input class="input" datatype="n" type="text" name="num_referee_people" value="{$info.num_referee_people}" />
  39. <span class="gray">每推荐N个人允许抢购(人数/N=单),0不限制</span>
  40. </td></tr>
  41. <tr><th></th>
  42. <td>
  43. <input type="submit" value="确定" class="button button-blue submit" />
  44. <input type="reset" value="重置" class="button button-blank" />
  45. </td>
  46. </tr>
  47. </table>
  48. </form>
  49. <script type="text/javascript">
  50. Do('base', 'layer', 'form', function () {
  51. $('#form').isForm();
  52. })
  53. </script>