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
9101e3f0
Commit
9101e3f0
authored
Dec 09, 2022
by
朱彩云
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ECCS-1845' into 'master'
客户上的保单到期日期自动按生效日期处理 See merge request
!19
parents
61f99195
0061005d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
4 deletions
+36
-4
index.vue
src/views/customer/edit/index.vue
+9
-1
collectionDetail.vue
src/views/verification/collectionDetail.vue
+20
-1
index.vue
src/views/welfare/info/components/coverages/index.vue
+7
-2
No files found.
src/views/customer/edit/index.vue
View file @
9101e3f0
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
<a-form-model-item
label=
"保单生效日期"
prop=
"startDate"
>
<a-form-model-item
label=
"保单生效日期"
prop=
"startDate"
>
<a-date-picker
allow-clear
v-model=
"form.startDate"
placeholder=
"请选择保单生效日期"
value-format=
"YYYY-MM-DD 00:00:00"
></a-date-picker>
<a-date-picker
allow-clear
v-model=
"form.startDate"
placeholder=
"请选择保单生效日期"
value-format=
"YYYY-MM-DD 00:00:00"
@
change=
"startDateChange"
></a-date-picker>
</a-form-model-item>
</a-form-model-item>
<a-form-model-item
label=
"是否承担既往症"
prop=
"isUndertakeAnamnesis"
>
<a-form-model-item
label=
"是否承担既往症"
prop=
"isUndertakeAnamnesis"
>
<a-radio-group
v-model=
"form.isUndertakeAnamnesis"
:default-value=
"form.isUndertakeAnamnesis"
button-style=
"solid"
>
<a-radio-group
v-model=
"form.isUndertakeAnamnesis"
:default-value=
"form.isUndertakeAnamnesis"
button-style=
"solid"
>
...
@@ -173,6 +173,7 @@
...
@@ -173,6 +173,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
moment
from
'
moment
'
export
default
{
export
default
{
beforeRouteUpdate
(
to
,
from
,
next
)
{
beforeRouteUpdate
(
to
,
from
,
next
)
{
this
.
$refs
.
form
.
resetFields
();
this
.
$refs
.
form
.
resetFields
();
...
@@ -186,6 +187,8 @@ export default {
...
@@ -186,6 +187,8 @@ export default {
payorId
:
undefined
,
payorId
:
undefined
,
corpName
:
undefined
,
corpName
:
undefined
,
planName
:
undefined
,
planName
:
undefined
,
startDate
:
undefined
,
endDate
:
undefined
,
waitingPeriod
:
"
N
"
,
waitingPeriod
:
"
N
"
,
isUndertakeAnamnesis
:
"
N
"
,
isUndertakeAnamnesis
:
"
N
"
,
medCardCopeFiles
:
[],
medCardCopeFiles
:
[],
...
@@ -219,6 +222,11 @@ export default {
...
@@ -219,6 +222,11 @@ export default {
this
.
initCodeData
();
this
.
initCodeData
();
},
},
methods
:
{
methods
:
{
// 保单生效日期选择后自动将保单结束日期置为一年后
startDateChange
(
val
)
{
if
(
!
val
){
return
}
this
.
form
.
endDate
=
moment
(
val
).
add
(
1
,
'
year
'
).
format
(
'
YYYY-MM-DD 00:00:00
'
)
},
handlerSave
()
{
handlerSave
()
{
this
.
$refs
.
form
.
validate
((
valid
)
=>
{
this
.
$refs
.
form
.
validate
((
valid
)
=>
{
if
(
!
valid
)
{
if
(
!
valid
)
{
...
...
src/views/verification/collectionDetail.vue
View file @
9101e3f0
...
@@ -55,6 +55,9 @@
...
@@ -55,6 +55,9 @@
<!-- table -->
<!-- table -->
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }" :pagination="false"
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }" :pagination="false"
:row-selection="isEditNewEOB? { selectedRowKeys: selectedRowKeys, onChange: onSelectChange }: null">
:row-selection="isEditNewEOB? { selectedRowKeys: selectedRowKeys, onChange: onSelectChange }: null">
<template
slot=
"eobNo"
slot-scope=
"text,record"
>
<a
@
click=
"toEOBDetail(record)"
>
{{
text
}}
</a>
</
template
>
<
template
slot=
"eobSts"
slot-scope=
"text"
>
<
template
slot=
"eobSts"
slot-scope=
"text"
>
{{
text
|
formatEOBStatus
}}
{{
text
|
formatEOBStatus
}}
</
template
>
</
template
>
...
@@ -152,7 +155,7 @@ export default {
...
@@ -152,7 +155,7 @@ export default {
computed
:
{
computed
:
{
columns
()
{
columns
()
{
const
base
=
[
const
base
=
[
{
title
:
"
EOB编号
"
,
dataIndex
:
"
eobNo
"
,
ellipsis
:
true
,
width
:
150
},
{
title
:
"
EOB编号
"
,
dataIndex
:
"
eobNo
"
,
scopedSlots
:
{
customRender
:
'
eobNo
'
},
ellipsis
:
true
,
width
:
150
},
{
title
:
"
EOB名称
"
,
dataIndex
:
"
eobName
"
,
ellipsis
:
true
,
width
:
195
},
{
title
:
"
EOB名称
"
,
dataIndex
:
"
eobName
"
,
ellipsis
:
true
,
width
:
195
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
eobBackDate
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobBackDate
"
},
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
eobBackDate
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobBackDate
"
},
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
110
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
110
},
...
@@ -184,6 +187,22 @@ export default {
...
@@ -184,6 +187,22 @@ export default {
},
},
methods
:
{
methods
:
{
moment
,
moment
,
// 查看的超链点击时链接已经生成好了,所以要点击的时候才set值才是对应的,不然存的都是最后一条数据
setData
(
record
){
console
.
log
(
record
)
localStorage
.
setItem
(
'
EobDataDetail
'
,
JSON
.
stringify
(
record
));
},
// EOB添加去查看的超链
toEOBDetail
(
record
){
const
{
eobNo
}
=
record
;
localStorage
.
setItem
(
'
EobDataDetail
'
,
JSON
.
stringify
(
record
));
this
.
$router
.
push
({
path
:
'
/verification/detail
'
,
query
:
{
eobNo
}
})
},
onSelectChange
(
selectedRowKeys
)
{
onSelectChange
(
selectedRowKeys
)
{
let
arr
=
[];
let
arr
=
[];
for
(
let
i
=
0
;
i
<
selectedRowKeys
.
length
;
i
++
){
for
(
let
i
=
0
;
i
<
selectedRowKeys
.
length
;
i
++
){
...
...
src/views/welfare/info/components/coverages/index.vue
View file @
9101e3f0
...
@@ -117,13 +117,18 @@ export default {
...
@@ -117,13 +117,18 @@ export default {
}
}
this
.
coverageData
.
splice
(
index
,
1
);
this
.
coverageData
.
splice
(
index
,
1
);
},
},
// 点击选择或取消选择科室
specialtyChange
(
code
)
{
specialtyChange
(
code
)
{
if
(
code
||
code
==
0
)
{
if
(
code
||
code
==
0
)
{
const
index
=
this
.
type
.
indexOf
(
code
)
if
(
index
<
0
)
{
this
.
type
.
push
(
code
)
this
.
type
.
push
(
code
)
}
else
{
this
.
type
.
splice
(
index
,
1
)
}
}
else
{
}
else
{
this
.
type
=
[];
this
.
type
=
[];
}
}
console
.
log
(
code
,
code
||
code
==
0
,
this
.
type
)
this
.
_getCoverageList
();
this
.
_getCoverageList
();
},
},
// 选择框筛选
// 选择框筛选
...
...
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