Commit 23c4156a authored by liuna's avatar liuna

2017年12月19日 智能分析平台提交内容

--数据质量规则指标监控时间改为监控延迟时间
parent 29aec394
This diff is collapsed.
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
</td> </td>
</tr> </tr>
<tr><td>指标监控时间(<font color="red">必填</font>):</td> <tr><td>监控延迟时间(<font color="red">必填</font>):</td>
<td> <td>
<input type="text" style="width:200px" name="frequencyValue" id="frequencyValue" /> <input type="text" style="width:200px" name="frequencyValue" id="frequencyValue" />
<select style="width:200px" name="frequencyType" id="frequencyType"> <select style="width:200px" name="frequencyType" id="frequencyType">
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
//form表单提交 //form表单提交
$("#ruleSubmit").click(function(){ $("#ruleSubmit").click(function(){
if($.trim($("#frequencyValue").val())==""){ if($.trim($("#frequencyValue").val())==""){
$.alert("指标监控时间不能为空"); $.alert("监控延迟时间不能为空");
}else if($("#businessTime").val()==""){ }else if($("#businessTime").val()==""){
$.alert("指标业务时间不能为空"); $.alert("指标业务时间不能为空");
}else if($("#ruleCrtTime").val()==""){ }else if($("#ruleCrtTime").val()==""){
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
</td> </td>
</tr> </tr>
<tr><td>指标监控时间(<font color="red">必填</font>):</td> <tr><td>监控延迟时间(<font color="red">必填</font>):</td>
<td> <td>
<input type="text" name="frequencyValue" id="frequencyValue" style="display: inline;" /> <input type="text" name="frequencyValue" id="frequencyValue" style="display: inline;" />
<select name="frequencyType" id="frequencyType"> <select name="frequencyType" id="frequencyType">
...@@ -265,7 +265,7 @@ $("#addParam").click(function(){ ...@@ -265,7 +265,7 @@ $("#addParam").click(function(){
//form表单提交 //form表单提交
$("#ruleSubmit").click(function(){ $("#ruleSubmit").click(function(){
if($.trim($("#frequencyValue").val())==""){ if($.trim($("#frequencyValue").val())==""){
$.alert("指标监控时间不能为空"); $.alert("监控延迟时间不能为空");
}else if($("#businessTime").val()==""){ }else if($("#businessTime").val()==""){
$.alert("指标业务时间不能为空"); $.alert("指标业务时间不能为空");
}else if($("#ruleCrtTime").val()==""){ }else if($("#ruleCrtTime").val()==""){
......
...@@ -533,7 +533,7 @@ function selectRule(qualityRuleId){ ...@@ -533,7 +533,7 @@ function selectRule(qualityRuleId){
$.ajax({ $.ajax({
type : 'GET', type : 'GET',
contentType : 'application/json', contentType : 'application/json',
url: "/AnalysisSupport/QualityRuleOperation/findQuality?qualityRuleId="+qualityRuleId, url: "${ctx}/AnalysisSupport/QualityRuleOperation/findQuality?qualityRuleId="+qualityRuleId,
dataType : 'text', dataType : 'text',
beforeSend: function(data) { beforeSend: function(data) {
}, },
......
...@@ -136,7 +136,7 @@ function ruleResultDetailTable(){ ...@@ -136,7 +136,7 @@ function ruleResultDetailTable(){
header[7] = ["指标编码","kpiCode","7%","15"]; header[7] = ["指标编码","kpiCode","7%","15"];
header[8] = ["数据类型","kpiTypeName","7%","15"]; header[8] = ["数据类型","kpiTypeName","7%","15"];
header[9] = ["数据采集频率","calCycle","7%","15"]; header[9] = ["数据采集频率","calCycle","7%","15"];
header[10] = ["指标监控范围","kpiMonitorTime","7%","15"]; header[10] = ["监控延迟时间","kpiMonitorTime","7%","15"];
header[11] = ["指标采集时间","businessTime","7%","15"]; header[11] = ["指标采集时间","businessTime","7%","15"];
header[12] = ["准确性规则","accuracyRuleId","7%","15"]; header[12] = ["准确性规则","accuracyRuleId","7%","15"];
...@@ -554,7 +554,7 @@ function selectRule(qualityRuleId){ ...@@ -554,7 +554,7 @@ function selectRule(qualityRuleId){
$.ajax({ $.ajax({
type : 'GET', type : 'GET',
contentType : 'application/json', contentType : 'application/json',
url: "/AnalysisSupport/QualityRuleResult/findAccuracy?qualityRuleId="+qualityRuleId, url: "${ctx}/AnalysisSupport/QualityRuleResult/findAccuracy?qualityRuleId="+qualityRuleId,
dataType : 'text', dataType : 'text',
beforeSend: function(data) { beforeSend: function(data) {
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment