|
|
|
@ -86,6 +86,44 @@
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="input-list input-list-game search_label_rehab">
|
|
|
|
|
<select id="company_belong" name="company_belong" class="select_gallery" >
|
|
|
|
|
<option value="">内外团</option>
|
|
|
|
|
<volist name=":getCompanyBlong()" id="vo">
|
|
|
|
|
<option value="{$vo.id}" <if condition="isset($_GET['company_belong']) && $vo.company_belong eq I('company_belong')">selected</if> >下游{$vo.name}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="input-list input-list-game search_label_rehab">
|
|
|
|
|
<select id="settlement_type" name="settlement_type" class="select_gallery" >
|
|
|
|
|
<option value="">结算周期</option>
|
|
|
|
|
<volist name="SettlementType" id="vo">
|
|
|
|
|
<option value="{$key}" <if condition="isset($_GET['settlement_type']) && $vo eq I('settlement_type')">selected</if> >{$vo}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input-list input-list-game search_label_rehab">
|
|
|
|
|
<select id="game_type" name="game_type" class="select_gallery" >
|
|
|
|
|
<option value="">游戏类型</option>
|
|
|
|
|
<volist name=":get_game_type_all()" id="vo">
|
|
|
|
|
<option value="{$vo.id}" <if condition="isset($_GET['game_type']) && $vo.id eq I('game_type')">selected</if> >{$vo.type_name}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input-list">
|
|
|
|
|
<input type="text" readonly id="time_start" name="time_start" class="" value="{:I('time_start')}" placeholder="生效时间开始" />
|
|
|
|
|
-
|
|
|
|
|
<div class="input-append date" style="display:inline-block">
|
|
|
|
|
<input type="text" readonly id="time_end" name="time_end" class="" value="{:I('time_end')}" placeholder="生效时间结束" />
|
|
|
|
|
<span class="add-on"><i class="icon-th"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
|
<a class="sch-btn" href="javascript:;" id="search" url="{:U('index','&row='.I('row'),false)}">搜索</a>
|
|
|
|
@ -184,6 +222,7 @@
|
|
|
|
|
</volist>
|
|
|
|
|
$(".select_gallery").select2();
|
|
|
|
|
</script>
|
|
|
|
|
<script src="__STATIC__/laydate/laydate.js" type="text/javascript"></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
//导航高亮
|
|
|
|
|
highlight_subnav("{:U('index')}");
|
|
|
|
@ -231,6 +270,12 @@ $(function(){
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
laydate.render({
|
|
|
|
|
elem: '#time_start'
|
|
|
|
|
});
|
|
|
|
|
laydate.render({
|
|
|
|
|
elem: '#time_end'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|