Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
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
2863feb9
authored
2022-10-10 14:49:54 +0800
by
蔡俊立
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
证书使用情况修改
1 parent
91145f62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
src/views/zsgl/components/viewDialog.vue
src/views/zsgl/components/viewDialog.vue
View file @
2863feb
...
...
@@ -87,7 +87,7 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"证书类型"
>
<el-input
v-model=
"ruleForm.zslx
"
disabled
></el-input>
<el-input
v-model=
"ruleForm.zslx
mc"
disabled
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -97,7 +97,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"是否作废"
>
<el-input
v-model=
"ruleForm.sfzf"
disabled
></el-input>
<el-input
v-model=
"ruleForm.sfzf
mc
"
disabled
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -134,6 +134,12 @@ export default {
getZssyqkInfo
({
"bsmZswj"
:
bsmZswj
}).
then
(
res
=>
{
if
(
res
.
code
==
200
){
this
.
ruleForm
=
res
.
result
if
(
res
.
result
.
zslx
){
this
.
ruleForm
.
zslxmc
=
res
.
result
.
zslx
==
'zs'
?
'不动产权证书'
:
'不动产登记证明'
;
}
if
(
res
.
result
.
sfzf
){
this
.
ruleForm
.
sfzfmc
=
res
.
result
.
sfzf
==
0
?
'否'
:
'是'
}
}
})
},
...
...
@@ -141,7 +147,7 @@ export default {
},
closeDialog
()
{
this
.
$emit
(
'input'
,
false
)
this
.
$refs
[
'ruleForm'
].
resetFields
()
this
.
ruleForm
=
{}
}
}
}
...
...
Please
register
or
sign in
to post a comment