Authored by qinchao

格式调整

package com.ui.ctrl;
import com.ui.User.UserOperateListener;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.rep.PageResponse;
import com.ui.model.req.MonitorAlarmTableReq;
import com.ui.model.req.SqlOpLogsReq;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Controller
@RequestMapping("/monitorAlarm")
public class MonitorAlarmCtrl {
... ...
... ... @@ -15,6 +15,7 @@
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
... ...
... ... @@ -14,6 +14,7 @@
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
... ... @@ -77,19 +78,20 @@
<div class="widget-title">
<h5>用户操作记录</h5>
</div>
<div class="widget-title" style="height: 56px;">
<div>
<div class="form-inline" role="form" id="inBoxQueryDiv" style=" margin-top: 12px;margin-left: 25px;float: left;">
<div class="input-group" style="float: left;margin-left: 20px">
<span class="input-group-addon">开始日期:</span>
<input id="beginTime"type="text" class="form-control dateTimeInput" style="width:150px;" />
</div>
<div class="input-group" style="float: left;margin-left: 20px">
<span class="input-group-addon">结束日期:</span>
<input id="endTime"type="text" class="form-control dateTimeInput" style="width:150px;" />
</div>
<button id="searchSqlLogsBtn" class="btn btn-primary" style="margin-left: 18px;" >搜索</button>
<div class="widget-content nopadding">
<div class="widget-title" style="height: 56px;">
<div>
<div class="form-inline" role="form" id="inBoxQueryDiv" style=" margin-top: 12px;margin-left: 25px;float: left;">
<div class="input-group" style="float: left;margin-left: 20px">
<span class="input-group-addon">开始日期:</span>
<input id="beginTime"type="text" class="form-control dateTimeInput" style="width:150px;" />
</div>
<div class="input-group" style="float: left;margin-left: 20px">
<span class="input-group-addon">结束日期:</span>
<input id="endTime"type="text" class="form-control dateTimeInput" style="width:150px;" />
</div>
<button id="searchSqlLogsBtn" class="btn btn-primary" style="margin-left: 18px;" >搜索</button>
</div>
</div>
</div>
</div>
... ...