Merge remote-tracking branch 'origin/feature/admin_optimize' into feature/admin_optimize
# Conflicts: # Data/update.sqlmaster
commit
b444a3546b
@ -0,0 +1,233 @@
|
||||
<extend name="Public/base"/>
|
||||
<block name="css">
|
||||
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="__CSS__/promote.css" type="text/css"/>
|
||||
<link rel="stylesheet" type="text/css" href="__STATIC__/webuploader/webuploader.css" media="all">
|
||||
<style>
|
||||
.select2-container--default .select2-selection--single {
|
||||
color: #000;
|
||||
resize: none;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #a7b5bc #ced9df #ced9df #a7b5bc;
|
||||
box-shadow: 0px 3px 3px #F7F8F9 inset;height:35px;
|
||||
height:28px;border-radius:3px;font-size:12px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
line-height:35px;
|
||||
line-height:28px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height:26px;
|
||||
}
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
height:26px;line-height:26px;font-size:12px;
|
||||
}
|
||||
.select2-results__option[aria-selected] {font-size:12px;}
|
||||
.textarea-style {
|
||||
width: 200px;
|
||||
height: 80px;
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
}
|
||||
.mustmark {
|
||||
color: #FF0000;
|
||||
font-style: normal;
|
||||
margin: 0 3px;
|
||||
}
|
||||
.auto-closed {
|
||||
border: 0 solid;
|
||||
border-radius: 3px;
|
||||
background-color: #999;
|
||||
color: #fff;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.auto-open {
|
||||
border: 0 solid;
|
||||
border-radius: 3px;
|
||||
background-color: #4bbd00;
|
||||
color: #fff;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
</style>
|
||||
</block>
|
||||
<block name="body">
|
||||
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/jquery.form.js"></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>
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script type="text/javascript" src="__STATIC__/layer/extend/layer.ext.js"></script>
|
||||
<div class="cf main-place top_nav_list navtab_list">
|
||||
<h3 class="page_title">{$meta_title}</h3>
|
||||
<p class="description_text">说明:推广员提现自动审核管理</p>
|
||||
|
||||
</div>
|
||||
<div class="cf top_nav_list">
|
||||
<empty name="model.extend">
|
||||
<div class="fl button_list">
|
||||
<div class="tools">
|
||||
<a class="ajax-post" target-form="ids" url="{:U('autoReview',array('autoStatus' => 1))}"><span class="button_icon button_icon1"></span>开启自动审核</a>
|
||||
<a class="ajax-post" target-form="ids" url="{:U('autoReview',array('autoStatus' => 0))}"><span class="button_icon button_icon2"></span>关闭自动审核</a>
|
||||
</div>
|
||||
</div>
|
||||
</empty>
|
||||
<!-- 高级搜索 -->
|
||||
<div class="jssearch fl cf search_list">
|
||||
<div class="input-list search-title-box">
|
||||
<label>搜索:</label>
|
||||
</div>
|
||||
<div class="input-list input-list-game search_label_rehab">
|
||||
<select id="company_id" name="company_id" class="select_gallery" >
|
||||
<option value="">推广公司</option>
|
||||
<volist name="companys" id="vo">
|
||||
<option value="{$vo.id}">{$vo.company_name}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-list input-list-promote search_label_rehab">
|
||||
<select id="promote_id" name="promote_id" class="select_gallery">
|
||||
<option value="">推广员账号</option>
|
||||
<volist name="promoteList" id="vo">
|
||||
<option value="{$vo.id}">{$vo.account}({$vo.real_name})</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-list search_label_rehab">
|
||||
<select name="status" class="select_gallery" style="width:120px;">
|
||||
<option value="">自动审核</option>
|
||||
<option value="0">关闭</option>
|
||||
<option value="1">开启</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-list">
|
||||
<a class="sch-btn" href="javascript:;" id="search" url="{:U('Query/autoReview','model='.$model['name'] .'&row='.I('row'),false)}">搜索</a>
|
||||
<a class="sch-btn" style="background-color: #999;" href="{:U('withdraw')}" >返回</a>
|
||||
</div>
|
||||
<!-- <div class="input-list">
|
||||
<a class="sch-btn" href="{:U('Export/expUser',array_merge(array('id'=>12,),I('get.')))}">导出</a>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 数据列表 -->
|
||||
<div class="data_list">
|
||||
<div class="">
|
||||
<table>
|
||||
<!-- 表头 -->
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<input class="check-all" type="checkbox">
|
||||
</th>
|
||||
<th>推广公司</th>
|
||||
<th>推广员账号</th>
|
||||
<th>自动审核</th>
|
||||
<!-- <th>操作</th>-->
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<!-- 列表 -->
|
||||
<tbody>
|
||||
<empty name ="records">
|
||||
<td colspan="11" class="text-center">aOh! 暂时还没有内容!</td>
|
||||
<else />
|
||||
<volist name="records" id="record">
|
||||
<tr>
|
||||
<td>
|
||||
<input class="ids" type="checkbox" value="{$record['id']}" name="ids[]">
|
||||
</td>
|
||||
<td>{$record.company_name}</td>
|
||||
<td>{$record.account}</td>
|
||||
<td>{$record.auto_review_withdraw_status_text}</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</empty>
|
||||
<tr class="data_summary">
|
||||
<td>汇总</td>
|
||||
<td colspan="99">累计提现:{:null_to_0(floor($total*100)/100)}元</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="page">
|
||||
<if condition="$is_admin eq true ">
|
||||
<a class="sch-btn export-btn"
|
||||
href="{:U(CONTROLLER_NAME.'/'.ACTION_NAME,array_merge(['export'=>1],I('get.')))}" target="_blank">导出</a>
|
||||
</if>
|
||||
{$_page|default=''}
|
||||
</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="Query/withdraw">
|
||||
</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">
|
||||
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
||||
<php>if(C('COLOR_STYLE')=='blue_color') echo '<link href="__STATIC__/datetimepicker/css/datetimepicker_blue.css" rel="stylesheet" type="text/css">';</php>
|
||||
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script type="text/javascript" src="__STATIC__/layer/extend/layer.ext.js" ></script>
|
||||
<script src="__STATIC__/jquery.cookie.js" charset="utf-8"></script>
|
||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js" charset="UTF-8"></script>
|
||||
<script>
|
||||
<volist name=":I('get.')" id="vo">
|
||||
Think.setValue('{$key}',"{$vo}");
|
||||
</volist>
|
||||
$(".select_gallery").select2();
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//导航高亮
|
||||
highlight_subnav('{:U('Query/withdraw')}');
|
||||
$(function(){
|
||||
$(".paixu").click(function(){
|
||||
var that=$(this);
|
||||
$data_order=that.attr('data-order');
|
||||
$order_type='{$userarpu_order}';
|
||||
console.log($order_type);
|
||||
if($order_type==''||$order_type=='4'){
|
||||
$(".sortBy").attr('name','data_order');
|
||||
val='3,'+$data_order;
|
||||
$(".sortBy").attr('value',val);
|
||||
$("#search").click();
|
||||
}else if($order_type=='3'){
|
||||
$(".sortBy").attr('name','data_order');
|
||||
val='4,'+$data_order;
|
||||
$(".sortBy").attr('value',val);
|
||||
$("#search").click();
|
||||
}
|
||||
});
|
||||
//搜索功能
|
||||
$("#search").click(function(){
|
||||
var url = $(this).attr('url');
|
||||
var query = $('.jssearch').find('input').serialize();
|
||||
query += "&"+$('.jssearch').find('select').serialize();
|
||||
query = query.replace(/(&|^)(\w*?\d*?\-*?_*?)*?=?((?=&)|(?=$))/g,'');
|
||||
query = query.replace(/^&/g,'');
|
||||
if( url.indexOf('?')>0 ){
|
||||
url += '&' + query;
|
||||
}else{
|
||||
url += '?' + query;
|
||||
}
|
||||
window.location.href = url;
|
||||
});
|
||||
//回车自动提交
|
||||
$('.jssearch').find('input').keyup(function(event){
|
||||
if(event.keyCode===13){
|
||||
$("#search").click();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</block>
|
@ -0,0 +1,152 @@
|
||||
<extend name="Public/base"/>
|
||||
|
||||
<block name="body">
|
||||
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="__CSS__/pro_promote.css" type="text/css" />
|
||||
<script src="__STATIC__/jquery.form.js"></script>
|
||||
<script src="__STATIC__/layer/layer.js"></script>
|
||||
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/layer3/layer.js"></script>
|
||||
|
||||
<style>
|
||||
.select2-container--default .select2-selection--single {
|
||||
color: #000;
|
||||
resize: none;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #a7b5bc #ced9df #ced9df #a7b5bc;
|
||||
box-shadow: 0px 3px 3px #F7F8F9 inset;height:35px;
|
||||
height:28px;border-radius:3px;font-size:12px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
line-height:35px;
|
||||
line-height:28px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height:26px;
|
||||
}
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
height:26px;line-height:26px;font-size:12px;
|
||||
}
|
||||
.select2-results__option[aria-selected] {font-size:12px;}
|
||||
.layui-layer-dialog .layui-layer-content{color:red}
|
||||
.butnbox {padding:10px 0 10px;}
|
||||
.butnbox .butnlist {overflow:hidden;clear:both;}
|
||||
.butnbox .butnlist .butn,.butnbox .butnlist .butn:hover {text-decoration:none;border:none;}
|
||||
.butnbox .butnlist .butn {display:inline-block;width:120px;height:28px;line-height:28px;text-align:center;color:#FFF;background:#3C95C8;border-radius:3px;}
|
||||
.butnbox .butnlist .butn.last {background:#009900;}
|
||||
.butnbox .butnlist .butn~.butn {margin-left:20px;}
|
||||
.data_list table tbody tr a.disabled,.data_list table tbody tr a.disabled:hover {color:#999;cursor:default;}
|
||||
.layui-layer-title {
|
||||
text-align: center;
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="cf main-place top_nav_list navtab_list">
|
||||
<h3 class="page_title">奖罚记录管理</h3>
|
||||
<p class="description_text">上下游奖罚记录管理</p>
|
||||
</div>
|
||||
|
||||
<div class="butnbox" >
|
||||
<div class="butnlist jscheckbutn" style="margin-left: 2px">
|
||||
<a class="butn" href="{:U('StatementMangement/rewardManageSave')}">添加</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 数据列表 -->
|
||||
<div class="data_list">
|
||||
<div class="">
|
||||
<table>
|
||||
<!-- 表头 -->
|
||||
<thead>
|
||||
<tr>
|
||||
<th>奖罚类型</th>
|
||||
<th>公司类型</th>
|
||||
<th>公司名称</th>
|
||||
<th>涉及账号</th>
|
||||
<th>游戏</th>
|
||||
<th>事件</th>
|
||||
<th>金额</th>
|
||||
<th>备注</th>
|
||||
<th>添加人</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<!-- 列表 -->
|
||||
<tbody>
|
||||
<if condition = "empty($list)">
|
||||
<tr>
|
||||
<td colspan="10" class="text-center">aOh! 暂时还没有内容!</td>
|
||||
</tr>
|
||||
</if>
|
||||
<notemtpy name = "list">
|
||||
<volist name="list" id="data">
|
||||
<tr>
|
||||
<td>{$data.reward_type_desc}</td>
|
||||
<td>{$data.company_type_desc}</td>
|
||||
<td>{$data.company_name}</td>
|
||||
<td>
|
||||
<?php foreach ($data['accounts'] as $account):?>
|
||||
<div>
|
||||
<?php if ($account['user_type'] == 1):?>推广员/<?php else:?>玩家/<?php endif;?>{$account['account']}
|
||||
</div>
|
||||
<?php endforeach;?>
|
||||
</td>
|
||||
<td>{$data.relation_game_name}</td>
|
||||
<td>{$data.content}</td>
|
||||
<td>{$data.money}</td>
|
||||
<td>{$data.remark}</td>
|
||||
<td>{:get_admin_nickname($data['creater_id'])}</td>
|
||||
<td>
|
||||
<a href="{:U('StatementMangement/rewardManageSave',array('id'=>$data['id']))}">编辑 </a>
|
||||
<a class="confirm ajax-get" href="{:U('StatementMangement/rewardManageSave',array('id'=>$data['id'], 'delete'=>1))}">删除 </a>
|
||||
</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</notemtpy>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="page">
|
||||
{$_page|default=''}
|
||||
</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="Promote/lists/type/{:I('type',1)}">
|
||||
</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">
|
||||
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
||||
<php>if(C('COLOR_STYLE')=='blue_color') echo '
|
||||
<link href="__STATIC__/datetimepicker/css/datetimepicker_blue.css" rel="stylesheet" type="text/css">
|
||||
';
|
||||
</php>
|
||||
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js"
|
||||
charset="UTF-8"></script>
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
</script>
|
||||
<script>
|
||||
<volist name=":I('get.')" id="vo">
|
||||
Think.setValue('{$key}',"{$vo}");
|
||||
</volist>
|
||||
$(".select_gallery").select2();
|
||||
highlight_subnav("{:U('StatementMangement/rewardManageList')}");
|
||||
</script>
|
||||
</block>
|
@ -0,0 +1,186 @@
|
||||
<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">
|
||||
<style>
|
||||
#form .txt_area.download_url {width:400px;}
|
||||
.tabcon1711 .table_radio2 .table_btn {width:215px;}
|
||||
.bnt_add,.bnt_remove,.bnt_save{
|
||||
height: 30px;
|
||||
width: 20px;
|
||||
font-size: 20px;
|
||||
line-height: 10px;
|
||||
color: #3399ff;
|
||||
background: none;
|
||||
border: none;
|
||||
margin-left: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.bnt_remove{
|
||||
color: #F70909;
|
||||
}
|
||||
.bnt_save{
|
||||
color: #4DB361;
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
.select2-container--default .select2-selection--single {
|
||||
color: #000;
|
||||
resize: none;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #a7b5bc #ced9df #ced9df #a7b5bc;
|
||||
box-shadow: 0px 3px 3px #F7F8F9 inset;height:35px;
|
||||
height:28px;border-radius:3px;font-size:12px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
line-height:35px;
|
||||
line-height:28px;
|
||||
}
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height:26px;
|
||||
}
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
height:26px;line-height:26px;font-size:12px;
|
||||
}
|
||||
.select2-results__option[aria-selected] {font-size:12px;}
|
||||
</style>
|
||||
</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>
|
||||
|
||||
<form action="{:U('StatementMangement/rewardManageSave')}" enctype="application/x-www-form-urlencoded" method="POST"
|
||||
class="form-horizontal form_info_ml">
|
||||
<div class="formtitle"><span>奖惩编辑</span></div>
|
||||
<ul class="form_info ">
|
||||
<input type="hidden" name="id" value="{$data.id}" />
|
||||
<li>
|
||||
<label>奖惩类型</label>
|
||||
<select id="reward_type" name="reward_type" class="select_gallery">
|
||||
<option value="1" <?php if ($data['reward_type'] == 1):?>selected<?php endif;?>>奖励</option>
|
||||
<option value="2" <?php if ($data['reward_type'] == 2):?>selected<?php endif;?>>惩罚</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<label>公司类型</label>
|
||||
<select id="company_type" name="company_type" class="select_gallery" onchange="companyTypeChange()">
|
||||
<option value="1" <?php if ($data['company_type'] == 1):?>selected<?php endif;?>>上游公司</option>
|
||||
<option value="2" <?php if ($data['company_type'] == 2):?>selected<?php endif;?>>下游公司</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<label>公司名称</label>
|
||||
<select id="company_id" name="company_id" class="select_gallery">
|
||||
</select>
|
||||
</li>
|
||||
<?php if ($data['accounts']):?>
|
||||
<?php foreach ($data['accounts'] as $k => $account):?>
|
||||
<?php if ($k == 0):?>
|
||||
<li class="user-account">
|
||||
<label>涉及账号</label>
|
||||
<select name="user_type[]" class="select_gallery user_type" onchange="userAccountChange(this)">
|
||||
<option value="1" <?php if ($account['user_type'] == 1):?>selected<?php endif;?>>推广员</option>
|
||||
<option value="2" <?php if ($account['user_type'] == 2):?>selected<?php endif;?>>玩家</option>
|
||||
</select>
|
||||
<input type="text" class="txt table_text_input" name="account[]" value="{$account['account']}" placeholder="账号">
|
||||
<button type="button" class="bnt_add">✚</button>
|
||||
</li>
|
||||
<?php else:?>
|
||||
<li class="user-account">
|
||||
<label>涉及账号</label>
|
||||
<select name="user_type[]" class="select_gallery user_type" onchange="userAccountChange(this)">
|
||||
<option value="1" <?php if ($account['user_type'] == 1):?>selected<?php endif;?>>推广员</option>
|
||||
<option value="2" <?php if ($account['user_type'] == 2):?>selected<?php endif;?>>玩家</option>
|
||||
</select>
|
||||
<input type="text" class="txt table_text_input" name="account[]" value="{$account['account']}" placeholder="账号">
|
||||
<button type="button" class="bnt_remove">✖</button>
|
||||
</li>
|
||||
<?php endif;?>
|
||||
<?php endforeach;?>
|
||||
<?php else:?>
|
||||
<li class="user-account">
|
||||
<label>涉及账号</label>
|
||||
<select name="user_type[]" class="select_gallery user_type" onchange="userAccountChange(this)">
|
||||
<option value="1">推广员</option>
|
||||
<option value="2">玩家</option>
|
||||
</select>
|
||||
<input type="text" class="txt table_text_input" name="account[]" value="" placeholder="账号">
|
||||
<button type="button" class="bnt_add">✚</button>
|
||||
</li>
|
||||
<?php endif;?>
|
||||
<li>
|
||||
<label>游戏</label>
|
||||
<select id="relation_game_id" name="relation_game_id" class="select_gallery">
|
||||
<?php foreach ($games as $game):?>
|
||||
<option value="{$game['relation_game_id']}" <?php if ($game['relation_game_id'] == $data['relation_game_id']):?>selected<?php endif;?> >{$game['relation_game_name']}</option>
|
||||
<?php endforeach;?>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<label>事件</label>
|
||||
<textarea name="content" class="" placeholder="事件" >{$data.content}</textarea>
|
||||
</li>
|
||||
<li>
|
||||
<label>金额</label>
|
||||
<input name="money" type="text" class="" placeholder="金额" value="{$data.money}" />
|
||||
</li>
|
||||
<li>
|
||||
<label>备注</label>
|
||||
<textarea name="remark" class="" placeholder="备注" >{$data.remark}</textarea>
|
||||
</li>
|
||||
<li>
|
||||
<label> </label><input type="submit" id="submit" value="确认保存" target-form="form-horizontal" class="form_btn">
|
||||
<input type="button" value="返 回" target-form="form-horizontal" class="form_btn ajax-post" onclick="javascript:void(window.history.go(-1))">
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
||||
|
||||
<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="AuthManager/index">
|
||||
</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('StatementMangement/rewardManageList')}');
|
||||
$(".bnt_add").bind("click",function(){
|
||||
var a= '<li class="user-account"><label>涉及账号</label><select name="user_type[]" class="select_gallery user_type" onchange="userAccountChange(this)"><option value="1">推广员</option><option value="2">玩家</option></select><input type="text" class="txt table_text_input" name="account[]" value="" placeholder="账号"><button type="button" class="bnt_remove">✖</button>';
|
||||
$(".user-account:last").after(a);
|
||||
});
|
||||
$(document).on('click', '.bnt_remove', function(){
|
||||
$(this).parents('li').remove();
|
||||
});
|
||||
|
||||
var company_id = '{$data["company_id"]}';
|
||||
function companyTypeChange()
|
||||
{
|
||||
var companyType = $('#company_type').val();
|
||||
$.ajax({
|
||||
url:"{:U('StatementMangement/getCompanys')}",
|
||||
dataType:'JSON',
|
||||
data: {'type':companyType},
|
||||
success:function(response){
|
||||
var companyData = '';
|
||||
$.each(response.info, function(index, item){
|
||||
if (company_id == item.id) {
|
||||
companyData += "<option value='"+item.id+"' selected >"+item.name+"</option>";
|
||||
} else {
|
||||
companyData += "<option value='"+item.id+"' >"+item.name+"</option>";
|
||||
}
|
||||
});
|
||||
$('#company_id').html(companyData);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
companyTypeChange();
|
||||
</script>
|
||||
</block>
|
Loading…
Reference in New Issue