Commit 59aad645904528642dbdc2932955fb2ee088b092

Authored by 娄高锋
1 parent 8502d1f9

update

src/main/resources/static/pages/forms/statement/lbStatuAnaly.html
@@ -135,7 +135,7 @@ @@ -135,7 +135,7 @@
135 format : 'HH:mm', 135 format : 'HH:mm',
136 locale : 'zh-cn' 136 locale : 'zh-cn'
137 }); 137 });
138 - $("#table").height($(window).height()-320); 138 + $("#table").height($(window).height()-100);
139 139
140 var d = new Date(); 140 var d = new Date();
141 var year = d.getFullYear(); 141 var year = d.getFullYear();
@@ -310,6 +310,7 @@ @@ -310,6 +310,7 @@
310 layer.msg("请选择时间"); 310 layer.msg("请选择时间");
311 return; 311 return;
312 } 312 }
  313 + $("#table").height($(window).height()-100);
313 var reason = $("input[name='reason']"); 314 var reason = $("input[name='reason']");
314 var params = {}; 315 var params = {};
315 if(line == " ") 316 if(line == " ")
src/main/resources/static/pages/forms/statement/scheduleDaily.html
@@ -407,6 +407,7 @@ word-wrap: break-word; @@ -407,6 +407,7 @@ word-wrap: break-word;
407 layer.msg("请选择时间"); 407 layer.msg("请选择时间");
408 return; 408 return;
409 } 409 }
  410 + $("#ddrbBody").height($(window).height()-100);
410 $("c").html("全日"); 411 $("c").html("全日");
411 $("#export").removeAttr("disabled"); 412 $("#export").removeAttr("disabled");
412 $get('/realSchedule/statisticsDaily',{line:line,date:date,xlName:xlName,type:"query"},function(result){ 413 $get('/realSchedule/statisticsDaily',{line:line,date:date,xlName:xlName,type:"query"},function(result){
src/main/resources/static/pages/mforms/operationservices/operationservice.html
@@ -169,7 +169,7 @@ @@ -169,7 +169,7 @@
169 $("#fgsdmOperat").on("change",initXl); 169 $("#fgsdmOperat").on("change",initXl);
170 function initXl(){ 170 function initXl(){
171 var data=[]; 171 var data=[];
172 - data.push({id: " ", text: "请选择"}); 172 + data.push({id: " ", text: "全部线路"});
173 if(fage){ 173 if(fage){
174 $("#line").select2("destroy").html(''); 174 $("#line").select2("destroy").html('');
175 } 175 }
src/main/resources/static/pages/report/message/message.html
@@ -42,7 +42,7 @@ @@ -42,7 +42,7 @@
42 <div class="form-group" style="display: inline-block;margin-left: 15px;"> 42 <div class="form-group" style="display: inline-block;margin-left: 15px;">
43 <input class="btn btn-default" type="button" id="query" value="查询"/> 43 <input class="btn btn-default" type="button" id="query" value="查询"/>
44 <input class="btn btn-default" type="button" id="export" value="导出"/> 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 <!-- <input class="btn btn-default" type="button" id="exportMore" value="批量导出"/> --> 46 <!-- <input class="btn btn-default" type="button" id="exportMore" value="批量导出"/> -->
47 </div> 47 </div>
48 </form> 48 </form>
@@ -207,6 +207,7 @@ @@ -207,6 +207,7 @@
207 jName = params[1]; 207 jName = params[1];
208 line = $("#line").val(); 208 line = $("#line").val();
209 date = $("#date").val(); 209 date = $("#date").val();
  210 + var obj = $(this);
210 $get('/realSchedule/historyMessage',{line:line,date:date,code:jName,type:"query"},function(result){ 211 $get('/realSchedule/historyMessage',{line:line,date:date,code:jName,type:"query"},function(result){
211 var list_history_msg = template('list_history_msg',{list:result}); 212 var list_history_msg = template('list_history_msg',{list:result});
212 // 把渲染好的模版html文本追加到表格中 213 // 把渲染好的模版html文本追加到表格中
@@ -220,7 +221,9 @@ @@ -220,7 +221,9 @@
220 $("#print").removeAttr("disabled"); 221 $("#print").removeAttr("disabled");
221 } 222 }
222 $('#printArea').show(); 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