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
Plain Diff
Browse Files
Authored by
王涛
3 years ago
Commit
4ec7ded078509f0ea672f4b6f6739bb3c967d1fe
2 parents
2ebc32b1
fb5815db
Merge branch 'master-v32-lushangqing' into 'master'
大屏的业务导航切换修改 See merge request
!78
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 @
4ec7ded
...
...
@@ -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