1.统计-带宽两个图的合并2.HTTP(S)操控日志页面增加查询条件及Custom列表展示列选择页面增加滚动条

This commit is contained in:
shangguanyanfei
2019-06-05 14:14:40 +08:00
parent c83472c508
commit db7049c041
7 changed files with 346 additions and 66 deletions

View File

@@ -95,7 +95,7 @@ public class ConfigStatisticsController extends BaseController {
@RequestMapping(value="bandWidthTransThreeNew")
@ResponseBody
public Map bandWidthTransThree(String beginDate,String endDate,String searchQuotaType,String searchDirection,
String timeSize,Integer [] operator,Model model,HttpServletRequest request){
String timeSize,Integer [] operator,String searchEntranceId,Model model,HttpServletRequest request){
Map<String, Object> fromJsonList = new HashMap<String, Object>();
Map map = new HashMap();
String url=Constants.DASHBOARD_URL+Constants.TRAFFIC_BANDWIDTH_TRANS_THREE_NEW;
@@ -109,6 +109,9 @@ public class ConfigStatisticsController extends BaseController {
if(!StringUtil.isEmpty(timeSize)) {
url=url+"&searchBusinessType="+timeSize;
}
if(!StringUtil.isEmpty(searchEntranceId)) {
url=url+"&entranceId="+searchEntranceId;
}
if(operator!=null){
for (Integer oper : operator) {
if(oper!=null){