Commit 5ec9e420 authored by liuna's avatar liuna

2017年12月25日 --智能分析平台

--质量规则筛选项修改,质量报告表格增加时间项
parent a9b58bd0
......@@ -589,6 +589,7 @@ function selectOperation(qualityVerificationReportId) {
} else {
data.accuracyPro = (data.accuracyPro * 100).toFixed(0) + "%";
}
$.dialog({
title: "数据质量运营明细",
content: "<div class='dialog-p' style='max-height: 560px; overflow-y: scroll; overflow-x: auto;'>" +
......@@ -616,6 +617,12 @@ function selectOperation(qualityVerificationReportId) {
" <td>" + data.kpiCode + "</td>" +
" </tr>" +
" <tr>" +
" <td>开始时间</td>" +
" <td>" + df.format(new Date(data.reportSumStartTime)) + "</td>" +
" <td>结束时间</td>" +
" <td>" + df.format(new Date(data.reportSumEndTime)) + "</td>" +
" </tr>" +
" <tr>" +
" <td>完整性数量</td>" +
" <td>" + data.integralityNum + "</td>" +
" <td>完整性占比</td>" +
......
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