diff --git a/logs/skyeye.log b/logs/skyeye.log index 03bb1a1c014cdcb317af7781cdfabd684b6cf8c2..3ec981028b71f5f6b985f7017fab224196a23059 100644 --- a/logs/skyeye.log +++ b/logs/skyeye.log @@ -5424,4 +5424,25 @@ [skyeye-promote][INFO] [2019-01-04 19:24:39] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/dwsurveydirectory006 [skyeye-promote][INFO] [2019-01-04 19:24:43] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login002 [skyeye-promote][INFO] [2019-01-04 19:24:45] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/dwsurveydirectory003 + [skyeye-promote][INFO] [2019-01-04 19:25:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:26:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:28:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:29:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:30:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:31:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:32:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:33:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:34:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:35:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:37:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:39:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:41:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:42:00] com.skyeye.start.thread.MonitorThread.queryComMation(49) | 读取 + [skyeye-promote][INFO] [2019-01-04 19:42:42] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login002 + [skyeye-promote][INFO] [2019-01-04 19:42:43] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login004 + [skyeye-promote][INFO] [2019-01-04 19:42:44] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login005 + [skyeye-promote][INFO] [2019-01-04 19:42:48] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login002 + [skyeye-promote][INFO] [2019-01-04 19:42:50] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/dwsurveydirectory001 + [skyeye-promote][INFO] [2019-01-04 19:42:53] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/login002 + [skyeye-promote][INFO] [2019-01-04 19:42:56] com.skyeye.common.filter.SessionFilter.doFilter(123) | 请求链接/dwsurveydirectory003 \ No newline at end of file diff --git a/skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js b/skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js index 6fc539af393241215c98527728ab55cae6b22bd4..133f3048d181bfa4140353d21ac3e265f15c3448 100644 --- a/skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js +++ b/skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js @@ -445,39 +445,45 @@ layui.config({ $(".questionUp").unbind(); $(".questionUp").click(function(){ - var nextQuBody=$(this).parents(".li_surveyQuItemBody"); - var prevQuBody=$(nextQuBody).prev(); + var nextQuBody = $(this).parents(".li_surveyQuItemBody"); + var prevQuBody = $(nextQuBody).prev(); if(prevQuBody[0]){ - var prevQuBodyHtml=prevQuBody.html(); + var prevQuBodyHtml = prevQuBody.html(); $(nextQuBody).after("
  • "+prevQuBodyHtml+"
  • "); - var newNextObj=$(nextQuBody).next(); + var newNextObj = $(nextQuBody).next(); newNextObj.hide(); newNextObj.slideDown("slow"); - prevQuBody.slideUp("slow",function(){prevQuBody.remove();resetQuItem();bindQuHoverItem();}); - + prevQuBody.slideUp("slow",function(){ + prevQuBody.remove(); + resetQuItem(); + bindQuHoverItem(); + }); nextQuBody.find("input[name='saveTag']").val(0); newNextObj.find("input[name='saveTag']").val(0); }else{ - notify("已经是第一个了!",1000); + top.winui.window.msg("已经是第一个了!", {icon: 2,time: 1000}); } }); $(".questionDown").unbind(); $(".questionDown").click(function(){ - var prevQuBody=$(this).parents(".li_surveyQuItemBody"); - var nextQuBody=$(prevQuBody).next(); + var prevQuBody = $(this).parents(".li_surveyQuItemBody"); + var nextQuBody = $(prevQuBody).next(); if(nextQuBody[0]){ - var nextQuBodyHtml=nextQuBody.html(); + var nextQuBodyHtml = nextQuBody.html(); $(prevQuBody).before("
  • "+nextQuBodyHtml+"
  • "); - var newPrevObj=$(prevQuBody).prev(); + var newPrevObj = $(prevQuBody).prev(); newPrevObj.hide(); newPrevObj.slideDown("slow"); - nextQuBody.slideUp("slow",function(){nextQuBody.remove();resetQuItem();bindQuHoverItem();}); - + nextQuBody.slideUp("slow",function(){ + nextQuBody.remove(); + resetQuItem(); + bindQuHoverItem(); + }); prevQuBody.find("input[name='saveTag']").val(0); newPrevObj.find("input[name='saveTag']").val(0); }else{ - alert("已经是最后一个了!"); + top.winui.window.msg("已经是最后一个了!", {icon: 2,time: 1000}); } }); diff --git a/skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl b/skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl index da1fbbec79a229c818ad6fe42c7b16c9c8384891..d170487e0429c67d7bd84f9c45a486e70bd0dc7d 100644 --- a/skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl +++ b/skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl @@ -37,6 +37,7 @@