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.
23 lines
925 B
PHTML
23 lines
925 B
PHTML
6 years ago
|
<div style="width:90%;margin:30px auto;">
|
||
|
<div class="panel panel-primary">
|
||
|
<div class="panel-heading">
|
||
|
<h3 class="panel-title">交易记录导出 <a style="margin-left:50px;" target='_blank' href="<?php echo site_url('apps/train/index/ht_order_list');?>">订单列表>></a> </h3>
|
||
|
</div>
|
||
|
<div class="panel-body">
|
||
|
<form style="width: 500px;float: left;" action="" method="post">
|
||
|
<input type="text" name="from_date" class="date" value="">至
|
||
|
<input type="text" name="to_date" class="date" value="">
|
||
|
<button type="submit" id="sub" class="btn btn-warning btn-sm"><span class="glyphicon glyphicon-download-alt"></span> 导出</button>
|
||
|
</form>
|
||
|
<p style="margin: 0 0 10px; width: 200px; float: left; line-height: 30px;">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
$(".date").datepicker({
|
||
|
'format': 'yyyy-m-d',
|
||
|
'autoclose': true
|
||
|
});
|
||
|
</script>
|