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
4910876d
authored
2021-01-08 13:37:45 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
户重新落宗修改
1 parent
d017add8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
src/components/hCxlz/hCxlz.vue
src/views/zrz/lpb/bjlp/lpbContent/index.vue
src/components/hCxlz/hCxlz.vue
View file @
4910876
...
...
@@ -62,7 +62,7 @@
</div>
<div
class=
"footer"
>
<el-button
type=
"primary"
@
click=
"save"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"c
ancel
"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"c
lose
"
>
取消
</el-button>
</div>
<zd-query-data
:centerDialogVisible=
"xzzdVisible"
@
close=
"xzzdClose"
@
getData=
"getZdxx"
:isZdClose=
"true"
></zd-query-data>
...
...
@@ -160,9 +160,6 @@
};
this
.
hcxlzData
.
bsms
=
this
.
bsms
;
},
cancel
()
{
this
.
close
();
},
save
()
{
if
(
this
.
hcxlzData
.
zrzbsm
===
''
)
{
Message
.
error
(
"请选择自然幢"
);
...
...
@@ -170,7 +167,14 @@
}
hzl
(
this
.
hcxlzData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
close
();
this
.
$router
.
push
({
path
:
'zrz'
,
query
:
{
bsm
:
this
.
hcxlzData
.
zrzbsm
,
source
:
2
,
auth
:
'0,1,2'
}
})
}
else
{
Message
.
error
(
res
.
message
)
}
...
...
src/views/zrz/lpb/bjlp/lpbContent/index.vue
View file @
4910876
...
...
@@ -730,7 +730,7 @@ export default {
this
.
rightClickFlag
=
this
.
isHb
?
'hb'
:
'fg'
;
if
(
this
.
fghbChoosedList
.
length
>
1
)
{
//合并
this
.
lpbChVisible
=
t
ru
e
;
this
.
lpbChVisible
=
t
his
.
hbsmList
.
indexOf
(
this
.
chData
.
bsm
)
>
-
1
?
true
:
fals
e
;
//判断选中户可以执行的合并类型
let
chIsSame
=
this
.
fghbChoosedList
.
every
((
item
)
=>
{
return
item
.
ch
==
this
.
fghbChoosedList
[
0
].
ch
;
...
...
@@ -749,7 +749,7 @@ export default {
})
}
else
{
//分割
this
.
lpbChVisible
=
t
ru
e
;
this
.
lpbChVisible
=
t
his
.
hbsmList
.
indexOf
(
this
.
chData
.
bsm
)
>
-
1
?
true
:
fals
e
;
this
.
fgData
.
oldbsm
=
item
.
bsm
;
console
.
log
(
item
,
'item'
);
//判断户的实际sjcs为1,只能水平分割
...
...
@@ -775,7 +775,7 @@ export default {
break
;
case
'isCxlz'
:
this
.
rightClickFlag
=
'cxlz'
;
this
.
lpbChVisible
=
t
ru
e
;
this
.
lpbChVisible
=
t
his
.
hbsmList
.
indexOf
(
this
.
chData
.
bsm
)
>
-
1
?
true
:
fals
e
;
break
;
case
'isLpb'
:
this
.
rightClickFlag
=
type
;
...
...
@@ -980,8 +980,8 @@ export default {
},
//户重新落宗
handleCxlz
(){
if
(
this
.
hbsmList
.
length
<=
0
)
{
this
.
hbsmList
.
push
(
this
.
chData
);
if
(
this
.
hbsmList
.
indexOf
(
this
.
chData
.
bsm
)
==
-
1
)
{
this
.
hbsmList
.
push
(
this
.
chData
.
bsm
);
}
this
.
hcxlzVisible
=
true
},
...
...
Please
register
or
sign in
to post a comment