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
01674bb2
authored
2020-12-30 15:15:38 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
首页
1 parent
9d9a081b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
10 deletions
src/views/panel/index.vue
src/views/panel/index.vue
View file @
01674bb
...
...
@@ -30,7 +30,7 @@
class=
"box"
v-for=
"(item, index) in list"
:key=
"index"
@
click=
"handleSelect"
@
click=
"handleSelect
(item)
"
>
<div
class=
"psr"
>
<img
:src=
"item.img"
alt=
""
/>
...
...
@@ -97,13 +97,14 @@ export default {
{
name
:
"退件箱"
,
img
:
require
(
"@assets/images/tjx.png"
),
count
:
0
},
],
list
:
[
{
name
:
"宗地分割"
,
img
:
require
(
"@assets/images/zdfg.png"
)
},
{
name
:
"宗地分割"
,
img
:
require
(
"@assets/images/zdfg.png"
)
,
path
:
'change'
,
oLevel
:
'fg'
,
tLevel
:
'zd'
},
{
name
:
"
导入楼盘表模板
"
,
name
:
"
宗地合并
"
,
img
:
require
(
"@assets/images/drlpbmb.png"
),
path
:
'change'
,
oLevel
:
'hb'
,
tLevel
:
'zd'
},
{
name
:
"
新办房屋"
,
img
:
require
(
"@assets/images/xbfw.png"
)
},
{
name
:
"重新落宗"
,
img
:
require
(
"@assets/images/cxlz.png"
)
},
{
name
:
"
范围属性变更"
,
img
:
require
(
"@assets/images/xbfw.png"
),
path
:
'change'
,
oLevel
:
'fwsxbg'
,
tLevel
:
''
},
{
name
:
"重新落宗"
,
img
:
require
(
"@assets/images/cxlz.png"
)
,
path
:
'change'
,
oLevel
:
'cxlz'
,
tLevel
:
''
},
{
name
:
"添加"
,
img
:
require
(
"@assets/images/tj.png"
)
},
],
tableData
:
[
...
...
@@ -161,12 +162,16 @@ export default {
//非编辑状态才可以点击
if
(
!
this
.
isEdit
)
{
if
(
item
.
path
){
let
params
=
{};
if
(
item
.
oLevel
!==
''
){
params
.
oLevel
=
item
.
oLevel
;
}
if
(
item
.
tLevel
!==
''
){
params
.
tLevel
=
item
.
tLevel
;
}
this
.
$router
.
push
({
path
:
'/change'
,
query
:{
oLevel
:
'fg'
,
tLevel
:
'h'
}
path
:
item
.
path
,
query
:
params
})
}
}
...
...
Please
register
or
sign in
to post a comment