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
4cf31c5c
authored
2021-01-22 13:37:58 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
11654dc0
8a107f50
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 @
4cf31c5
...
...
@@ -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 @
4cf31c5
...
...
@@ -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