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
bf7ab6a5
authored
2020-11-19 11:52:02 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(hcxlz):户重新落宗功能实现
1 parent
3d70a516
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
3 deletions
src/api/zd.js
src/components/hCxlz/hCxlz.vue
src/components/queryData/queryData.vue
src/api/zd.js
View file @
bf7ab6a
...
...
@@ -167,4 +167,26 @@ export function zdfg(data) {
})
}
/**
* 获取宗地下的自然幢、逻辑幢、幢单元
*/
export
function
zdXlcd
(
bsm
)
{
return
request
({
url
:
'/zd/qjZdjbxx/parcels'
,
method
:
'get'
,
params
:{
bsm
}
})
}
/**
* 户落宗
*/
export
function
hzl
(
data
)
{
return
request
({
url
:
'/system/qjH/hcxlz'
,
method
:
'put'
,
data
:
data
})
}
...
...
src/components/hCxlz/hCxlz.vue
View file @
bf7ab6a
This diff is collapsed.
Click to expand it.
src/components/queryData/queryData.vue
View file @
bf7ab6a
...
...
@@ -79,6 +79,16 @@
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
</span>
<div
class=
"page"
>
<el-pagination
background
layout=
"prev, pager, next,total"
:page-size=
"queryData.pageSize"
:total=
"total"
@
current-change=
"currentChange"
>
</el-pagination>
</div>
</el-dialog>
</div>
...
...
@@ -91,6 +101,7 @@
name
:
"queryData"
,
data
()
{
return
{
total
:
1
,
queryData
:
{
bdcdyh
:
""
,
bdcqzh
:
""
,
...
...
@@ -99,7 +110,9 @@
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
,
},
Data
:
[],
isVisible
:
false
...
...
@@ -125,6 +138,10 @@
created
()
{
},
methods
:
{
currentChange
:
function
(
val
)
{
this
.
queryData
.
pageNo
=
val
;
this
.
getData
(
this
.
queryData
);
},
result
:
function
()
{
this
.
queryData
=
{
bdcdyh
:
""
,
...
...
@@ -133,7 +150,9 @@
qszt
:
"2"
,
xmmc
:
""
,
zddm
:
""
,
zl
:
""
zl
:
""
,
pageNo
:
1
,
pageSize
:
10
};
this
.
getData
(
this
.
queryData
)
},
...
...
@@ -141,6 +160,7 @@
data
[
'dylxs'
]
=
this
.
dylxs
;
getSearchList
(
data
).
then
(
res
=>
{
this
.
Data
=
res
.
result
.
records
this
.
total
=
res
.
result
.
total
;
})
},
search
:
function
()
{
...
...
@@ -151,7 +171,7 @@
},
close
:
function
()
{
this
.
$emit
(
'close'
)
this
.
isVisible
=
false
this
.
result
();
}
},
watch
:
{
...
...
Please
register
or
sign in
to post a comment