NtcPzReport移动到report包下,路径改为report

This commit is contained in:
wangxin
2018-07-10 17:26:43 +08:00
parent e3e2417fca
commit 7319513775
2 changed files with 4 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
*@date 2018年6月12日 下午2:09:41
*@version 版本号
*/
package com.nis.web.controller.log.ntc;
package com.nis.web.controller.report;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
@@ -37,7 +37,7 @@ import com.nis.web.controller.BaseController;
* @version V1.0
*/
@Controller
@RequestMapping("${adminPath}/logs")
@RequestMapping("${adminPath}/report")
public class NtcPzReportController extends BaseController{
@RequestMapping(value="ajaxGetLogTotal",method=RequestMethod.POST)
@ResponseBody
@@ -69,4 +69,5 @@ public class NtcPzReportController extends BaseController{
// }
return data;
}
}

View File

@@ -767,7 +767,7 @@ var GetLogTotal=function(data){
var request=$.ajax({
type:'post',
timeout:1000,//超时时间设置,查询接口时间过长超时
url:pathName+'/logs/ajaxGetLogTotal',
url:pathName+'/report/ajaxGetLogTotal',
data:{"endTime":timeStamp,"action":data.action,"functionId":data.functionId,"compileId":data.compileId},
dataType:'json',
async:true,