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
facecaf7
authored
2023-09-05 15:17:20 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:证书打印
1 parent
19b87257
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
94 deletions
src/api/bdcqz.js
src/views/workflow/components/dialog/zsdy.vue
src/views/workflow/components/szxx.vue
src/views/workflow/mixin/public.js
src/api/bdcqz.js
View file @
facecaf
/*
* @Description: 不动产权证
* @Autor: renchao
* @LastEditTime: 2023-0
5-16 14:04:18
* @LastEditTime: 2023-0
9-05 13:24:14
*/
import
request
from
'@/utils/request'
;
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
...
...
@@ -131,3 +131,13 @@ export function bdcqzPreview (data) {
responseType
:
'blob'
})
}
// 获取不动产权证详细信息
export
function
getBdcqzDetail
(
bsmBdcqz
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/bdcqz/getBdcqzDetail'
,
method
:
'get'
,
params
:
{
bsmBdcqz
:
bsmBdcqz
}
})
}
\ No newline at end of file
...
...
src/views/workflow/components/dialog/zsdy.vue
View file @
facecaf
This diff is collapsed.
Click to expand it.
src/views/workflow/components/szxx.vue
View file @
facecaf
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-0
4 17:12:0
5
* @LastEditTime: 2023-09-0
5 14:28:2
5
-->
<
template
>
<div
class=
"szxx"
>
...
...
@@ -55,28 +55,14 @@
</div>
</div>
</el-card>
<el-dialog
title=
"证书作废"
:visible
.
sync=
"invalidDiglog"
width=
"30%"
:modal-append-to-body=
"false"
top=
"30vh"
>
<div
class=
"invalid-diglog"
>
<div
class=
"invalid-title"
>
<i
class=
"el-icon-question invalid-icon"
></i>
<div
class=
"invalid-body"
>
您确定作废证书并再次打印?印刷序列号
{{
ysxlh
}}
</div>
</div>
<div
class=
"invalid-reson"
>
作废原因:
</div>
<el-input
v-model=
"zfyy"
placeholder=
"请输入作废原因"
type=
"textarea"
:rows=
"4"
></el-input>
<div
class=
"text-center pt-10"
>
<el-button
@
click=
"closeInvalidDiglog"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"confirmInvalid"
>
确 定
</el-button>
</div>
</div>
</el-dialog>
<el-empty
description=
"暂无数据"
v-if=
"tableData.length == 0"
></el-empty>
</div>
</
template
>
<
script
>
import
{
mapGetters
}
from
'vuex'
import
store
from
'@/store/index.js'
import
{
getPrintTemplateByCode
}
from
"@/api/print"
;
import
{
getSlsqBdcqzList
,
invalidCertificate
}
from
"@/api/bdcqz.js"
;
import
{
getSlsqBdcqzList
}
from
"@/api/bdcqz.js"
;
export
default
{
props
:
{},
data
()
{
...
...
@@ -86,13 +72,8 @@
dialog
:
false
,
tableData
:
[],
bdcqzlx
:
1
,
bdcqz
:
{},
zfyy
:
""
,
invalidDiglog
:
false
,
bsmSz
:
""
,
bsmBdcqz
:
""
,
ysxlh
:
""
};
bdcqz
:
{}
}
},
computed
:
{
...
mapGetters
([
'workFresh'
])
...
...
@@ -135,12 +116,11 @@
*/
openZsylDialog
(
item
,
type
)
{
store
.
dispatch
(
'user/reWorkFresh'
,
false
)
if
(
type
==
1
)
{
//证书证明预览
this
.
$popupDialog
(
"证书证明预览"
,
"workflow/components/dialog/zsyl"
,
{
bdcqz
:
item
,
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
},
"76%"
,
true
);
}
else
{
this
.
$popupDialog
(
"证书证明打印"
,
"workflow/components/dialog/zsdy"
,
{
bdcqz
:
item
,
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
},
"76%"
,
true
);
this
.
$popupDialog
(
"证书证明打印"
,
"workflow/components/dialog/zsdy"
,
{
...
item
},
"76%"
,
true
);
}
},
/**
...
...
@@ -149,38 +129,7 @@
* @author: renchao
*/
openInvalidDiglog
(
item
)
{
this
.
bdcqz
=
item
this
.
ysxlh
=
item
.
ysxlh
this
.
bsmSz
=
item
.
bsmSz
;
this
.
invalidDiglog
=
true
;
this
.
bsmBdcqz
=
item
.
bsmBdcqz
},
/**
* @description: closeInvalidDiglog
* @author: renchao
*/
closeInvalidDiglog
()
{
this
.
invalidDiglog
=
false
;
this
.
bsmSz
=
""
;
this
.
zfyy
=
""
;
},
/**
* @description: 作废缮证信息
* @author: renchao
*/
confirmInvalid
()
{
invalidCertificate
({
bsmBdcqz
:
this
.
bsmBdcqz
,
zfyy
:
this
.
zfyy
}).
then
(
async
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
list
();
this
.
$message
.
success
(
"作废成功"
);
this
.
invalidDiglog
=
false
;
this
.
zfyy
=
''
let
res
=
await
this
.
list
()
if
(
res
&&
res
==
200
)
this
.
openZsylDialog
(
this
.
bdcqz
);
}
else
{
this
.
$message
.
error
(
res
.
message
);
}
})
this
.
$popupDialog
(
"证书证明打印"
,
"workflow/components/dialog/zsdy"
,
{
...
item
},
"76%"
,
true
);
},
/**
* @description: openRecordPop
...
...
@@ -263,39 +212,6 @@
padding-top
:
8px
;
font-size
:
16px
;
}
.invalid-diglog
{
padding-bottom
:
20px
;
font-size
:
16px
;
font-weight
:
bold
;
color
:
rgb
(
99
,
99
,
99
);
.invalid-title
{
display
:
flex
;
align-content
:
center
;
.invalid-icon
{
color
:
rgb
(
254
,
148
,
0
);
font-size
:
34px
;
margin-right
:
10px
;
}
.invalid-body
{
line-height
:
40px
;
margin-bottom
:
10px
;
}
}
.invalid-reson
{
margin-bottom
:
10px
;
}
.dialog-footer
{
margin-top
:
10px
;
display
:
flex
;
justify-content
:
flex-end
;
}
}
.box-card
{
.szxx_header
{
color
:
#303133
;
...
...
src/views/workflow/mixin/public.js
View file @
facecaf
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
7-11 13:59:14
* @LastEditTime: 2023-0
9-05 15:05:56
*/
import
{
getForm
}
from
"../flowform"
;
import
{
getHomeNoticeList
}
from
"@/api/home.js"
...
...
@@ -49,7 +49,6 @@ export default {
* @author: renchao
*/
getFromRouter
(
tabname
)
{
console
.
log
(
tabname
,
'tabnametabnametabnametabnametabname'
);
//根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性
for
(
let
item
of
this
.
tabList
)
{
if
(
item
.
value
===
tabname
)
{
...
...
Please
register
or
sign in
to post a comment