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
鲁尚清
4 years ago
Commit
3f4df7826387ed5d9f7da63f4d76739fd54591d8
1 parent
0a88cfa9
大屏的业务导航切换修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/zjdaping/components/navTabs/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/zjdaping/components/navTabs/index.js
View file @
3f4df78
...
...
@@ -71,8 +71,10 @@ export default {
}
else
{
if
(
val
==
'left'
){
proxy
.
checkId
=
listArray
[
index
+
1
]
proxy
.
checkId
=
listArray
[
index
-
1
]
}
else
{
// proxy.checkId=listArray[index+1]
proxy
.
preNext
()
}
}
...
...
@@ -85,13 +87,17 @@ export default {
proxy
.
clickNext
()
}
else
{
proxy
.
checkId
=
listArray
[
index
-
1
]
if
(
index
==
5
){
proxy
.
preNext
()
}
}
}
else
{
proxy
.
checkId
=
listArray
[
index
+
1
]
if
(
index
>=
4
){
proxy
.
clickNext
()
}
proxy
.
checkId
=
listArray
[
index
+
1
]
}
...
...
Please
register
or
login
to post a comment