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
8a107f50
authored
2021-01-22 11:30:33 +0800
by
焦泽平
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
宗地历史回溯单元号处理
1 parent
26823ca2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
src/api/zd.js
src/components/lshs/index.vue
src/api/zd.js
View file @
8a107f5
...
...
@@ -119,6 +119,19 @@ export function getQjZdjbxxDetailById(id) {
}
/**
* 根据zdbsm查询宗地基本信息-历史回溯
*/
export
function
getQjZdjbxxDetailByIdBylshs
(
id
)
{
return
request
({
url
:
'/zd/qjZdjbxx/getQjZdjbxxDetailByIdBylshs'
,
method
:
'get'
,
params
:
{
id
}
})
}
/**
* 界址点单一修改
*/
export
function
jzdsingleModify
(
data
)
{
...
...
src/components/lshs/index.vue
View file @
8a107f5
...
...
@@ -75,7 +75,7 @@
import
G6
from
'@antv/g6'
;
import
insertCss
from
'insert-css'
;
import
{
getLshs
}
from
"@api/fwsxbg"
;
import
{
getQjZdjbxxDetailById
}
from
"@api/zd"
;
import
{
getQjZdjbxxDetailById
Bylshs
}
from
"@api/zd"
;
import
{
getZrzDetailByBsm
}
from
"@api/zrz"
;
import
{
getDzDetailByBsm
}
from
"@api/dz"
;
...
...
@@ -260,7 +260,9 @@ export default {
})
break
;
case
"zd"
:
getQjZdjbxxDetailById
(
e
.
item
.
_cfg
.
id
).
then
((
res
)
=>
{
debugger
;
getQjZdjbxxDetailByIdBylshs
(
e
.
item
.
_cfg
.
id
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
self
.
result
=
res
.
result
;
}
...
...
@@ -330,7 +332,7 @@ export default {
})
break
;
case
"zd"
:
getQjZdjbxxDetailById
(
this
.
bsm
).
then
((
res
)
=>
{
getQjZdjbxxDetailById
Bylshs
(
this
.
bsm
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
result
=
res
.
result
;
}
...
...
Please
register
or
sign in
to post a comment