📄 blcar_setting_manage.htm
字号:
{if $action==1}
<h4>系统设置</h4>
<table id="forumlink" cellspacing="0" cellpadding="0" style="table-layout: fixed;" summary="系统设置">
<form method="POST" action="{$blcarurl}" name="blform">
<tr>
<td width="35%">
<b>积分设置:</b><br/>该系统启用哪个积分字段
</td>
<td>
<select name="bl_credits">
{loop $bl_creditlist $bl_credits_list}
<option value="{$bl_credits_list[extid]}" {if $bl_credits_list[extid]==$bl_credits}selected{/if}>{$bl_credits_list[title]}</option>
{/loop}
</select>
</td>
</tr>
<tr>
<td width="30%">
<b>收益效果:</b><br/>停车每分钟收益多少积分
</td>
<td>
<input type="text" name="bl_stop" value="{$bl_stop}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>路费处理:</b><br/>不停车每分钟需要多少积分
</td>
<td>
<input type="text" name="bl_onroad" value="{$bl_onroad}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>最大收益:</b><br/>每次停车最多可收益
</td>
<td>
<input type="text" name="bl_credits_max" value="{$bl_credits_max}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>车辆数量:</b><br/>每人可购买车辆数量
</td>
<td>
<input type="text" name="bl_carmax" value="{$bl_carmax}"> 辆
</td>
</tr>
<tr>
<td width="30%">
<b>车辆管理:</b><br/>是否可以买重复车辆
</td>
<td>
<select name="bl_car_manage"><option value="0" {if !$bl_car_manage}selected{/if}>不可以购买</option><option value="1" {if $bl_car_manage}selected{/if}>可以购买</option></select>
</td>
</tr>
<tr>
<td width="30%">
<b>道具管理:</b><br/>是否允许使用道具
</td>
<td>
<select name="bl_plugin_manage"><option value="0" {if !$bl_plugin_manage}selected{/if}>不可以使用</option><option value="1" {if $bl_plugin_manage}selected{/if}>可以使用</option></select>
</td>
</tr>
<tr>
<td width="30%">
<b>路况大厅:</b><br/>LOG保存时间间隔(天)
</td>
<td>
<input type="text" name="bl_road_log" value="{$bl_road_log}"> 天
</td>
</tr>
<tr>
<td width="30%">
<b>巡逻时间:</b><br/>警察巡逻时间间隔(分)
</td>
<td>
<input type="text" name="bl_police" value="{$bl_police}"> 分
</td>
</tr>
<tr>
<td width="30%">
<b>贴牌时间:</b><br/>停车多长时间内不允许被贴牌(分)
</td>
<td>
<input type="text" name="bl_pose_max" value="{$bl_pose_max}"> 分
</td>
</tr>
<tr>
<td width="30%">
<b>举报处理:</b><br/>警察多少分钟到场处理
</td>
<td>
<input type="text" name="bl_police_time" value="{$bl_police_time}"> 分内警察到场处理(不能为空)
</td>
</tr>
<tr>
<td width="30%">
<b>举报花费:</b><br/>举报一次需要花费多少{$bl_credit_unit}
</td>
<td>
<input type="text" name="bl_police_post" value="{$bl_police_post}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>举报收益:</b><br/>举报成功获得积分
</td>
<td>
<input type="text" name="bl_police_ok" value="{$bl_police_ok}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>邀请收益:</b><br/>邀请好友获得积分
</td>
<td>
<input type="text" name="bl_buddy_add" value="{$bl_buddy_add}"> {$bl_credit_unit}
</td>
</tr>
<tr>
<td width="30%">
<b>程序刷新时间:</b><br/>程序多久检测一次停车积分
</td>
<td>
<input type="text" name="bl_refrece" value="{$bl_refrece}"> 秒刷新
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="hidden" name="taction" value="1">
<input type="hidden" name="formhash" value="{FORMHASH}">
<input type="submit" name="manage" value="提交"> <input type="reset" name="manage" value="取消">
</td>
</tr>
</form>
</table>
{/if}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -