Showing
1 changed file
with
12 additions
and
5 deletions
@@ -63,7 +63,7 @@ | @@ -63,7 +63,7 @@ | ||
63 | </div> | 63 | </div> |
64 | </div> | 64 | </div> |
65 | </div> | 65 | </div> |
66 | - <div title="激活查询" data-options="closable:true" style="overflow:auto;padding:20px;display:none;"> | 66 | + <div title="激活查询" style="overflow:auto;padding:20px;display:none;"> |
67 | <div id="search2" region="north" style="padding-bottom: 35px; "> | 67 | <div id="search2" region="north" style="padding-bottom: 35px; "> |
68 | <form id="searchForm2" method="post" accept-charset="utf-8"> | 68 | <form id="searchForm2" method="post" accept-charset="utf-8"> |
69 | <input name="idfa" type="text" class="easyui-textbox" data-options="prompt:'请输入idfa'" | 69 | <input name="idfa" type="text" class="easyui-textbox" data-options="prompt:'请输入idfa'" |
@@ -129,8 +129,8 @@ | @@ -129,8 +129,8 @@ | ||
129 | style="width: 200px;"> | 129 | style="width: 200px;"> |
130 | <input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'" | 130 | <input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'" |
131 | style="width: 200px;"> | 131 | style="width: 200px;"> |
132 | - <input name="createTimeBegin" class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'点击开始时间'" style="width: 200px;"> | ||
133 | - <input name="createTimeEnd" class="easyui-datetimebox" editable="false" | 132 | + <input name="createTimeBegin" id='clickTimeBegin' class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'点击开始时间'" style="width: 200px;"> |
133 | + <input name="createTimeEnd" id='clickTimeEnd' class="easyui-datetimebox" editable="false" | ||
134 | data-options="prompt:'点击结束时间'" style="width: 200px;"> | 134 | data-options="prompt:'点击结束时间'" style="width: 200px;"> |
135 | <a id="clickBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a> | 135 | <a id="clickBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a> |
136 | </form> | 136 | </form> |
@@ -174,8 +174,8 @@ | @@ -174,8 +174,8 @@ | ||
174 | style="width: 200px;"> | 174 | style="width: 200px;"> |
175 | <input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'" | 175 | <input name="imei" type="text" class="easyui-textbox" data-options="prompt:'请输入imei'" |
176 | style="width: 200px;"> | 176 | style="width: 200px;"> |
177 | - <input name="createTimeBegin" class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'打开开始时间'" style="width: 200px;"> | ||
178 | - <input name="createTimeEnd" class="easyui-datetimebox" editable="false" | 177 | + <input name="createTimeBegin" id='openTimeBegin' class="easyui-datetimebox" data-options="editable: false,showSeconds:false,prompt:'打开开始时间'" style="width: 200px;"> |
178 | + <input name="createTimeEnd" id='openTimeEnd' class="easyui-datetimebox" editable="false" | ||
179 | data-options="prompt:'打开结束时间'" style="width: 200px;"> | 179 | data-options="prompt:'打开结束时间'" style="width: 200px;"> |
180 | <a id="openBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a> | 180 | <a id="openBtn" class="easyui-linkbutton btn-info" style="margin-left: 30px; "></a> |
181 | </form> | 181 | </form> |
@@ -193,8 +193,15 @@ | @@ -193,8 +193,15 @@ | ||
193 | <script> | 193 | <script> |
194 | $(function () { | 194 | $(function () { |
195 | var currentDate = getNowFormatDate(); | 195 | var currentDate = getNowFormatDate(); |
196 | + var currentDateBegin = currentDate+" 00:00:00"; | ||
197 | + var currentDateEnd = currentDate+" 23:59:59"; | ||
196 | $('#activateTime').datebox('setValue', currentDate); | 198 | $('#activateTime').datebox('setValue', currentDate); |
197 | 199 | ||
200 | + $('#clickTimeBegin').datetimebox('setValue', currentDateBegin); | ||
201 | + $('#clickTimeEnd').datetimebox('setValue', currentDateEnd); | ||
202 | + | ||
203 | + $('#openTimeBegin').datetimebox('setValue', currentDateBegin); | ||
204 | + $('#openTimeEnd').datetimebox('setValue', currentDateEnd); | ||
198 | $("#activateTalbe").myDatagrid({ | 205 | $("#activateTalbe").myDatagrid({ |
199 | fit: true, | 206 | fit: true, |
200 | fitColumns: true, | 207 | fitColumns: true, |
-
Please register or login to post a comment