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
ae1b1163
authored
2020-12-04 15:41:23 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
宗地分割成功后查询分割后的宗地信息目录树
1 parent
b094d1db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
src/views/Home.vue
src/views/panel/change/fg/index.vue
src/views/Home.vue
View file @
ae1b116
...
...
@@ -153,7 +153,12 @@ export default {
}
});
if
(
newPath
==
"/zd"
)
{
this
.
getRightTree
(
this
.
$store
.
state
.
zdbsm
);
//source为3时代表时分割后的宗地信息
if
(
this
.
$route
.
query
.
source
==
'3'
){
this
.
getTreeByS
(
this
.
$store
.
state
.
zdbsms
);
}
else
{
this
.
getRightTree
(
this
.
$store
.
state
.
zdbsm
);
}
}
else
if
(
newPath
==
"/zrz"
)
{
this
.
getRightTreeByZrzbsm
(
this
.
$store
.
state
.
zrzbsm
);
}
else
if
(
newPath
==
"/dz"
){
...
...
@@ -172,9 +177,9 @@ export default {
"$store.state.zdbsm"
:
function
(
bsm
)
{
this
.
getRightTree
(
bsm
);
},
"$store.state.zdbsms"
:
function
(
zdbsms
)
{
this
.
getTreeByS
(
zdbsms
)
}
//
"$store.state.zdbsms":function (zdbsms) {
//
this.getTreeByS(zdbsms)
//
}
},
mounted
(){
...
...
src/views/panel/change/fg/index.vue
View file @
ae1b116
...
...
@@ -848,7 +848,7 @@
path
:
'/zd'
,
query
:
{
bsm
:
res
.
result
[
0
],
source
:
2
source
:
3
,
//分割标识
}
});
}
else
{
...
...
Please
register
or
sign in
to post a comment