Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
699b1521
authored
2020-10-14 16:47:42 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
自然幢,多幢,户表单样式添加权力性质相关内容,添加临时开发路由路径!
1 parent
0780ba0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
src/views/Home.vue
src/views/Home.vue
View file @
699b152
...
...
@@ -31,6 +31,14 @@
<i
:class=
"item.icon"
></i>
<span>
{{
item
.
name
}}
</span>
</div>
<div
class=
"top-items"
>
<el-menu
:default-active=
"activeIndex"
class=
"el-menu-demo"
mode=
"horizontal"
@
select=
"handleSelect"
:router=
"true"
>
<el-submenu
index=
"2"
>
<template
slot=
"title"
>
临时网页开发路由跳转
</
template
>
<el-menu-item
v-for=
"item in tempTab"
:index=
"item.path"
:key=
"'tempTab'+index"
>
{{item.name}}
</el-menu-item>
</el-submenu>
</el-menu>
</div>
</div>
<div
class=
"header-bottom"
>
<Navigation
ref=
"navigation"
></Navigation>
...
...
@@ -56,6 +64,7 @@ export default {
},
data
()
{
return
{
activeIndex
:
'1'
,
navigationList
:
[],
isActive
:
false
,
textLogo
:
false
,
...
...
@@ -79,6 +88,20 @@ export default {
select
:
false
,
}
],
tempTab
:[
{
path
:
'/zrz'
,
name
:
'自然幢'
},
{
path
:
'/dz'
,
name
:
'多幢'
},
{
path
:
'/h'
,
name
:
'户'
},
],
// 上导航选中id
indId
:
undefined
,
menuList
:
[],
...
...
@@ -265,6 +288,9 @@ export default {
//树控件点击事件
itemClick
(
data
){
console
.
log
(
data
);
},
handleSelect
(
key
,
keyPath
)
{
console
.
log
(
key
,
keyPath
);
}
},
};
...
...
Please
register
or
sign in
to post a comment