1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <form id="form" action="{:url('popupshop/config/index')}">
- <div class="titlebar"><i class="iconfont icon-line-chart_icon"></i>会员配置</div>
- <table class="formtable">
- <tr><th>提现方式:</th><td>
- <select datatype="*" class="select w180" name="is_wechat_touser">
- <option value="0"{if $info.is_wechat_touser == 0} selected{/if}>转账到卡号</option>
- <option value="1"{if $info.is_wechat_touser == 1} selected{/if}>付款到零钱</option>
- </select>
- <span class="gray">是否允许使用您的帐号余额来支付</span>
- </td></tr>
- <tr><th>提现手续费:</th><td>
- <input class="input" datatype="n" type="text" name="tax" value="{$info.tax}" /> (%)
- <span class="gray">公式:【 实际提现金额 - 实际提现金额*手续费 】 </span>
- </td></tr>
- <tr><th>交易服务费:</th><td>
- <input class="input" datatype="n" type="text" name="profit" value="{$info.profit}" /> (%)
- <span class="gray">单件商品成交利润率.<span class="fn-f12">商品成交价-商品成本价-交易服务费=利润</span></span><br />
- </td></tr>
- </table>
- <div class="titlebar"><i class="iconfont icon-money_icon"></i>提现规则</div>
- <table class="formtable">
- <tr><th>提现周期(天):</th><td>
- <input class="input" datatype="n" type="text" name="cycle" value="{$info.cycle}" /> 天
- <span class="gray">每一次申请提现到账间隔天数</span>
- </td></tr>
- <tr><th>提现限额(元):</th><td>
- <input class="input" datatype="n" type="text" name="lack_cash" value="{$info.lack_cash}" />(¥)
- <span class="gray">应付金额最少多少钱的时候才允许提现</span>
- </td></tr>
- <tr><th>限制委托(天)</th><td>
- <input class="input" datatype="n" type="text" name="lock_sale_day" value="{$info.lock_sale_day}" />
- <span class="gray">新委托寄卖的商品,如到期未寄卖成功,将会自动转换为下架发货商品</span>
- </td></tr>
- </table>
- <div class="titlebar"><i class="iconfont icon-weixinzhifu"></i>购买规则</div>
- <table class="formtable">
- <tr><th>推荐绩效(人):</th><td>
- <input class="input" datatype="n" type="text" name="num_referee_people" value="{$info.num_referee_people}" />
- <span class="gray">每推荐N个人允许抢购(人数/N=单),0不限制</span>
- </td></tr>
- <tr><th></th>
- <td>
- <input type="submit" value="确定" class="button button-blue submit" />
- <input type="reset" value="重置" class="button button-blank" />
- </td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- Do('base', 'layer', 'form', function () {
- $('#form').isForm();
- })
- </script>
|