You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
252 lines
9.6 KiB
HTML
252 lines
9.6 KiB
HTML
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
<h3 class="page_title">防刷预警设置</h3>
|
|
<p class="description_text">说明:通过管理后台设置平台币、积分各类值上限,当系统检测到玩家平台币、积分数据超出上限后则向平台方发送预警邮件。</p>
|
|
</div>
|
|
|
|
<div class="tab-content tabcon1711 tabcon17112">
|
|
<form action="{:U('brush_save')}" method="post" class="form-horizontal">
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<tbody>
|
|
<volist name="list" id="config">
|
|
<tr class="<eq name='config.type' value='5'></eq>">
|
|
<td class="l noticeinfo">{$config.title}</td>
|
|
<td class="r table_radio">
|
|
<switch name="config.type">
|
|
<case value="0">
|
|
<input type="text" class="" name="config[{$config.name}]" value="{$config.value}">
|
|
</case>
|
|
<case value="1">
|
|
<input type="text" class="" name="config[{$config.name}]" value="{$config.value}">
|
|
</case>
|
|
<case value="2">
|
|
<textarea name="config[{$config.name}]">{$config.value}</textarea>
|
|
</case>
|
|
<case value="3">
|
|
<textarea name="config[{$config.name}]">{$config.value}</textarea>
|
|
</case>
|
|
<case value="4">
|
|
<select name="config[{$config.name}]">
|
|
<volist name=":parse_config_attr($config['extra'])" id="vo">
|
|
<option value="{$key}" <eq name="config.value" value="$key">selected</eq>>{$vo}</option>
|
|
</volist>
|
|
</select>
|
|
</case>
|
|
<case value="5">
|
|
<div style="float:left;width:215px;padding:10px 0;">
|
|
<input type="file" id="upload_picture_{$config.name}">
|
|
<input type="hidden" name="config[{$config.name}]" id="cover_id_{$config.name}" value="{$config['value']}"/>
|
|
<div class="upload-img-box">
|
|
<notempty name="config['value']">
|
|
<div class="upload-pre-item">
|
|
<span class="placeholder-graphic placeholder-graphic_{:strtolower($config['name'])}"><img src="{$config['value']|get_cover='path'}"/></span>
|
|
</div>
|
|
</notempty>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
//上传图片
|
|
/* 初始化上传插件 */
|
|
$("#upload_picture_{$config.name}").uploadify({
|
|
"height" : 30,
|
|
"swf" : "__STATIC__/uploadify/uploadify.swf",
|
|
"fileObjName" : "download",
|
|
"buttonText" : "上传图片",
|
|
"uploader" : "{:U('File/uploadPicture',array('session_id'=>session_id()))}",
|
|
"width" : 120,
|
|
'removeTimeout' : 1,
|
|
'fileTypeExts' : '*.jpg; *.jpeg; *.png; *.gif;',
|
|
"onUploadSuccess" : uploadPicture{$field.name},
|
|
'onFallback' : function() {
|
|
alert('未检测到兼容版本的Flash.');
|
|
}
|
|
});
|
|
function uploadPicture{$field.name}(file, data){
|
|
var data = $.parseJSON(data);
|
|
var src = '';
|
|
if(data.status){
|
|
$("#cover_id_{$config.name}").val(data.id);
|
|
src = data.url || '__ROOT__' + data.path;
|
|
$("#cover_id_{$config.name}").parent().find('.upload-img-box').html(
|
|
'<div class="upload-pre-item"><span class="placeholder-graphic placeholder-graphic_{:strtolower($config['name'])}"><img src="' + src + '"/></span></div>'
|
|
);
|
|
} else {
|
|
updateAlert(data.info);
|
|
setTimeout(function(){
|
|
$('#top-alert').find('button').click();
|
|
$(that).removeClass('disabled').prop('disabled',false);
|
|
},1500);
|
|
}
|
|
}
|
|
</script>
|
|
</div>
|
|
</case>
|
|
|
|
<case value="6">
|
|
|
|
<span style="width:215px;float:left;">
|
|
|
|
<input type="file" id="upload_picture_{$config.name}">
|
|
|
|
|
|
<input type="hidden" name="config[{$config.name}]" id="cover_id_{$config.name}" value="{$config['value']}"/>
|
|
|
|
<div class="upload-file-box">
|
|
|
|
<notempty name="config['value']">
|
|
|
|
<div class="upload-pre-item">
|
|
<?php $file = get_file($config['value']);?>
|
|
<span class=""><a href="{$file.path}">{$file.name}</a></span>
|
|
|
|
</div>
|
|
|
|
</notempty>
|
|
|
|
</div>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
/* 初始化上传插件 */
|
|
|
|
|
|
|
|
$("#upload_picture_{$config.name}").uploadify({
|
|
|
|
|
|
"height" : 30,
|
|
|
|
"swf" : "__STATIC__/uploadify/uploadify.swf",
|
|
|
|
"fileObjName" : "download",
|
|
|
|
"buttonText" : "上传文档",
|
|
|
|
"uploader" : "{:U('File/uploadDoc',array('session_id'=>session_id()))}",
|
|
|
|
"width" : 120,
|
|
|
|
'removeTimeout' : 1,
|
|
|
|
'fileTypeExts' : '*.doc; *.docx;',
|
|
|
|
"onUploadSuccess" : uploadPicture{$field.name},
|
|
|
|
'onFallback' : function() {
|
|
|
|
alert('未检测到兼容版本的Flash.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
function uploadPicture{$field.name}(file, data){
|
|
|
|
var data = $.parseJSON(data);
|
|
|
|
var src = '';
|
|
|
|
if(data.status){
|
|
|
|
$("#cover_id_{$config.name}").val(data.id);
|
|
|
|
src = data.url || '__ROOT__' + data.path;
|
|
|
|
|
|
$("#cover_id_{$config.name}").parent().find('.upload-file-box').html(
|
|
|
|
'<div class="upload-pre-item"><span class=""><a href="'+src+'">'+data.name+'</a></span></div>'
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
updateAlert(data.info);
|
|
|
|
|
|
setTimeout(function(){
|
|
|
|
$('#top-alert').find('button').click();
|
|
|
|
},1500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
</case>
|
|
|
|
|
|
</switch>
|
|
|
|
<span class="notice-text"><table border="0" cellspacing="0" cellpadding="0"><tr><td>{$config.remark}</td></tr></table></span>
|
|
</td>
|
|
</tr>
|
|
</volist>
|
|
</tbody>
|
|
</table>
|
|
<div class="form-item">
|
|
<label class="item-label"></label>
|
|
<div class="controls">
|
|
<empty name="list"><button type="submit" disabled class=" submit_btn disabled zwm_martl" target-form="form-horizontal">确 定</button><else/><button type="submit" class=" submit_btn ajax-post zwm_martl" target-form="form-horizontal">确 定</button></empty>
|
|
</div>
|
|
</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="Site/media">
|
|
</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">
|
|
//导航高亮
|
|
highlight_subnav('{:U('Member/brush_set')}');
|
|
|
|
$(document).ready(function(){
|
|
var pc_cache = $("select[name='config[PC_CACHE]']").val();
|
|
authHiden(pc_cache);
|
|
$("select[name='config[PC_CACHE]']").change(function(){
|
|
var a = $(this).val();
|
|
authHiden(a);
|
|
})
|
|
})
|
|
|
|
function authHiden(pc_cache){
|
|
switch(pc_cache){
|
|
case "0":
|
|
$("input[name='config[PC_CACHE_TIME]']").closest('tr').hide();
|
|
$("input[name='config[PC_CACHE_TIME]']").val("");
|
|
break;
|
|
case "1":
|
|
$("input[name='config[PC_CACHE_TIME]']").closest('tr').show();
|
|
break;
|
|
default:
|
|
$("input[name='config[PC_CACHE_TIME]']").closest('tr').show();
|
|
break;
|
|
}
|
|
}
|
|
</script>
|
|
</block>
|