Commit 0469aae2 authored by Administrator's avatar Administrator

2018年4月27日 --智能分析平台

--修改新增页面的全选
parent 0c286bc7
This diff is collapsed.
...@@ -514,7 +514,7 @@ function updateBusiness(dataSource,channel){ ...@@ -514,7 +514,7 @@ function updateBusiness(dataSource,channel){
} }
}); });
$(".businessItem").click(function(){ $(".businessItem").on('click',function(){
businessIds=""; businessIds="";
$("[name='businessinput']:checked").each(function (){ $("[name='businessinput']:checked").each(function (){
businessIds += $(this).val()+","; businessIds += $(this).val()+",";
......
...@@ -590,10 +590,10 @@ ...@@ -590,10 +590,10 @@
//业务 全选复选框 点击 事件 2018.1.23 bymoi //业务 全选复选框 点击 事件 2018.1.23 bymoi
function BusinessCheckALLCLICK(){ function BusinessCheckALLCLICK(){
if($("input[name='BusinessCheckALL']").prop('checked')){ if($("input[name='BusinessCheckALL']").prop("checked")){
$("input[name='BusinessCheck']").prop('checked','true'); $("input[name='BusinessCheck']").prop("checked",true);
}else{ }else{
$("input[name='BusinessCheck']").removeAttr('checked'); $("input[name='BusinessCheck']").removeAttr("checked");
} }
// 重置 指标 一栏 筛选保留原有的 和已选择的 指标 // 重置 指标 一栏 筛选保留原有的 和已选择的 指标
...@@ -645,10 +645,10 @@ ...@@ -645,10 +645,10 @@
// 2018.1.23 bymoi // 2018.1.23 bymoi
//指标复选框 全选 2018.1.23 bymoi //指标复选框 全选 2018.1.23 bymoi
function dimKpiAllCheckedClick(){ function dimKpiAllCheckedClick(){
if($("input[name='dimKpiAllChecked']").prop('checked')){ if($("input[name='dimKpiAllChecked']").prop("checked")){
$("input[name='dimKpiCheck']").prop('checked','true'); $("input[name='dimKpiCheck']").prop("checked",true);
}else{ }else{
$("input[name='dimKpiCheck']").removeAttr('checked'); $("input[name='dimKpiCheck']").removeAttr("checked");
} }
} }
//2018.1.23 bymoi //2018.1.23 bymoi
...@@ -656,11 +656,11 @@ ...@@ -656,11 +656,11 @@
function channelRadioAllCheckedClick(){ function channelRadioAllCheckedClick(){
//判断 全选框是否选中 若选中 所有 渠道复选框 都选中 //判断 全选框是否选中 若选中 所有 渠道复选框 都选中
if($("input[name='channelRadioAll']").prop('checked')){ if($("input[name='channelRadioAll']").prop("checked")){
$("input[name='channelRadio']").prop('checked','true'); $("input[name='channelRadio']").prop("checked",true);
}else{ }else{
$("input[name='channelRadio']").removeAttr('checked'); $("input[name='channelRadio']").removeAttr("checked");
} }
$("#businessActivedListTd").empty(); $("#businessActivedListTd").empty();
...@@ -717,11 +717,11 @@ ...@@ -717,11 +717,11 @@
//判断 全选框是否选中 若选中 所有 数据源复选框 都选中 //判断 全选框是否选中 若选中 所有 数据源复选框 都选中
if($("input[name='dataSourceRadioAll']").prop('checked')){ if($("input[name='dataSourceRadioAll']").prop("checked")){
$("input[name='dataSourceRadio']").prop('checked','true'); $("input[name='dataSourceRadio']").prop("checked",true);
}else{ }else{
$("input[name='dataSourceRadio']").removeAttr('checked'); $("input[name='dataSourceRadio']").removeAttr("checked");
} }
$("#businessActivedListTd").empty(); $("#businessActivedListTd").empty();
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
function dataSourceRadioClick() { function dataSourceRadioClick() {
$("input[name='dataSourceRadioAll']").removeAttr('checked'); $("input[name='dataSourceRadioAll']").removeAttr("checked");
$("#businessActivedListTd").empty(); $("#businessActivedListTd").empty();
$("#dimKpiListTd").empty(); $("#dimKpiListTd").empty();
...@@ -872,6 +872,8 @@ ...@@ -872,6 +872,8 @@
} }
} }
}); });
} }
...@@ -981,7 +983,7 @@ ...@@ -981,7 +983,7 @@
}); });
//如果 指标栏 全选复选框 选中 //如果 指标栏 全选复选框 选中
if($("input[name='dimKpiAllChecked']").prop('checked')){ if($("input[name='dimKpiAllChecked']").prop("checked")){
$("#dimKpiListTd").empty(); $("#dimKpiListTd").empty();
} }
//如果 指标栏不存在 指标 条项 //如果 指标栏不存在 指标 条项
...@@ -1029,6 +1031,7 @@ ...@@ -1029,6 +1031,7 @@
}); });
return arrDimKpiChecked; return arrDimKpiChecked;
} }
</script> </script>
</body> </body>
......
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