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
7f9072fe
Commit
7f9072fe
authored
3 years ago
by
1105332245
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整
parent
a8bf16a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
11 deletions
+22
-11
menu.js
src/router/modules/menu.js
+1
-1
detail.vue
src/views/charge-query/detail.vue
+20
-9
index.vue
src/views/charge-query/index.vue
+1
-1
No files found.
src/router/modules/menu.js
View file @
7f9072fe
...
...
@@ -98,7 +98,7 @@ export default [
{
icon
:
"
ssiscan
"
,
path
:
"
/bi
"
,
title
:
"
报表
"
,
title
:
"
分析
报表
"
,
children
:
[],
},
];
This diff is collapsed.
Click to expand it.
src/views/charge-query/detail.vue
View file @
7f9072fe
...
...
@@ -43,8 +43,7 @@
</a-col>
<a-col
:xl=
"5"
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"就诊时间"
>
<a-range-picker
format=
"YYYY-MM-DD"
v-model=
"form.dateRange"
:placeholder=
"['开始时间', '结束时间']"
@
change=
"onSelectVisitTime"
/>
<a-date-picker
value-format=
"YYYY-MM-DD 00:00:00"
v-model=
"form.receiptDate"
placeholder=
"就诊时间"
/>
</a-form-model-item>
</a-col>
<a-col
:xl=
"3"
:lg=
"6"
:sm=
"12"
>
...
...
@@ -79,6 +78,9 @@
<a-button
type=
"link"
class=
"danger"
>
删除
</a-button>
</a-popconfirm>
</
template
>
<
template
slot=
"footer"
>
<div
class=
"total"
>
总计:
<span>
{{
totalMoney
}}
</span></div>
</
template
>
</a-table>
<!--分页-->
<BurtPagination
:pagination=
"pagination"
@
pageChange=
"_getChargeListDetail"
/>
...
...
@@ -157,8 +159,7 @@ export default {
mrnNo
:
""
,
paymentCode
:
""
,
payorId
:
0
,
visitTimeEnd
:
""
,
visitTimeStart
:
""
,
receiptDate
:
""
},
patientTypeOptions
:
[
{
...
...
@@ -203,7 +204,15 @@ export default {
computed
:
{
...
mapState
({
userInfo
:
(
state
)
=>
state
.
common
.
userInfo
})
}),
//总计
totalMoney
(){
let
money
=
0
;
this
.
dataList
.
forEach
(
item
=>
{
money
+=
item
.
paidAmount
;
})
return
money
;
}
},
filters
:
{
payStyleFilters
(
value
)
{
...
...
@@ -321,10 +330,6 @@ export default {
}
})
},
// 选中就诊时间
onSelectVisitTime
(
date
,
dateString
)
{
console
.
log
(
date
,
dateString
);
},
// 重置
handlerReset
()
{
const
{
mrnNo
,
patientName
}
=
this
.
form
;
...
...
@@ -385,4 +390,10 @@ export default {
margin-top: 10px;
justify-content: flex-end;
}
.total{
font-weight: 600;
span{
color: red;
}
}
</
style
>
This diff is collapsed.
Click to expand it.
src/views/charge-query/index.vue
View file @
7f9072fe
...
...
@@ -97,7 +97,7 @@ export default {
data
()
{
const
columns
=
[
{
title
:
"
序号
"
,
dataIndex
:
"
index
"
,
key
:
"
index
"
,
align
:
'
center
'
,
width
:
80
,
scopedSlots
:
{
customRender
:
"
index
"
}},
{
title
:
"
就诊时间
"
,
dataIndex
:
"
visitTimeStart
"
,
width
:
180
},
{
title
:
"
就诊时间
"
,
dataIndex
:
"
receiptDate
"
,
width
:
180
},
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
width
:
180
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
客户类型
"
,
dataIndex
:
"
patientType
"
,
width
:
180
},
...
...
This diff is collapsed.
Click to expand it.
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