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
77c7d77a
Commit
77c7d77a
authored
Feb 27, 2023
by
王安伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func_eccs_1939' into test
parents
022aeb5c
378f5eee
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
3 deletions
+20
-3
charge-query.js
src/api/apis_moudles/charge-query.js
+1
-0
charge-query.js
src/api/funcs_modules/charge-query.js
+5
-1
index.vue
src/views/charge-query/index.vue
+13
-0
indexDetail.vue
src/views/verification/indexDetail.vue
+1
-2
No files found.
src/api/apis_moudles/charge-query.js
View file @
77c7d77a
...
@@ -15,4 +15,5 @@ export default {
...
@@ -15,4 +15,5 @@ export default {
receiptSettlement
:
"
/backstage/auth/receiptSettlement
"
,
//账单结算
receiptSettlement
:
"
/backstage/auth/receiptSettlement
"
,
//账单结算
sendReceipListExport
:
"
/backstage/auth/sendReceipListExport
"
,
//寄送关联账单导出
sendReceipListExport
:
"
/backstage/auth/sendReceipListExport
"
,
//寄送关联账单导出
receiptPrint
:
"
/backstage/auth/receiptPrint
"
,
//账单打印
receiptPrint
:
"
/backstage/auth/receiptPrint
"
,
//账单打印
rceiptListReport
:
'
/backstage/auth/rceiptListReport
'
,
// 账单导出
};
};
src/api/funcs_modules/charge-query.js
View file @
77c7d77a
...
@@ -61,7 +61,10 @@ const SENDRECEIPTLISTEXPORT= function (data) {
...
@@ -61,7 +61,10 @@ const SENDRECEIPTLISTEXPORT= function (data) {
const
RECEIPTPRINT
=
function
(
data
)
{
const
RECEIPTPRINT
=
function
(
data
)
{
return
req
.
post
(
apis
.
receiptPrint
,
data
);
return
req
.
post
(
apis
.
receiptPrint
,
data
);
};
};
// 账单导出报表
const
RceiptListReport
=
(
data
)
=>
{
return
req
.
post
(
apis
.
rceiptListReport
,
data
,
{
responseType
:
'
blob
'
});
};
// 对象数组
// 对象数组
export
default
{
export
default
{
...
@@ -80,4 +83,5 @@ export default {
...
@@ -80,4 +83,5 @@ export default {
RECEIPTSETTLEMENT
,
RECEIPTSETTLEMENT
,
SENDRECEIPTLISTEXPORT
,
SENDRECEIPTLISTEXPORT
,
RECEIPTPRINT
,
RECEIPTPRINT
,
RceiptListReport
,
};
};
src/views/charge-query/index.vue
View file @
77c7d77a
...
@@ -102,6 +102,9 @@
...
@@ -102,6 +102,9 @@
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"exportExcel"
>
<Icon
name=
"ssidaochu"
:size=
"14"
/>
导出
</a-button>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
</a-row>
...
@@ -138,6 +141,7 @@
...
@@ -138,6 +141,7 @@
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
BurtPagination
from
"
@/components/CUSTOMER/pagation
"
;
import
{
mapState
}
from
"
vuex
"
import
{
mapState
}
from
"
vuex
"
import
moment
from
"
moment
"
;
import
moment
from
"
moment
"
;
import
{
exportFile
}
from
'
@/utils/index
'
;
export
default
{
export
default
{
data
()
{
data
()
{
const
columns
=
[
const
columns
=
[
...
@@ -295,6 +299,15 @@ export default {
...
@@ -295,6 +299,15 @@ export default {
addNewCharge
()
{
addNewCharge
()
{
// this.$router.push("/customer/edit");
// this.$router.push("/customer/edit");
},
},
//导出报表
exportExcel
(){
let
filter
=
{
...
this
.
form
,
}
this
.
$apis
.
RceiptListReport
(
filter
).
then
(
res
=>
{
exportFile
(
res
,
'
账单报表.xls
'
);
})
}
},
},
};
};
</
script
>
</
script
>
...
...
src/views/verification/indexDetail.vue
View file @
77c7d77a
...
@@ -141,7 +141,7 @@
...
@@ -141,7 +141,7 @@
</a-col>
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-form-model-item
label=
"未赔付金额"
prop=
"refuseAmountEob"
>
<a-form-model-item
label=
"未赔付金额"
prop=
"refuseAmountEob"
>
<a-input
v-model.trim=
"editFormObj.refuseAmountEob"
placeholder=
"未赔付金额"
type=
"number"
disabled
/>
<a-input
v-model.trim=
"editFormObj.refuseAmountEob"
placeholder=
"未赔付金额"
type=
"number"
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<!-- eccs-1944 -->
<!-- eccs-1944 -->
...
@@ -336,7 +336,6 @@ export default {
...
@@ -336,7 +336,6 @@ export default {
claimsStatus
:
record
.
claimsStatus
||
""
,
claimsStatus
:
record
.
claimsStatus
||
""
,
paidAmountEob
:
record
.
paidAmountEob
||
""
,
paidAmountEob
:
record
.
paidAmountEob
||
""
,
};
};
this
.
moneyChange
();
})
})
},
},
//编辑保存
//编辑保存
...
...
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