Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
省
省二结算
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
任鸿志
省二结算
Commits
5f0bee8c
Commit
5f0bee8c
authored
Jul 11, 2025
by
任鸿志
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(outpatientCharging): 修复医保个账支付逻辑
- 在输入框中添加个人自付额度的判断,禁止使用医保个账支付个人自付部分 - 修改计算逻辑,当个人自付额度不为 0 时,将医保个账支付金额设置为 0
parent
1a4989e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
outpatientCharging.vue
src/views/jiesuan/outpatientCharging.vue
+8
-4
No files found.
src/views/jiesuan/outpatientCharging.vue
View file @
5f0bee8c
...
...
@@ -383,7 +383,7 @@
<el-form-item>
<div
class=
"form_item"
>
<el-tag
class=
"label"
color=
"#E7EEFF"
style=
"color: #1a5bfd; font-weight: 600"
><span>
医保个账支付
</span></el-tag>
<el-input
v-model=
"bxxxinfo.grzhzf"
@
input=
"gjzhifu()"
@
blur=
"grzhzfBlur()"
type=
"number"
:disabled=
"form.insurance_type == 'LONGDISTANCE'"
></el-input>
<el-input
v-model=
"bxxxinfo.grzhzf"
@
input=
"gjzhifu()"
@
blur=
"grzhzfBlur()"
type=
"number"
:disabled=
"form.insurance_type == 'LONGDISTANCE'
|| bxxxinfo.personal_pay_syd * 1 !=0
"
></el-input>
</div>
</el-form-item>
<el-form-item>
...
...
@@ -2537,12 +2537,16 @@ export default {
let
djf
=
this
.
round
(
this
.
round
(
this
.
round
(
this
.
bxxxinfo
.
patient_burden
-
this
.
bxxxinfo
.
gjzhzf
,
2
)
-
this
.
bxxxinfo
.
his_deduct_amount
,
2
)
-
this
.
bxxxinfo
.
grzhzf
,
2
)
//this.round(this.round(this.round(this.round(this.bxxxinfo.patient_burden - this.bxxxinfo.gjzhzf, 2) - this.bxxxinfo.his_deduct_amount, 2) - this.bxxxinfo.grzhzf, 2) - this.bxxxinfo.personal_pay_syd,2)
if
(
this
.
bxxxinfo
.
personal_balance
>=
djf
)
{
this
.
bxxxinfo
.
grzhzf
=
djf
// if (this.form.insurance_type == 'LONGDISTANCE') {
// this.bxxxinfo.grzhzf = 0
// }
if
(
this
.
bxxxinfo
.
personal_pay_syd
*
1
!=
0
)
{
this
.
bxxxinfo
.
grzhzf
=
0
}
}
if
(
this
.
bxxxinfo
.
personal_balance
<
djf
)
{
this
.
bxxxinfo
.
grzhzf
=
this
.
bxxxinfo
.
personal_balance
if
(
this
.
bxxxinfo
.
personal_pay_syd
*
1
!=
0
)
{
this
.
bxxxinfo
.
grzhzf
=
0
}
// if (this.form.insurance_type == 'LONGDISTANCE') {
// this.bxxxinfo.grzhzf = 0
// }
...
...
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