|
|
|
@ -121,9 +121,6 @@
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
|
<input type="text" readonly id="time_start" name="time_start" class="" value="{:I('time_start')}" placeholder="结算开始时间" />
|
|
|
|
@ -134,6 +131,33 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
|
|
|
<select id="pay_status" name="pay_status" class="select_gallery" >
|
|
|
|
|
<option value="">结算单类型</option>
|
|
|
|
|
<volist name="PayStatus" id="vo">
|
|
|
|
|
<option value="{$key}" <if condition="isset($_GET['pay_status']) && $key eq I('pay_status')">selected</if> >{$vo}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
|
|
|
<select id="pay_type" name="pay_type" class="select_gallery" >
|
|
|
|
|
<option value="">打款方式</option>
|
|
|
|
|
<option value="1" <if condition="isset($_GET['pay_type']) && I('pay_status') eq 1">selected</if> >提现</option>
|
|
|
|
|
<option value="2" <if condition="isset($_GET['pay_type']) && I('pay_status') eq 2">selected</if> >线上打款</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
|
<input type="text" readonly id="time_start2" name="pay_time" class="" value="{:I('pay_time_start')}" placeholder="支付开始时间" />
|
|
|
|
|
-
|
|
|
|
|
<div class="input-append date" id="datetimepicker2" style="display:inline-block">
|
|
|
|
|
<input type="text" readonly id="time_end" name="pay_time" class="" value="{:I('pay_time_end')}" placeholder="支付结束时间" />
|
|
|
|
|
<span class="add-on"><i class="icon-th"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
@ -330,6 +354,21 @@
|
|
|
|
|
pickerPosition: 'bottom-left'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('#time_start2').datetimepicker({
|
|
|
|
|
format: 'yyyy-mm-dd',
|
|
|
|
|
language: "zh-CN",
|
|
|
|
|
minView: 2,
|
|
|
|
|
autoclose: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#datetimepicker2').datetimepicker({
|
|
|
|
|
format: 'yyyy-mm-dd',
|
|
|
|
|
language: "zh-CN",
|
|
|
|
|
minView: 2,
|
|
|
|
|
autoclose: true,
|
|
|
|
|
pickerPosition: 'bottom-left'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//回车自动提交
|
|
|
|
|
$('.jssearch').find('input').keyup(function(event){
|
|
|
|
|