Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cmszMonitorAnalysis
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liuna
cmszMonitorAnalysis
Commits
0469aae2
Commit
0469aae2
authored
Apr 27, 2018
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2018年4月27日 --智能分析平台
--修改新增页面的全选
parent
0c286bc7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
15 deletions
+18
-15
workspace.xml
.idea/workspace.xml
+0
-0
QualityRuleMaintain.jsp
...app/WEB-INF/views/AnalysisSupport/QualityRuleMaintain.jsp
+1
-1
CreateDiagosis.jsp
.../webapp/WEB-INF/views/MonitorOperation/CreateDiagosis.jsp
+17
-14
No files found.
.idea/workspace.xml
View file @
0469aae2
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/views/AnalysisSupport/QualityRuleMaintain.jsp
View file @
0469aae2
...
...
@@ -514,7 +514,7 @@ function updateBusiness(dataSource,channel){
}
});
$
(
".businessItem"
).
click
(
function
(){
$
(
".businessItem"
).
on
(
'click'
,
function
(){
businessIds
=
""
;
$
(
"[name='businessinput']:checked"
).
each
(
function
(){
businessIds
+=
$
(
this
).
val
()
+
","
;
...
...
src/main/webapp/WEB-INF/views/MonitorOperation/CreateDiagosis.jsp
View file @
0469aae2
...
...
@@ -590,10 +590,10 @@
//业务 全选复选框 点击 事件 2018.1.23 bymoi
function
BusinessCheckALLCLICK
(){
if
(
$
(
"input[name='BusinessCheckALL']"
).
prop
(
'checked'
)){
$
(
"input[name='BusinessCheck']"
).
prop
(
'checked'
,
'true'
);
if
(
$
(
"input[name='BusinessCheckALL']"
).
prop
(
"checked"
)){
$
(
"input[name='BusinessCheck']"
).
prop
(
"checked"
,
true
);
}
else
{
$
(
"input[name='BusinessCheck']"
).
removeAttr
(
'checked'
);
$
(
"input[name='BusinessCheck']"
).
removeAttr
(
"checked"
);
}
// 重置 指标 一栏 筛选保留原有的 和已选择的 指标
...
...
@@ -645,10 +645,10 @@
// 2018.1.23 bymoi
//指标复选框 全选 2018.1.23 bymoi
function
dimKpiAllCheckedClick
(){
if
(
$
(
"input[name='dimKpiAllChecked']"
).
prop
(
'checked'
)){
$
(
"input[name='dimKpiCheck']"
).
prop
(
'checked'
,
'true'
);
if
(
$
(
"input[name='dimKpiAllChecked']"
).
prop
(
"checked"
)){
$
(
"input[name='dimKpiCheck']"
).
prop
(
"checked"
,
true
);
}
else
{
$
(
"input[name='dimKpiCheck']"
).
removeAttr
(
'checked'
);
$
(
"input[name='dimKpiCheck']"
).
removeAttr
(
"checked"
);
}
}
//2018.1.23 bymoi
...
...
@@ -656,11 +656,11 @@
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
{
$
(
"input[name='channelRadio']"
).
removeAttr
(
'checked'
);
$
(
"input[name='channelRadio']"
).
removeAttr
(
"checked"
);
}
$
(
"#businessActivedListTd"
).
empty
();
...
...
@@ -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
{
$
(
"input[name='dataSourceRadio']"
).
removeAttr
(
'checked'
);
$
(
"input[name='dataSourceRadio']"
).
removeAttr
(
"checked"
);
}
$
(
"#businessActivedListTd"
).
empty
();
...
...
@@ -775,7 +775,7 @@
function
dataSourceRadioClick
()
{
$
(
"input[name='dataSourceRadioAll']"
).
removeAttr
(
'checked'
);
$
(
"input[name='dataSourceRadioAll']"
).
removeAttr
(
"checked"
);
$
(
"#businessActivedListTd"
).
empty
();
$
(
"#dimKpiListTd"
).
empty
();
...
...
@@ -872,6 +872,8 @@
}
}
});
}
...
...
@@ -981,7 +983,7 @@
});
//如果 指标栏 全选复选框 选中
if
(
$
(
"input[name='dimKpiAllChecked']"
).
prop
(
'checked'
)){
if
(
$
(
"input[name='dimKpiAllChecked']"
).
prop
(
"checked"
)){
$
(
"#dimKpiListTd"
).
empty
();
}
//如果 指标栏不存在 指标 条项
...
...
@@ -1029,6 +1031,7 @@
});
return
arrDimKpiChecked
;
}
</script>
</body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment