Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xwx
3 years ago
Commit
31c2fc5bfc0d19497bbb8436d432540d30b2d051
1 parent
b4b52764
【643】域视图用户选取某个资源,按照连接状态搜索,在查看其他资源信息,搜索条件没有清空导致带到下一个资源里面,数据展示错误
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
9 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/domainindex.js
hg-monitor-web-base/src/main/resources/static/src/views/domain/index.html
hg-monitor-web-base/src/main/resources/static/src/controller/domainindex.js
View file @
31c2fc5
...
...
@@ -177,6 +177,13 @@ layui.define(['tree', 'laypage', 'laytpl', 'admin', 'form', 'table', 'treeTable'
showLine
:
false
,
data
:
data
,
click
:
function
(
node
)
{
$
(
"#domainindex_keyword"
).
val
(
""
);
$
(
"#domain_resStatus"
).
val
(
""
);
$
(
"#domain_res_colony"
).
val
(
""
);
$
(
"#domain_res_cluster"
).
val
(
""
);
$
(
"#domainlink_state"
).
val
(
""
);
$
(
"#domain_state"
).
val
(
""
);
curTreeNode
=
node
;
curDomainResType
=
node
.
data
.
id
;
if
(
node
.
data
.
alias
==
'domain'
)
{
...
...
@@ -1759,4 +1766,4 @@ layui.define(['tree', 'laypage', 'laytpl', 'admin', 'form', 'table', 'treeTable'
}
}
});
});
\ No newline at end of file
});
...
...
hg-monitor-web-base/src/main/resources/static/src/views/domain/index.html
View file @
31c2fc5
...
...
@@ -96,13 +96,13 @@
</select>
</div>
</div>
<div
class=
"layui-inline hide"
>
<div
class=
"layui-input-inline"
>
<select
name=
"label"
id=
"domain_sub_restype"
lay-filter=
"domain_sub_restype"
>
<option
value=
""
>
=选择资源类型=
</option>
</select>
</div>
</div>
<!-- <div class="layui-inline hide" >-->
<!-- <div class="layui-input-inline">-->
<!-- <select name="label" id="domain_sub_restype" lay-filter="domain_sub_restype">-->
<!-- <option value="">=选择资源类型=</option>-->
<!-- </select>-->
<!-- </div>-->
<!-- </div>-->
</div>
</form>
</div>
...
...
@@ -474,4 +474,4 @@
layui
.
use
(
'domainindex'
,
function
(
fn
)
{
fn
();
});
</script>
\ No newline at end of file
</script>
...
...
Please
register
or
login
to post a comment