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
1ea00911
authored
2021-01-18 19:54:02 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
多幢分割跳转页面变化
1 parent
7ccf1929
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
9 deletions
src/views/panel/change/fg/index.vue
src/views/panel/change/fg/index.vue
View file @
1ea0091
...
...
@@ -315,7 +315,7 @@
export
default
{
name
:
""
,
inject
:
[
'getTreeByS'
,
'getRightTree'
],
inject
:
[
'getTreeByS'
,
'getRightTree'
,
'getTreeByBsm'
],
components
:
{
zdQueryData
,
dzQueryData
,
hfghb
},
props
:
{},
data
()
{
...
...
@@ -646,14 +646,25 @@
saveDzFg
(
this
.
dzFghData
).
then
(
res
=>
{
vm
.
loadingHide
()
if
(
res
.
success
)
{
this
.
getRightTree
(
res
.
result
,
'0,1,2'
);
this
.
$router
.
push
({
path
:
'/zd'
,
query
:
{
bsm
:
res
.
result
,
source
:
3
,
//分割标识
}
});
if
(
res
.
result
.
zrz
!==
''
&&
res
.
result
.
zrz
!=
null
){
this
.
getTreeByBsm
(
res
.
result
.
zrz
,
'zrz'
,
'0,1,2'
);
this
.
$router
.
push
({
path
:
'/zrz'
,
query
:
{
bsm
:
res
.
result
.
zrz
,
source
:
3
,
//分割标识
}
});
}
else
if
(
res
.
result
.
dz
!==
''
&&
res
.
result
.
dz
!=
null
){
this
.
getTreeByBsm
(
res
.
result
.
dz
,
'dz'
,
'0,1,2'
);
this
.
$router
.
push
({
path
:
'/dz'
,
query
:
{
bsm
:
res
.
result
.
dz
,
source
:
3
,
//分割标识
}
});
}
}
else
{
Message
.
error
(
"保存失败"
)
}
...
...
Please
register
or
sign in
to post a comment