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
0edd4e35
Commit
0edd4e35
authored
Dec 27, 2021
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'a'
parent
ca8913e5
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
362 additions
and
16 deletions
+362
-16
index.html
public/index.html
+1
-1
App.vue
src/App.vue
+20
-1
index.js
src/components/Antd/index.js
+3
-0
index.vue
src/layout/index.vue
+23
-0
menu.js
src/router/modules/menu.js
+1
-1
verification.js
src/router/modules/verification.js
+14
-5
collection.vue
src/views/verification/collection.vue
+154
-0
index.vue
src/views/verification/index.vue
+146
-8
No files found.
public/index.html
View file @
0edd4e35
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<title><
%=
htmlWebpackPlugin
.
options
.
title
%
></title>
<title><
%=
htmlWebpackPlugin
.
options
.
title
%
></title>
<script
<script
type=
"text/javascript"
type=
"text/javascript"
src=
"//at.alicdn.com/t/font_3020450_
mgm6gng7qr
.js"
src=
"//at.alicdn.com/t/font_3020450_
c8k1zo91rcb
.js"
></script>
></script>
</head>
</head>
<body>
<body>
...
...
src/App.vue
View file @
0edd4e35
...
@@ -4,4 +4,23 @@
...
@@ -4,4 +4,23 @@
</div>
</div>
</
template
>
</
template
>
<
style
lang=
"less"
></
style
>
<
style
lang=
"less"
>
.flex{
display: flex;
align-items: center;
}
.borderBox{
box-sizing: border-box;
}
.ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.white_bg{
background: #fff;
}
.burt-container{
.pa(30, 36, 50, 39);
}
</
style
>
src/components/Antd/index.js
View file @
0edd4e35
...
@@ -15,6 +15,7 @@ import {
...
@@ -15,6 +15,7 @@ import {
message
,
message
,
pagination
,
pagination
,
popconfirm
,
popconfirm
,
Modal
}
from
"
ant-design-vue
"
;
}
from
"
ant-design-vue
"
;
export
default
()
=>
{
export
default
()
=>
{
...
@@ -34,6 +35,7 @@ export default () => {
...
@@ -34,6 +35,7 @@ export default () => {
message
,
message
,
pagination
,
pagination
,
popconfirm
,
popconfirm
,
Modal
];
];
// 注册
// 注册
els
.
forEach
((
item
)
=>
{
els
.
forEach
((
item
)
=>
{
...
@@ -42,4 +44,5 @@ export default () => {
...
@@ -42,4 +44,5 @@ export default () => {
// 全局提示
// 全局提示
Vue
.
prototype
.
$msg
=
notification
;
Vue
.
prototype
.
$msg
=
notification
;
Vue
.
prototype
.
$message
=
message
;
Vue
.
prototype
.
$message
=
message
;
Vue
.
prototype
.
$modal
=
Modal
;
};
};
src/layout/index.vue
0 → 100644
View file @
0edd4e35
<
template
>
<div>
<router-view></router-view>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{};
},
computed
:
{},
watch
:
{},
methods
:
{},
mounted
()
{
},
};
</
script
>
<
style
lang=
"less"
scoped
>
</
style
>
src/router/modules/menu.js
View file @
0edd4e35
...
@@ -55,7 +55,7 @@ export default [
...
@@ -55,7 +55,7 @@ export default [
title
:
"
新建EOB数据
"
,
title
:
"
新建EOB数据
"
,
},
},
{
{
path
:
"
/verification
"
,
path
:
"
/verification
/collection
"
,
title
:
"
回款管理
"
,
title
:
"
回款管理
"
,
},
},
{
{
...
...
src/router/modules/verification.js
View file @
0edd4e35
import
Layout
from
'
@/layout
'
// 核销管理路由表,分包名称:verification
// 核销管理路由表,分包名称:verification
export
default
{
export
default
{
path
:
"
/verification
"
,
path
:
"
/verification
"
,
name
:
"
Verification
"
,
name
:
"
Verification
"
,
component
:
()
=>
{
component
:
Layout
,
return
import
(
children
:
[
/* webpackChunkName: "verification" */
"
@/views/verification
"
{
);
path
:
""
,
name
:
"
VerificationIndex
"
,
component
:
()
=>
import
(
"
@/views/verification/index
"
),
},
},
{
path
:
"
collection
"
,
name
:
"
VerificationCollection
"
,
component
:
()
=>
import
(
"
@/views/verification/collection
"
),
},
],
};
};
src/views/verification/collection.vue
0 → 100644
View file @
0edd4e35
<
template
>
<div
class=
"white_bg burt-container"
>
<!-- form -->
<a-form-model
ref=
"form"
layout=
"vertical"
:model=
"form"
>
<a-row
:gutter=
"30"
>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"保险公司"
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择"
>
<a-select-option
value=
"1"
>
待核销
</a-select-option>
<a-select-option
value=
"2"
>
已核销
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:lg=
"5"
:sm=
"12"
>
<a-form-model-item
label=
"回款日期"
>
<a-date-picker
format=
"YYYY年MM月DD日"
v-model=
"form.date"
placeholder=
"选择日期"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"5"
:sm=
"12"
>
<a-form-model-item
label=
"银行状态"
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择"
>
<a-select-option
value=
"1"
>
待核销
</a-select-option>
<a-select-option
value=
"2"
>
已核销
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:lg=
"4"
:sm=
"12"
>
<a-form-model-item
label=
"回款金额(人民币)"
>
<a-input
type=
"number"
v-model=
"form.mrnNo"
placeholder=
"请输入金额"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"4"
:sm=
"12"
>
<a-form-model-item
label=
"回款金额(美元)"
>
<a-input
type=
"number"
v-model=
"form.mrnNo"
placeholder=
"请输入金额"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"汇率差"
>
<a-input
v-model=
"form.mrnNo"
placeholder=
"请输入金额"
/>
</a-form-model-item>
</a-col>
<a-col
:md=
"24"
:lg=
"18"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-button
type=
"primary"
>
导出
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
>
<Icon
name=
"ssiadd"
:size=
"14"
/>
新建回款
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
>
<Icon
name=
"ssireset"
:size=
"14"
/>
重置
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<!-- table -->
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }"
:pagination="pagination"
@change="pageChange"
>
<template
slot=
"operation"
slot-scope=
"record,index"
>
<a-button
type=
"link"
>
修改
</a-button>
<a-button
type=
"link"
class=
"success"
>
新增
</a-button>
<a-button
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
</
template
>
</a-table>
</div>
</template>
<
script
>
const
columns
=
[
{
title
:
"
序号号
"
,
dataIndex
:
"
mrnNo
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
patientName2
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
patientName3
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB赔付金额(人民币)
"
,
dataIndex
:
"
patientName4
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB赔付金额(美元)
"
,
dataIndex
:
"
patientName5
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB状态
"
,
dataIndex
:
"
patientName9
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
操作
"
,
dataIndex
:
"
operation
"
,
scopedSlots
:
{
customRender
:
"
operation
"
},
fixed
:
"
right
"
,
width
:
'
170px
'
}
];
export
default
{
data
()
{
return
{
columns
,
form
:
{
dateRange
:
[]
},
dataList
:
[],
pagination
:
{
pageNum
:
1
,
pageSize
:
10
,
total
:
0
},
};
},
methods
:
{
pageChange
(
pager
)
{
const
{
current
}
=
pager
;
this
.
pagination
.
pageNum
=
current
;
this
.
getData
();
},
handlerSearch
(){
this
.
pagination
.
pageNum
=
1
;
this
.
getData
();
},
getData
(){
},
//删除记录
delRecord
(
index
){
this
.
$modal
.
confirm
({
title
:
'
删除
'
,
content
:
'
确定删除该条记录?
'
,
okText
:
'
确认
'
,
cancelText
:
'
取消
'
,
onOk
:
()
=>
{
this
.
$store
.
dispatch
(
'
medicinal/delMedicine
'
,
{
id
:
this
.
dataList
[
index
].
id
,
status
:
-
1
})
.
then
(()
=>
{
this
.
$message
.
success
(
'
删除成功
'
);
this
.
dataList
.
splice
(
index
,
1
);
});
},
onCancel
:
()
=>
{}
});
}
},
};
</
script
>
<
style
lang=
"less"
scoped
>
.none-label {
text-align: right;
.ant-form-item-label {
opacity: 0;
}
}
.ant-btn .icon-class {
.mg-r(10);
}
.success.ant-btn-link {
color: #4cd964;
}
.danger.ant-btn-link {
color: #ff3b30;
}
</
style
>
src/views/verification/index.vue
View file @
0edd4e35
<
template
>
<
template
>
<div
class=
"index"
>
<div
class=
"white_bg burt-container"
>
<!-- 核销管理 -->
<!-- form -->
核销管理
<a-form-model
ref=
"form"
layout=
"vertical"
:model=
"form"
>
<a-row
:gutter=
"30"
>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"保障公司"
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择"
>
<a-select-option
value=
"1"
>
待核销
</a-select-option>
<a-select-option
value=
"2"
>
已核销
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"EOB收到日期"
>
<a-range-picker
format=
"YYYY年MM月DD日"
v-model=
"form.dateRange"
:placeholder=
"['开始日期','结束日期']"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"EOB名称"
>
<a-input
v-model=
"form.mrnNo"
placeholder=
"请输入EOB名称"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"EOB金额(人民币)"
>
<a-input
type=
"number"
v-model=
"form.mrnNo"
placeholder=
"请输入金额"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"EOB金额(美元)"
>
<a-input
type=
"number"
v-model=
"form.mrnNo"
placeholder=
"请输入金额"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
>
<a-form-model-item
label=
"EOB状态"
>
<a-select
v-model=
"form.payorId"
placeholder=
"请选择"
>
<a-select-option
value=
"1"
>
待核销
</a-select-option>
<a-select-option
value=
"2"
>
已核销
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col
:md=
"24"
:lg=
"12"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-button
type=
"primary"
>
导出
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
>
<Icon
name=
"ssiadd"
:size=
"14"
/>
新建EOB
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
>
<Icon
name=
"ssireset"
:size=
"14"
/>
重置
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
<!-- table -->
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }"
:pagination="pagination"
@change="pageChange"
>
<template
slot=
"operation"
slot-scope=
"record,index"
>
<a-button
type=
"link"
>
修改
</a-button>
<a-button
type=
"link"
class=
"success"
>
新增
</a-button>
<a-button
type=
"link"
class=
"danger"
@
click.stop=
"delRecord(index)"
>
删除
</a-button>
</
template
>
</a-table>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
const
columns
=
[
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
patientName2
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
patientName3
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
patientName4
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
自付金额
"
,
dataIndex
:
"
patientName5
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
理赔金额
"
,
dataIndex
:
"
patientName6
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
回款金额
"
,
dataIndex
:
"
patientName7
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
未赔付金额
"
,
dataIndex
:
"
patientName8
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
理赔状态
"
,
dataIndex
:
"
patientName9
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
操作
"
,
dataIndex
:
"
operation
"
,
scopedSlots
:
{
customRender
:
"
operation
"
},
fixed
:
"
right
"
,
width
:
'
170px
'
}
];
export
default
{
export
default
{
data
()
{
data
()
{
return
{};
return
{
columns
,
form
:
{
dateRange
:
[]
},
dataList
:
[],
pagination
:
{
pageNum
:
1
,
pageSize
:
10
,
total
:
0
},
};
},
methods
:
{
pageChange
(
pager
)
{
const
{
current
}
=
pager
;
this
.
pagination
.
pageNum
=
current
;
this
.
getData
();
},
handlerSearch
(){
this
.
pagination
.
pageNum
=
1
;
this
.
getData
();
},
getData
(){
},
//删除记录
delRecord
(
index
){
this
.
$modal
.
confirm
({
title
:
'
删除
'
,
content
:
'
确定删除该条记录?
'
,
okText
:
'
确认
'
,
cancelText
:
'
取消
'
,
onOk
:
()
=>
{
this
.
$store
.
dispatch
(
'
medicinal/delMedicine
'
,
{
id
:
this
.
dataList
[
index
].
id
,
status
:
-
1
})
.
then
(()
=>
{
this
.
$message
.
success
(
'
删除成功
'
);
this
.
dataList
.
splice
(
index
,
1
);
});
},
onCancel
:
()
=>
{}
});
}
},
},
computed
:
{},
watch
:
{},
methods
:
{},
};
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
></
style
>
<
style
lang=
"less"
scoped
>
.none-label {
text-align: right;
.ant-form-item-label {
opacity: 0;
}
}
.ant-btn .icon-class {
.mg-r(10);
}
.success.ant-btn-link {
color: #4cd964;
}
.danger.ant-btn-link {
color: #ff3b30;
}
</
style
>
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