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
776157fc
authored
2021-01-05 14:46:29 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
权利人
1 parent
52d9b75d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
src/components/formMenu/qlr.vue
src/components/formMenu/qlr.vue
View file @
776157f
...
...
@@ -417,7 +417,6 @@
//todo 权利人页面调整
this
.
formData
.
addQjDlrFrRequest
=
[];
this
.
formData
.
glbsm
=
this
.
bsm
;
this
.
formData
.
gyfsbsm
=
this
.
gyfs
;
//将代理人,法人数据合在一起,名称为addQjDlrFrRequest;
//法人的type字段类型为0,
this
.
formData
.
fr
.
type
=
0
;
...
...
@@ -427,7 +426,6 @@
this
.
formData
.
dlrList
[
k
].
type
=
1
;
this
.
formData
.
addQjDlrFrRequest
.
push
(
this
.
formData
.
dlrList
[
k
]);
}
this
.
formData
.
gyfsbsm
=
this
.
gyfs
;
//如果是从更新按钮点击确定的则进行更新操作,如果不是,则进行添加操作
if
(
this
.
update
){
console
.
log
(
this
.
formData
)
...
...
@@ -563,19 +561,12 @@
},
created
(){
this
.
gyfsList
=
this
.
$store
.
state
.
gyfsList
;
if
(
this
.
tableData
.
length
>
1
){
for
(
let
i
=
0
;
i
<
this
.
gyfsList
.
length
;
i
++
){
let
item
=
this
.
gyfsList
[
i
];
this
.
gyfsList
.
disabled
=
item
.
mc
===
"单独所有"
&&
item
.
bsm
===
this
.
gyfs
;
}
}
},
mounted
()
{
this
.
getQlrInfo
();
if
(
this
.
$store
.
state
.
gyfsList
.
length
>
0
){
this
.
gyfs
=
this
.
$store
.
state
.
gyfsList
[
0
].
bsm
;
}
},
watch
:{
dialogVisible
(
n
){
...
...
@@ -632,6 +623,11 @@
this
.
gyfsList
[
i
].
disabled
=
item
.
mc
===
"单独所有"
;
}
}
console
.
log
(
this
.
tableData
.
length
+
":this.tableData[0].length"
);
if
(
this
.
tableData
.
length
>
1
){
console
.
log
(
JSON
.
stringify
(
this
.
tableData
[
0
])
+
":this.tableData[0].length"
);
this
.
gyfs
=
this
.
tableData
[
0
].
gyfsbsm
}
},
}
};
...
...
Please
register
or
sign in
to post a comment