Commit a0735b9a authored by liuna's avatar liuna

Merge remote-tracking branch 'origin/moly' into liuna

parents 6a337c26 d4188a14
......@@ -527,6 +527,7 @@
//渠道 复选框 点击 事件
function channelRadioClick() {
$("#businessActivedListTd").empty();
$("#dimKpiListTd").empty();
var channelId = $("input[name='channelRadio']:checked").val();
var dataSourceId = $("input[name='dataSourceRadio']:checked").val();
......@@ -577,6 +578,8 @@
$("#businessActivedListTd").empty();
$("#dimKpiListTd").empty();
var channelId = $("input[name='channelRadio']:checked").val();
var dataSourceId = $("input[name='dataSourceRadio']:checked").val();
......@@ -626,14 +629,16 @@
// 重置 指标 一栏 筛选保留原有的 和已选择的 指标
$("input[name='dimKpiCheck']").each(function (e) {
/*$("input[name='dimKpiCheck']").each(function (e) {
if (!$(this).attr("checked")) {
$(this).next().remove();
$(this).remove();
}
});
});*/
// 清空 指标 一栏 所有 指标
$("#dimKpiListTd").empty();
//获取选择的 业务
var businessSelectedArr = [];
......@@ -756,7 +761,7 @@
kpiWeightTdVal=parseFloat(Number(kpiWeightTdVal).toFixed(2));
for (var i = 0; i < arrDimKpiidAndNameChecked.length; i++) {
var id_name = arrDimKpiidAndNameChecked[i];
var addRow = $("<tr class='" + id_name.split("&")[0] + "_" + kpiWeightTdVal + "'><td title="+id_name.split("&")[2]+">" + id_name.split("&")[1] + "</td><td style='display:none;'>" + kpiWeightTdVal + "</td><td><a href='javascript:;' title='" + id_name.split("_")[0] + "' onclick='deleteRow(this)'>删除</a>&nbsp;&nbsp;</td></tr>");//<a href='javascript:;' onclick='updateRow(this)'>修改</a>
var addRow = $("<tr class='" + id_name.split("&")[0] + "_" + kpiWeightTdVal + "'><td title="+id_name.split("&")[2]+">" + id_name.split("&")[1] + "</td><td style='display:none;'>" + kpiWeightTdVal + "</td><td><a href='javascript:;' onclick='deleteRow(this)'>删除</a>&nbsp;&nbsp;</td></tr>");//<a href='javascript:;' onclick='updateRow(this)'>修改</a>/* title='" + id_name.split("&")[0] + "'////. */
$("#addTr").append(addRow);
dimKpiSelected.push(Number(id_name.split("&")[0]));
}
......
......@@ -154,7 +154,7 @@
</c:if>
</c:forEach>
<td><a href='javascript:void(0);' id="deleteRow" title='${dimKpi.kpiId}' onclick='deleteRow(this)'>删除</a>&nbsp;&nbsp;</td><%-- <a href='javascript:;' onclick='updateRow(this)'>修改</a> --%>
<td><a href='javascript:void(0);' id="deleteRow" <%--title='${dimKpi.kpiId}'--%> onclick='deleteRow(this)'>删除</a>&nbsp;&nbsp;</td><%-- <a href='javascript:;' onclick='updateRow(this)'>修改</a> --%>
</tr>
</c:forEach>
......@@ -504,6 +504,8 @@
}
function BusinessCheckClick() {
// 清空 指标 一栏 所有 指标
$("#dimKpiListTd").empty();
//$("#dimKpiListTd").empty();
//获取选择的 业务
......@@ -527,13 +529,14 @@
});
// 重置 指标 一栏 筛选保留原有的 指标
$("input[name='dimKpiCheck']").each(function (e) {
/*$("input[name='dimKpiCheck']").each(function (e) {
if (!$(this).attr("checked")) {
$(this).next().remove();
$(this).remove();
}
});
});*/
var arrdimKpiChecked=getValueOfNamedimKpiCheck();
......@@ -603,6 +606,16 @@
function channelRadioClick() {
$("#businessActivedListTd").empty();
$("#dimKpiListTd").empty();
// 重置 指标 一栏 筛选保留原有的 和已选择的 指标
/*$("input[name='dimKpiCheck']").each(function (e) {
if (!$(this).attr("checked")) {
$(this).next().remove();
$(this).remove();
}
});*/
//渠道选择值
var channelArray = new Array();// 存放 所选 频道
$("input[name='channelRadio']:checked").each(function (e) {
......@@ -646,6 +659,15 @@
$("#businessActivedListTd").empty();
$("#dimKpiListTd").empty();
// 重置 指标 一栏 筛选保留原有的 和已选择的 指标
/*$("input[name='dimKpiCheck']").each(function (e) {
if (!$(this).attr("checked")) {
$(this).next().remove();
$(this).remove();
}
});*/
//渠道选择值
var channelArray = new Array();// 存放 所选 频道
$("input[name='channelRadio']:checked").each(function (e) {
......
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