www.lightcourse.com/app/admin/view/points/setting.html

162 lines
5.8 KiB
HTML
Raw Normal View History

2022-10-24 02:38:36 +00:00
{include file="public/header" /}
<div class="page">
<div class="fixed-bar">
<div class="item-title">
<div class="subject">
<h3>积分管理</h3>
<h5></h5>
</div>
{include file="public/admin_items" /}
</div>
</div>
<form method="post" name="settingForm" id="settingForm">
<table class="ds-default-table">
<thead>
<tr class="space">
<th colspan="16">{$Think.lang.points_ruletip}:</th>
</tr>
<tr class="thead">
<th>{$Think.lang.points_item}</th>
<th>{$Think.lang.points_number}</th>
</tr>
</thead>
<tbody>
<tr class="hover">
<td class="w200">{$Think.lang.points_number_reg}</td>
<td><input id="points_reg" name="points_reg" value="{$list_setting.points_reg}" class="txt" type="text" style="width:60px;"></td>
</tr>
<tr class="hover">
<td>{$Think.lang.points_number_login}</td>
<td><input id="points_login" name="points_login" value="{$list_setting.points_login}" class="txt" type="text" style="width:60px;"></td>
</tr>
<tr class="hover">
<td>{$Think.lang.points_number_comments}</td>
<td><input id="points_comments" name="points_comments" value="{$list_setting.points_comments}" class="txt" type="text" style="width:60px;"></td>
</tr>
<tr class="hover">
<td>邀请注册</td>
<td><input id="points_invite" name="points_invite" value="{$list_setting.points_invite}" class="txt" type="text" style="width:60px;">邀请非会员注册时给邀请人的积分数
</td>
</tr>
<tr class="hover">
<td>返利比例</td>
<td><input id="points_rebate" name="points_rebate" value="{$list_setting.points_rebate}" class="txt" type="text" style="width:35px;">% &nbsp;&nbsp;&nbsp;被邀请会员购买商品时给邀请人返的积分数(例如设为5%被邀请人购买100元商品返给邀请人5积分)
</td>
</tr>
</tbody>
</table>
<table class="ds-default-table">
<thead>
<tr class="thead">
<th colspan="2">{$Think.lang.points_number_order}</th>
</tr>
</thead>
<tbody>
<tr class="hover">
<td class="w200">{$Think.lang.points_number_orderrate}</td>
<td><input id="points_orderrate" name="points_orderrate" value="{$list_setting.points_orderrate}" class="txt" type="text" style="width:60px;">
{$Think.lang.points_number_orderrate_tip}
</td>
</tr>
<tr class="hover">
<td>{$Think.lang.points_number_ordermax}</td>
<td><input id="points_ordermax" name="points_ordermax" value="{$list_setting.points_ordermax}" class="txt" type="text" style="width:60px;">
{$Think.lang.points_number_ordermax_tip}
</td>
</tr>
</tbody>
<tfoot>
<tr class="tfoot">
<td colspan="2"><input class="btn" type="submit" value="{$Think.lang.ds_submit}"/></td>
</tr>
</tfoot>
</table>
</form>
</div>
<script>
$(document).ready(function(){
$("#settingForm").validate({
errorPlacement: function(error, element){
error.appendTo(element.parent().parent().find('td:last'));
},
rules : {
points_reg:{
number:true,
min:0
},
points_login :{
number:true,
min:0
},
points_comments :{
number:true,
min:0
},
points_signin :{
number:true,
min:0
},
points_invite :{
number:true,
min:0
},
points_rebate :{
number:true,
min:0
},
points_orderrate :{
number:true,
min:0
},
points_ordermax :{
number:true,
min:0
}
},
messages : {
points_reg:{
number:'请输入数字',
min:'输入值不能小于0'
},
points_login :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_comments :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_signin :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_invite :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_rebate :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_orderrate :{
number:'请输入数字',
min:'输入值不能小于0'
},
points_ordermax :{
number:'请输入数字',
min:'输入值不能小于0'
}
}
});
});
</script>