|
|
|
|
<extend name="Public/base" />
|
|
|
|
|
<block name="css">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/admin_table.css" media="all">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__STATIC__/webuploader/webuploader.css" media="all">
|
|
|
|
|
</block>
|
|
|
|
|
<block name="body">
|
|
|
|
|
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
|
|
|
|
<script src="__STATIC__/layer/extend/layer.ext.js" type="text/javascript"></script>
|
|
|
|
|
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<script src="__STATIC__/md5.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
|
<script type="text/javascript" src="__STATIC__/webuploader/webuploader.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- 标签页导航 -->
|
|
|
|
|
<div class="tab-wrap">
|
|
|
|
|
|
|
|
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
|
|
|
<h3 class="page_title">提现设置</h3>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="tab-content tabcon1711">
|
|
|
|
|
<!-- 表单 -->
|
|
|
|
|
<form id="form" action="{:U('set')}" method="post" class="form-horizontal">
|
|
|
|
|
<!-- 基础 -->
|
|
|
|
|
<div id="tab1" class="tab-pane in tab1">
|
|
|
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l noticeinfo">最低提现金币数</td>
|
|
|
|
|
<td class="r">
|
|
|
|
|
<input type="text" class="txt table_text_input" name="config[coin]" value="{$data['coin']|default=0}" placeholder="请输入大于等于0的数字"><span class="form_unit"></span>
|
|
|
|
|
<span class="notice-text" style="margin-left:42px;">如:5.00,可提现金币少于5.00则不可进行提现</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l noticeinfo">提现手续费</td>
|
|
|
|
|
<td class="r">
|
|
|
|
|
<input type="text" class="txt table_text_input" name="config[widthdraw_rate]" value="{$data['widthdraw_rate']|default=0}" placeholder="请输入0-100之间的数字"><span class="form_unit">%</span>
|
|
|
|
|
<span class="notice-text">用户进行提现需要扣除的手续费,如:10%,用户提现金币100.00,平台将收取金币10.00的手续费</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l noticeinfo">卖号手续费</td>
|
|
|
|
|
<td class="r">
|
|
|
|
|
<input type="text" class="txt table_text_input" name="config[sell_rate]" value="{$data['sell_rate']|default=0}" placeholder="请输入0-100之间的数字"><span class="form_unit">%</span>
|
|
|
|
|
<span class="notice-text">用户发布商品交易成功后需要扣除的手续费,如:5%,商品售价100.00元,平台将收取5.00元的手续费</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l noticeinfo">最低手续费</td>
|
|
|
|
|
<td class="r">
|
|
|
|
|
<input type="text" class="txt table_text_input" name="config[poundage]" value="{$data['poundage']|default=0}" placeholder="请输入大于等于0的数字"><span class="form_unit">¥</span>
|
|
|
|
|
<span class="notice-text">如1,则手续费不足1元时,按照1元收取</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l noticeinfo">最低售价</td>
|
|
|
|
|
<td class="r">
|
|
|
|
|
<input type="text" class="txt table_text_input" name="config[sell]" value="{$data['sell']|default=0}" placeholder="请输入大于等于0的数字"><span class="form_unit">¥</span>
|
|
|
|
|
<span class="notice-text">用户发布商品时设置的最低售价,如:1,根据设置最低手续费,假设也为1,则商品售价不低于2元</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-item cf">
|
|
|
|
|
<input type="hidden" name="id" value="{$data['id']}" />
|
|
|
|
|
<button class="submit_btn ajax-post mlspacing" id="submit1" type="submit" target-form="form-horizontal">
|
|
|
|
|
确定
|
|
|
|
|
</button>
|
|
|
|
|
<a class="submit_btn " alt="返回上一页" title="返回上一页" href="{:U('lists')}" >
|
|
|
|
|
返回
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="common_settings">
|
|
|
|
|
<span class="plus_icon"><span><img src="__IMG__/zwmimages/icon_jia.png"></span></span>
|
|
|
|
|
<form class="addShortcutIcon">
|
|
|
|
|
<input type="hidden" name="title" value="{$m_title}">
|
|
|
|
|
<input type="hidden" name="url" value="UserWithdraw/set">
|
|
|
|
|
</form>
|
|
|
|
|
<a class="ajax-post add-butn <notempty name='commonset'>addSIsetted</notempty>" href="javascript:;" target-form="addShortcutIcon" url="{:U('Think/addShortcutIcon')}"><img src="__IMG__/zwmimages/icon_jia.png"><span><notempty name='commonset'>已添加<else />添加至常用设置</notempty></span></a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</block>
|
|
|
|
|
|
|
|
|
|
<block name="script">
|
|
|
|
|
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
//导航高亮
|
|
|
|
|
highlight_subnav('{:U('UserWithdraw/lists')}');
|
|
|
|
|
|
|
|
|
|
$('#submit').click(function(){
|
|
|
|
|
$('#form').submit();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</block>
|