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
aa0ad069
Commit
aa0ad069
authored
Jan 11, 2022
by
huangyecong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【ECCS-商保-1213】添加账单明细页面
parent
e68868e0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
9 deletions
+34
-9
charge-query.js
src/router/modules/charge-query.js
+15
-4
detail.vue
src/views/charge-query/detail.vue
+13
-0
index.vue
src/views/charge-query/index.vue
+6
-5
No files found.
src/router/modules/charge-query.js
View file @
aa0ad069
// 收费查询路由表,分包名称:charge-query
// 收费查询路由表,分包名称:charge-query
import
Layout
from
'
@/layout
'
export
default
{
export
default
{
path
:
"
/charge-query
"
,
path
:
"
/charge-query
"
,
name
:
"
ChargeQuery
"
,
name
:
"
chargeQuery
"
,
component
:
()
=>
{
component
:
Layout
,
return
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query
"
);
children
:
[
{
path
:
''
,
name
:
"
chargeQueryIndex
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/index.vue
"
)
},
},
{
path
:
"
detail
"
,
name
:
"
chargeQueryDetail
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/detail.vue
"
)
}
]
};
};
src/views/charge-query/detail.vue
0 → 100644
View file @
aa0ad069
<
template
>
<div>
账单明细页面
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
src/views/charge-query/index.vue
View file @
aa0ad069
...
@@ -98,13 +98,13 @@
...
@@ -98,13 +98,13 @@
</a-form-model>
</a-form-model>
<!-- table -->
<!-- table -->
<!-- :customRow="handlerRowClick" -->
<a-table
<a-table
:columns=
"columns"
:columns=
"columns"
:data-source=
"dataList"
:data-source=
"dataList"
row-key=
"id"
row-key=
"id"
:scroll=
"
{ x: true }"
:scroll=
"
{ x: true }"
:pagination="false"
:customRow="handlerRowClick"
:pagination="true"
>
>
<template
slot=
"operation"
slot-scope=
"record"
>
<template
slot=
"operation"
slot-scope=
"record"
>
<a-button
<a-button
...
@@ -273,7 +273,8 @@ export default {
...
@@ -273,7 +273,8 @@ export default {
//设置行属性
//设置行属性
handlerRowClick
(
record
)
{
handlerRowClick
(
record
)
{
const
{
id
,
patientPolicyId
}
=
record
;
const
{
receiptNo
}
=
record
;
console
.
log
(
'
receiptNo=
'
,
receiptNo
);
return
{
return
{
style
:
{
style
:
{
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
...
@@ -285,8 +286,8 @@ export default {
...
@@ -285,8 +286,8 @@ export default {
return
true
;
return
true
;
}
}
this
.
$router
.
push
({
this
.
$router
.
push
({
name
:
"
welfare
"
,
name
:
"
chargeQueryDetail
"
,
query
:
{
id
,
patientPolicyId
},
query
:
{
receiptNo
},
});
});
},
},
},
},
...
...
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