Merge branch 'master' of http://yun.pashanhoo.com:9090/renchao/CadastralSystem
Showing
2 changed files
with
18 additions
and
3 deletions
... | @@ -119,6 +119,19 @@ export function getQjZdjbxxDetailById(id) { | ... | @@ -119,6 +119,19 @@ export function getQjZdjbxxDetailById(id) { |
119 | } | 119 | } |
120 | 120 | ||
121 | /** | 121 | /** |
122 | * 根据zdbsm查询宗地基本信息-历史回溯 | ||
123 | */ | ||
124 | export function getQjZdjbxxDetailByIdBylshs(id) { | ||
125 | return request({ | ||
126 | url: '/zd/qjZdjbxx/getQjZdjbxxDetailByIdBylshs', | ||
127 | method: 'get', | ||
128 | params: { | ||
129 | id | ||
130 | } | ||
131 | }) | ||
132 | } | ||
133 | |||
134 | /** | ||
122 | * 界址点单一修改 | 135 | * 界址点单一修改 |
123 | */ | 136 | */ |
124 | export function jzdsingleModify(data) { | 137 | export function jzdsingleModify(data) { | ... | ... |
... | @@ -75,7 +75,7 @@ | ... | @@ -75,7 +75,7 @@ |
75 | import G6 from '@antv/g6'; | 75 | import G6 from '@antv/g6'; |
76 | import insertCss from 'insert-css'; | 76 | import insertCss from 'insert-css'; |
77 | import { getLshs } from "@api/fwsxbg"; | 77 | import { getLshs } from "@api/fwsxbg"; |
78 | import { getQjZdjbxxDetailById } from "@api/zd"; | 78 | import { getQjZdjbxxDetailByIdBylshs } from "@api/zd"; |
79 | import { getZrzDetailByBsm } from "@api/zrz"; | 79 | import { getZrzDetailByBsm } from "@api/zrz"; |
80 | import { getDzDetailByBsm } from "@api/dz"; | 80 | import { getDzDetailByBsm } from "@api/dz"; |
81 | 81 | ||
... | @@ -260,7 +260,9 @@ export default { | ... | @@ -260,7 +260,9 @@ export default { |
260 | }) | 260 | }) |
261 | break; | 261 | break; |
262 | case "zd": | 262 | case "zd": |
263 | getQjZdjbxxDetailById(e.item._cfg.id).then((res)=>{ | 263 | debugger; |
264 | |||
265 | getQjZdjbxxDetailByIdBylshs(e.item._cfg.id).then((res)=>{ | ||
264 | if(res.code === 200){ | 266 | if(res.code === 200){ |
265 | self.result = res.result; | 267 | self.result = res.result; |
266 | } | 268 | } |
... | @@ -330,7 +332,7 @@ export default { | ... | @@ -330,7 +332,7 @@ export default { |
330 | }) | 332 | }) |
331 | break; | 333 | break; |
332 | case "zd": | 334 | case "zd": |
333 | getQjZdjbxxDetailById(this.bsm).then((res)=>{ | 335 | getQjZdjbxxDetailByIdBylshs(this.bsm).then((res)=>{ |
334 | if(res.code === 200){ | 336 | if(res.code === 200){ |
335 | this.result = res.result; | 337 | this.result = res.result; |
336 | } | 338 | } | ... | ... |
-
Please register or sign in to post a comment