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
bebe63cc
authored
2023-05-04 15:09:46 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
证书领取
1 parent
79e95008
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
15 deletions
src/views/workflow/components/zslq.vue
src/views/workflow/components/zslq.vue
View file @
bebe63c
<
template
>
<dialogBox
title=
"不动产权证领取"
width=
"85%"
@
closeDialog=
"closeDialog"
@
submitForm=
"handleSubmit"
v-model=
"value"
>
<div
class=
"zslq"
>
<el-form
:model=
"ruleForm"
:rules=
"rules"
ref=
"ruleForm"
label-width=
"100px"
>
<el-row>
...
...
@@ -20,7 +19,7 @@
</el-col>
</el-row>
<lb-table
border
:column=
"tableData.columns"
:data=
"tableData.data"
:pagination=
"false"
:heightNum=
"6
00"
>
<lb-table
border
:column=
"tableData.columns"
:data=
"tableData.data"
:pagination=
"false"
:heightNum=
"4
00"
>
</lb-table>
<el-row>
<el-col
:span=
"6"
>
...
...
@@ -48,8 +47,11 @@
</el-col>
</el-row>
</el-form>
<div
class=
"text-center"
>
<el-button
@
click=
"$popupCacel"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"handleSubmit"
plain
>
领取
</el-button>
</div>
</div>
</dialogBox>
</
template
>
<
script
>
...
...
@@ -59,7 +61,12 @@
import
{
datas
}
from
"../javascript/fzxxdata"
;
export
default
{
props
:
{
value
:
{
type
:
Boolean
,
default
:
true
}
formData
:
{
type
:
Object
,
default
:
function
()
{
return
{};
}
}
},
mixins
:
[
table
],
data
()
{
...
...
@@ -96,17 +103,36 @@
},
}
},
watch
:
{
value
(
val
)
{
if
(
val
)
{
this
.
loadGrid
();
// watch: {
// value (val) {
// if (val) {
// this.loadGrid();
// }
// },
// },
mounted
()
{
if
(
this
.
formData
.
bsmSlsq
)
{
console
.
log
(
this
.
formData
.
bsmSlsq
);
getUnclaimedBdcqz
({
bsmSlsq
:
this
.
formData
.
bsmSlsq
}).
then
(
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
code
===
200
)
{
this
.
tableData
.
data
=
res
.
result
.
list
;
this
.
ruleForm
.
bdcqzList
=
res
.
result
.
list
;
this
.
ruleForm
.
fzrmc
=
res
.
result
.
fzrmc
this
.
ruleForm
.
fzsj
=
res
.
result
.
fzsj
this
.
ruleForm
.
fzsl
=
res
.
result
.
fzsl
}
})
}
},
},
methods
:
{
//列表初始化
loadGrid
()
{
console
.
log
(
this
.
value
);
console
.
log
(
this
.
$route
.
query
.
bsmSlsq
);
getUnclaimedBdcqz
({
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
}).
then
(
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
code
===
200
)
{
this
.
tableData
.
data
=
res
.
result
.
list
;
this
.
ruleForm
.
fzrmc
=
res
.
result
.
fzrmc
...
...
@@ -116,14 +142,18 @@
}
})
},
// 领取证书
handleSubmit
()
{
this
.
$refs
.
ruleForm
.
validate
(
valid
=>
{
if
(
valid
)
{
console
.
log
(
"this.ruleForm"
,
this
.
ruleForm
);
issueCertificate
(
this
.
ruleForm
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
this
.
$message
.
success
(
'保存成功'
);
this
.
$parent
.
queryClick
();
this
.
$emit
(
"input"
,
false
);
this
.
$message
.
success
(
'领取成功'
);
this
.
$popupCacel
();
// console.log("this.$parent", this.$parent);
// this.$parent.queryClick();
}
else
{
this
.
$message
.
error
(
res
.
message
)
}
...
...
@@ -134,9 +164,6 @@
}
});
},
closeDialog
()
{
this
.
$emit
(
"input"
,
false
);
},
}
}
</
script
>
...
...
Please
register
or
sign in
to post a comment