Commit 59aad645904528642dbdc2932955fb2ee088b092
1 parent
8502d1f9
update
Showing
4 changed files
with
9 additions
and
4 deletions
src/main/resources/static/pages/forms/statement/lbStatuAnaly.html
| ... | ... | @@ -135,7 +135,7 @@ |
| 135 | 135 | format : 'HH:mm', |
| 136 | 136 | locale : 'zh-cn' |
| 137 | 137 | }); |
| 138 | - $("#table").height($(window).height()-320); | |
| 138 | + $("#table").height($(window).height()-100); | |
| 139 | 139 | |
| 140 | 140 | var d = new Date(); |
| 141 | 141 | var year = d.getFullYear(); |
| ... | ... | @@ -310,6 +310,7 @@ |
| 310 | 310 | layer.msg("请选择时间"); |
| 311 | 311 | return; |
| 312 | 312 | } |
| 313 | + $("#table").height($(window).height()-100); | |
| 313 | 314 | var reason = $("input[name='reason']"); |
| 314 | 315 | var params = {}; |
| 315 | 316 | if(line == " ") | ... | ... |
src/main/resources/static/pages/forms/statement/scheduleDaily.html
| ... | ... | @@ -407,6 +407,7 @@ word-wrap: break-word; |
| 407 | 407 | layer.msg("请选择时间"); |
| 408 | 408 | return; |
| 409 | 409 | } |
| 410 | + $("#ddrbBody").height($(window).height()-100); | |
| 410 | 411 | $("c").html("全日"); |
| 411 | 412 | $("#export").removeAttr("disabled"); |
| 412 | 413 | $get('/realSchedule/statisticsDaily',{line:line,date:date,xlName:xlName,type:"query"},function(result){ | ... | ... |
src/main/resources/static/pages/mforms/operationservices/operationservice.html
src/main/resources/static/pages/report/message/message.html
| ... | ... | @@ -42,7 +42,7 @@ |
| 42 | 42 | <div class="form-group" style="display: inline-block;margin-left: 15px;"> |
| 43 | 43 | <input class="btn btn-default" type="button" id="query" value="查询"/> |
| 44 | 44 | <input class="btn btn-default" type="button" id="export" value="导出"/> |
| 45 | - <input class="btn btn-default" type="button" id="print" value="打印"/> | |
| 45 | +<!-- <input class="btn btn-default" type="button" id="print" value="打印"/> --> | |
| 46 | 46 | <!-- <input class="btn btn-default" type="button" id="exportMore" value="批量导出"/> --> |
| 47 | 47 | </div> |
| 48 | 48 | </form> |
| ... | ... | @@ -207,6 +207,7 @@ |
| 207 | 207 | jName = params[1]; |
| 208 | 208 | line = $("#line").val(); |
| 209 | 209 | date = $("#date").val(); |
| 210 | + var obj = $(this); | |
| 210 | 211 | $get('/realSchedule/historyMessage',{line:line,date:date,code:jName,type:"query"},function(result){ |
| 211 | 212 | var list_history_msg = template('list_history_msg',{list:result}); |
| 212 | 213 | // 把渲染好的模版html文本追加到表格中 |
| ... | ... | @@ -220,7 +221,9 @@ |
| 220 | 221 | $("#print").removeAttr("disabled"); |
| 221 | 222 | } |
| 222 | 223 | $('#printArea').show(); |
| 223 | - | |
| 224 | + | |
| 225 | + $("#info_msg tbody tr").css('background-color', ''); | |
| 226 | + obj.css('background-color', '#99CCFF'); | |
| 224 | 227 | }); |
| 225 | 228 | }); |
| 226 | 229 | ... | ... |