Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙海亮
bims
Commits
51837d95
Commit
51837d95
authored
Feb 25, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改'
parent
0836f582
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
charge-query.js
src/api/apis_moudles/charge-query.js
+1
-0
charge-query.js
src/api/funcs_modules/charge-query.js
+5
-0
detail.vue
src/views/charge-query/detail.vue
+15
-1
No files found.
src/api/apis_moudles/charge-query.js
View file @
51837d95
...
@@ -13,4 +13,5 @@ export default {
...
@@ -13,4 +13,5 @@ export default {
queryCiReceipSendList
:
"
/backstage/auth/queryCiReceipSendList
"
,
//理赔件账单寄送查询
queryCiReceipSendList
:
"
/backstage/auth/queryCiReceipSendList
"
,
//理赔件账单寄送查询
receiptSettlement
:
"
/backstage/auth/receiptSettlement
"
,
//账单结算
receiptSettlement
:
"
/backstage/auth/receiptSettlement
"
,
//账单结算
sendReceipListExport
:
"
/backstage/auth/sendReceipListExport
"
,
//寄送关联账单导出
sendReceipListExport
:
"
/backstage/auth/sendReceipListExport
"
,
//寄送关联账单导出
receiptPrint
:
"
/backstage/auth/receiptPrint
"
,
//账单打印
};
};
src/api/funcs_modules/charge-query.js
View file @
51837d95
...
@@ -53,6 +53,10 @@ const RECEIPTSETTLEMENT= function (data) {
...
@@ -53,6 +53,10 @@ const RECEIPTSETTLEMENT= function (data) {
const
SENDRECEIPTLISTEXPORT
=
function
(
data
)
{
const
SENDRECEIPTLISTEXPORT
=
function
(
data
)
{
return
req
.
post
(
apis
.
sendReceipListExport
,
data
,
{
responseType
:
"
blob
"
});
return
req
.
post
(
apis
.
sendReceipListExport
,
data
,
{
responseType
:
"
blob
"
});
};
};
// 账单打印
const
RECEIPTPRINT
=
function
(
data
)
{
return
req
.
post
(
apis
.
receiptPrint
,
data
);
};
// 对象数组
// 对象数组
...
@@ -70,4 +74,5 @@ export default {
...
@@ -70,4 +74,5 @@ export default {
QUERYCIRECEIPSENDLIST
,
QUERYCIRECEIPSENDLIST
,
RECEIPTSETTLEMENT
,
RECEIPTSETTLEMENT
,
SENDRECEIPTLISTEXPORT
,
SENDRECEIPTLISTEXPORT
,
RECEIPTPRINT
,
};
};
src/views/charge-query/detail.vue
View file @
51837d95
...
@@ -305,7 +305,21 @@ export default {
...
@@ -305,7 +305,21 @@ export default {
},
},
//打印
//打印
printEvt
(){
printEvt
(){
this
.
$apis
.
RECEIPTPRINT
({
id
:
this
.
form
.
id
}).
then
(
res
=>
{
if
(
res
.
returnCode
==
'
0000
'
){
let
url
=
res
.
content
;
let
link
=
document
.
createElement
(
'
a
'
);
link
.
setAttribute
(
'
href
'
,
url
);
link
.
setAttribute
(
'
target
'
,
"
_blank
"
);
document
.
body
.
appendChild
(
link
);
link
.
click
();
document
.
body
.
removeChild
(
link
);
}
else
{
this
.
$message
.
error
(
res
.
returnMsg
);
}
})
},
},
// 选中就诊时间
// 选中就诊时间
onSelectVisitTime
(
date
,
dateString
)
{
onSelectVisitTime
(
date
,
dateString
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment