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
99c0f8b6
Commit
99c0f8b6
authored
Feb 24, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改'
parent
a6b9f5c6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
menu.js
src/router/modules/menu.js
+3
-3
detail.vue
src/views/charge-query/detail.vue
+4
-4
index.vue
src/views/charge-query/index.vue
+1
-1
No files found.
src/router/modules/menu.js
View file @
99c0f8b6
...
@@ -77,15 +77,15 @@ export default [
...
@@ -77,15 +77,15 @@ export default [
{
{
icon
:
"
ssidata
"
,
icon
:
"
ssidata
"
,
path
:
"
info
"
,
path
:
"
info
"
,
title
:
"
信息管理
"
,
title
:
"
系统设置
"
,
children
:
[
children
:
[
{
{
path
:
"
/info
"
,
path
:
"
/info
"
,
title
:
"
医疗机构
信息
"
,
title
:
"
医疗机构
设置
"
,
},
},
{
{
path
:
"
/info/company
"
,
path
:
"
/info/company
"
,
title
:
"
保险公司
信息
"
,
title
:
"
保险公司
设置
"
,
}
}
],
],
},
},
...
...
src/views/charge-query/detail.vue
View file @
99c0f8b6
...
@@ -129,10 +129,10 @@ export default {
...
@@ -129,10 +129,10 @@ export default {
{
title
:
"
折后金额
"
,
dataIndex
:
"
actualAmount
"
,
width
:
180
},
{
title
:
"
折后金额
"
,
dataIndex
:
"
actualAmount
"
,
width
:
180
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
reduceAmount
"
,
width
:
180
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
reduceAmount
"
,
width
:
180
},
{
title
:
"
实际金额
"
,
dataIndex
:
"
paidAmount
"
,
width
:
180
},
{
title
:
"
实际金额
"
,
dataIndex
:
"
paidAmount
"
,
width
:
180
},
{
title
:
"
免赔额
"
,
dataIndex
:
"
deductible
"
,
width
:
180
},
//
{ title: "免赔额", dataIndex: "deductible", width: 180 },
{
title
:
"
自付额
"
,
dataIndex
:
"
selfPaid
"
,
width
:
180
},
//
{ title: "自付额", dataIndex: "selfPaid", width: 180 },
{
title
:
"
其他费用
"
,
dataIndex
:
"
otherPaid
"
,
width
:
180
},
//
{ title: "其他费用", dataIndex: "otherPaid", width: 180 },
{
title
:
"
理赔金额
"
,
dataIndex
:
"
actualPaid
"
,
width
:
180
},
//
{ title: "理赔金额", dataIndex: "actualPaid", width: 180 },
// { title: "操作", key: "operation", width: "175px", fixed: "right", scopedSlots: { customRender: "operation" },align: "center"},
// { title: "操作", key: "operation", width: "175px", fixed: "right", scopedSlots: { customRender: "operation" },align: "center"},
];
];
const
payColumns
=
[
const
payColumns
=
[
...
...
src/views/charge-query/index.vue
View file @
99c0f8b6
...
@@ -97,7 +97,7 @@ export default {
...
@@ -97,7 +97,7 @@ export default {
const
columns
=
[
const
columns
=
[
{
title
:
"
序号
"
,
dataIndex
:
"
index
"
,
key
:
"
index
"
,
align
:
'
center
'
,
width
:
80
,
scopedSlots
:
{
customRender
:
"
index
"
}},
{
title
:
"
序号
"
,
dataIndex
:
"
index
"
,
key
:
"
index
"
,
align
:
'
center
'
,
width
:
80
,
scopedSlots
:
{
customRender
:
"
index
"
}},
{
title
:
"
收费时间
"
,
dataIndex
:
"
receiptDate
"
,
width
:
180
},
{
title
:
"
收费时间
"
,
dataIndex
:
"
receiptDate
"
,
width
:
180
},
{
title
:
"
病历
号
"
,
dataIndex
:
"
patientNo
"
,
width
:
180
},
{
title
:
"
客户编
号
"
,
dataIndex
:
"
patientNo
"
,
width
:
180
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
客户类型
"
,
dataIndex
:
"
patientType
"
,
width
:
180
},
{
title
:
"
客户类型
"
,
dataIndex
:
"
patientType
"
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
180
},
...
...
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