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
b4208943
Commit
b4208943
authored
Mar 07, 2022
by
吴婷慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试问题修改
parent
4916d948
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
13 deletions
+30
-13
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+7
-5
infoDoctor.vue
src/views/info/components/infoDoctor.vue
+8
-3
index.vue
src/views/welfare/edit/components/benefits/index.vue
+14
-4
index.vue
src/views/welfare/edit/components/coverages/index.vue
+1
-1
No files found.
src/views/charge-query/lpjManageDetail.vue
View file @
b4208943
...
@@ -157,14 +157,16 @@ import moment from 'moment'
...
@@ -157,14 +157,16 @@ import moment from 'moment'
export
default
{
export
default
{
data
()
{
data
()
{
const
columns
=
[
const
columns
=
[
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
key
:
"
receiptNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
visitTimeStart
"
,
width
:
150
,
scopedSlots
:
{
customRender
:
"
visitTimeStart
"
}
},
{
title
:
"
病历号
"
,
dataIndex
:
"
patientNo
"
,
key
:
"
patientNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
病历号
"
,
dataIndex
:
"
patientNo
"
,
key
:
"
patientNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
98
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
98
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
110
},
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
key
:
"
receiptNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
visitTimeStart
"
,
width
:
200
,
scopedSlots
:
{
customRender
:
"
visitTimeStart
"
}
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
150
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
charge
Amount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
应收金额
"
,
dataIndex
:
"
receipt
Amount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
折后金额
"
,
dataIndex
:
"
discountAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
折后金额
"
,
dataIndex
:
"
discountAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
客户自负
"
,
dataIndex
:
"
paidAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
reduceAmount
"
,
width
:
100
,
align
:
'
center
'
},
// { title: "账单金额", dataIndex: "chargeAmount", width: 100, align: 'center' },
{
title
:
"
客户自付
"
,
dataIndex
:
"
paidAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
理赔金额
"
,
dataIndex
:
"
paidamount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
理赔金额
"
,
dataIndex
:
"
paidamount
"
,
width
:
100
,
align
:
'
center
'
},
// { title: "操作", key: "operation", width: "175px",fixed: "right",scopedSlots: { customRender: "operation" }},
// { title: "操作", key: "operation", width: "175px",fixed: "right",scopedSlots: { customRender: "operation" }},
];
];
...
...
src/views/info/components/infoDoctor.vue
View file @
b4208943
<
template
>
<
template
>
<div
class=
"info-doctor"
>
<div
class=
"info-doctor"
>
<div
class=
"mar-bottom10"
>
<a-button
type=
"primary"
@
click=
"editEvt(
{})">
<Icon
name=
"ssiadd"
:size=
"14"
/>
新建医生
</a-button>
</div>
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: 'max-content' }" :pagination="false">
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: 'max-content' }" :pagination="false">
<template
slot=
"specialtyList"
slot-scope=
"text, record"
>
<template
slot=
"specialtyList"
slot-scope=
"text, record"
>
<span>
{{
filterSpecialty
(
record
.
specialtyList
)
}}
</span>
<span>
{{
filterSpecialty
(
record
.
specialtyList
)
}}
</span>
...
@@ -180,7 +185,7 @@ export default{
...
@@ -180,7 +185,7 @@ export default{
},
},
editEvt
(
record
)
{
editEvt
(
record
)
{
this
.
editFormObj
=
{
this
.
editFormObj
=
{
id
:
record
.
id
||
""
,
id
:
record
.
id
||
undefined
,
doctorCode
:
record
.
doctorCode
||
""
,
doctorCode
:
record
.
doctorCode
||
""
,
doctorDesc
:
record
.
doctorDesc
||
""
,
doctorDesc
:
record
.
doctorDesc
||
""
,
doctorDescLang1
:
record
.
doctorDescLang1
||
""
,
doctorDescLang1
:
record
.
doctorDescLang1
||
""
,
...
@@ -194,8 +199,8 @@ export default{
...
@@ -194,8 +199,8 @@ export default{
handleEditOK
()
{
handleEditOK
()
{
this
.
$refs
.
editForm
.
validate
((
valid
)
=>
{
this
.
$refs
.
editForm
.
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
this
.
$apis
const
fn
=
this
.
editFormObj
.
id
?
this
.
$apis
.
DOCTORUPDATE
:
this
.
$apis
.
DOCTORCREATE
.
DOCTORUPDATE
({
fn
({
...
this
.
editFormObj
,
...
this
.
editFormObj
,
language
:
this
.
editFormObj
.
language
.
join
(
'
,
'
),
language
:
this
.
editFormObj
.
language
.
join
(
'
,
'
),
specialtyList
:
this
.
editFormObj
.
specialtyList
.
map
((
item
)
=>
{
specialtyList
:
this
.
editFormObj
.
specialtyList
.
map
((
item
)
=>
{
...
...
src/views/welfare/edit/components/benefits/index.vue
View file @
b4208943
...
@@ -85,7 +85,7 @@
...
@@ -85,7 +85,7 @@
</a-input-number>
</a-input-number>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:md=
"12"
>
<
!-- <
a-col :md="12">
<a-form-model-item label="英文描述">
<a-form-model-item label="英文描述">
<a-input v-model="editForm.englishDesc"></a-input>
<a-input v-model="editForm.englishDesc"></a-input>
</a-form-model-item>
</a-form-model-item>
...
@@ -94,7 +94,7 @@
...
@@ -94,7 +94,7 @@
<a-form-model-item label="描述">
<a-form-model-item label="描述">
<a-input v-model="editForm.loaDesc"> </a-input>
<a-input v-model="editForm.loaDesc"> </a-input>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
-->
<!-- <a-col :md="12">
<!-- <a-col :md="12">
<a-form-model-item label="状态">
<a-form-model-item label="状态">
<a-select
<a-select
...
@@ -167,7 +167,9 @@ export default {
...
@@ -167,7 +167,9 @@ export default {
isBenefitEditShow
:
false
,
isBenefitEditShow
:
false
,
benefitData
:
[],
benefitData
:
[],
benefitCode
:
[],
benefitCode
:
[],
editForm
:
{},
editForm
:
{
benefitCode
:
[]
},
editRule
:
{
editRule
:
{
benefitCode
:
[{
required
:
true
,
message
:
"
请选择福利项
"
}],
benefitCode
:
[{
required
:
true
,
message
:
"
请选择福利项
"
}],
startDate
:
[{
required
:
true
,
message
:
"
请选择开始时间
"
}],
startDate
:
[{
required
:
true
,
message
:
"
请选择开始时间
"
}],
...
@@ -194,12 +196,15 @@ export default {
...
@@ -194,12 +196,15 @@ export default {
corpCode
:
this
.
formData
.
corpCode
,
corpCode
:
this
.
formData
.
corpCode
,
planCode
:
this
.
formData
.
planCode
,
planCode
:
this
.
formData
.
planCode
,
coverageCode
:
this
.
formData
.
coverageCode
,
coverageCode
:
this
.
formData
.
coverageCode
,
benefitCode
:
''
,
isDirect
:
"
N
"
,
isDirect
:
"
N
"
,
status
:
"
1
"
,
status
:
"
1
"
,
};
};
this
.
_getBenefitCode
();
this
.
_getBenefitCode
();
this
.
editForm
=
this
.
$lodash
.
cloneDeep
(
data
);
this
.
editForm
=
this
.
$lodash
.
cloneDeep
(
data
);
// this.editForm.benefitCode = this.editForm.benefitCode ? this.editForm.benefitCode.split(',') : []
this
.
isBenefitEditShow
=
true
;
this
.
isBenefitEditShow
=
true
;
console
.
log
(
this
.
editForm
)
},
},
cancel
()
{
cancel
()
{
this
.
$refs
.
editForm
.
resetFields
();
this
.
$refs
.
editForm
.
resetFields
();
...
@@ -216,7 +221,12 @@ export default {
...
@@ -216,7 +221,12 @@ export default {
if
(
!
valid
)
{
if
(
!
valid
)
{
return
false
;
return
false
;
}
}
this
.
_editBenefitData
(
this
.
editForm
);
const
data
=
{
...
this
.
editForm
,
// benefitCode: this.editForm.benefitCode.join(',')
}
this
.
_editBenefitData
(
data
);
});
});
},
},
_editBenefitData
(
data
)
{
_editBenefitData
(
data
)
{
...
...
src/views/welfare/edit/components/coverages/index.vue
View file @
b4208943
...
@@ -126,7 +126,7 @@ export default {
...
@@ -126,7 +126,7 @@ export default {
}
}
return
val
;
return
val
;
}
},
}
},
{
title
:
"
备注
"
,
dataIndex
:
"
remark
"
},
{
title
:
"
备注
"
,
dataIndex
:
"
remark
s
"
},
{
{
title
:
"
操作
"
,
title
:
"
操作
"
,
key
:
"
operation
"
,
key
:
"
operation
"
,
...
...
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