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
664b70f4
authored
2021-01-05 16:21:29 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(plzl):坐落条件互斥
1 parent
48f0cac3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
33 deletions
src/components/plzl/plZl.vue
src/views/dz/index.vue
src/views/zd/fjcl/fjcl.vue
src/components/plzl/plZl.vue
View file @
664b70f
...
...
@@ -312,38 +312,11 @@
this
.
isVisible
=
val
},
plzlData
:
{
handler
(
val
){
console
.
log
(
val
,
'批量坐落规则'
);
// 宗地坐落
if
(
+
val
.
zd
===
1
)
{
this
.
zrzgz
[
0
].
disabled
=
true
;
this
.
zrzgz
[
1
].
disabled
=
false
;
return
}
else
if
(
+
val
.
zd
===
2
)
{
this
.
zrzgz
[
0
].
disabled
=
false
;
this
.
zrzgz
[
1
].
disabled
=
true
;
return
}
else
{
this
.
zrzgz
[
0
].
disabled
=
false
;
this
.
zrzgz
[
1
].
disabled
=
false
;
return
}
// 自然幢坐落
if
(
+
val
.
zrz
===
1
)
{
this
.
zdgz
[
0
].
disabled
=
true
;
this
.
zdgz
[
1
].
disabled
=
false
;
return
}
else
if
(
+
val
.
zrz
===
2
)
{
this
.
zdgz
[
0
].
disabled
=
false
;
this
.
zdgz
[
1
].
disabled
=
true
;
return
}
else
{
this
.
zdgz
[
0
].
disabled
=
false
;
this
.
zdgz
[
1
].
disabled
=
false
;
return
}
handler
(
val
)
{
this
.
zrzgz
[
0
].
disabled
=
+
val
.
zd
===
1
;
this
.
zdgz
[
0
].
disabled
=
+
val
.
zrz
===
1
;
},
deep
:
true
deep
:
true
}
}
}
...
...
src/views/dz/index.vue
View file @
664b70f
...
...
@@ -29,7 +29,6 @@
methods
:
{
loadingStatus
()
{
debugger
console
.
log
(
"是否禁用"
)
let
bsm
=
this
.
$store
.
state
.
dzbsm
;
queryStatus
(
bsm
).
then
(
res
=>
{
if
(
res
.
success
)
{
...
...
src/views/zd/fjcl/fjcl.vue
View file @
664b70f
...
...
@@ -123,7 +123,6 @@
default
:
break
}
this
.
isUpdate
(
this
.
fileData
.
glbsm
);
getFileLis
(
this
.
fileData
.
glbsm
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
list
=
res
.
result
;
...
...
Please
register
or
sign in
to post a comment