...
|
...
|
@@ -63,7 +63,7 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div title="激活查询" data-options="closable:true" style="overflow:auto;padding:20px;display:none;">
|
|
|
<div title="激活查询" style="overflow:auto;padding:20px;display:none;">
|
|
|
<div id="search2" region="north" style="padding-bottom: 35px; ">
|
|
|
<form id="searchForm2" method="post" accept-charset="utf-8">
|
|
|
<input name="idfa" type="text" class="easyui-textbox" data-options="prompt:'请输入idfa'"
|
...
|
...
|
@@ -129,8 +129,8 @@ |
|
|
style="width: 200px;">
|
|
|
<input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'"
|
|
|
style="width: 200px;">
|
|
|
<input name="createTimeBegin" class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'点击开始时间'" style="width: 200px;">
|
|
|
<input name="createTimeEnd" class="easyui-datetimebox" editable="false"
|
|
|
<input name="createTimeBegin" id='clickTimeBegin' class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'点击开始时间'" style="width: 200px;">
|
|
|
<input name="createTimeEnd" id='clickTimeEnd' class="easyui-datetimebox" editable="false"
|
|
|
data-options="prompt:'点击结束时间'" style="width: 200px;">
|
|
|
<a id="clickBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a>
|
|
|
</form>
|
...
|
...
|
@@ -174,8 +174,8 @@ |
|
|
style="width: 200px;">
|
|
|
<input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'"
|
|
|
style="width: 200px;">
|
|
|
<input name="createTimeBegin" class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'打开开始时间'" style="width: 200px;">
|
|
|
<input name="createTimeEnd" class="easyui-datetimebox" editable="false"
|
|
|
<input name="createTimeBegin" id='openTimeBegin' class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'打开开始时间'" style="width: 200px;">
|
|
|
<input name="createTimeEnd" id='openTimeEnd' class="easyui-datetimebox" editable="false"
|
|
|
data-options="prompt:'打开结束时间'" style="width: 200px;">
|
|
|
<a id="openBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a>
|
|
|
</form>
|
...
|
...
|
@@ -193,8 +193,15 @@ |
|
|
<script>
|
|
|
$(function () {
|
|
|
var currentDate = getNowFormatDate();
|
|
|
var currentDateBegin = currentDate+" 00:00:00";
|
|
|
var currentDateEnd = currentDate+" 23:59:59";
|
|
|
$('#activateTime').datebox('setValue', currentDate);
|
|
|
|
|
|
$('#clickTimeBegin').datetimebox('setValue', currentDateBegin);
|
|
|
$('#clickTimeEnd').datetimebox('setValue', currentDateEnd);
|
|
|
|
|
|
$('#openTimeBegin').datetimebox('setValue', currentDateBegin);
|
|
|
$('#openTimeEnd').datetimebox('setValue', currentDateEnd);
|
|
|
$("#activateTalbe").myDatagrid({
|
|
|
fit: true,
|
|
|
fitColumns: true,
|
...
|
...
|
|