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
34e69852
Commit
34e69852
authored
Jul 07, 2025
by
任鸿志
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(outpatientCharging): 增加自费结算开关功能
- 在门诊收费页面添加自费结算开关 - 开启自费结算开关后,才能进行自费结算操作 - 添加相关样式,优化自费结算开关的显示效果
parent
5428c504
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
6 deletions
+47
-6
outpatientCharging.vue
src/views/jiesuan/outpatientCharging.vue
+47
-6
No files found.
src/views/jiesuan/outpatientCharging.vue
View file @
34e69852
...
@@ -36,6 +36,10 @@
...
@@ -36,6 +36,10 @@
<el-checkbox
v-model=
"is_sy"
>
计划生育
</el-checkbox>
<el-checkbox
v-model=
"is_sy"
>
计划生育
</el-checkbox>
<!--
<el-checkbox
v-model=
"insurance_payment"
>
智慧医保支付
</el-checkbox>
-->
<!--
<el-checkbox
v-model=
"insurance_payment"
>
智慧医保支付
</el-checkbox>
-->
</div>
</div>
<div
style=
"display: flex"
class=
"tableScopeSwitchBox"
>
<div>
开启自费结算:
</div>
<el-switch
class=
"tableScopeSwitch"
v-model=
"zifei_disable"
active-color=
"#13ce66"
active-text=
"是"
inactive-text=
"否"
inactive-color=
"#ff4949"
>
</el-switch>
</div>
<div
style=
"display: flex"
v-if=
"patientInfo.yblx != '01'"
>
<div
style=
"display: flex"
v-if=
"patientInfo.yblx != '01'"
>
<div
style=
"line-height: 28px; width: 75px"
>
结算类型:
</div>
<div
style=
"line-height: 28px; width: 75px"
>
结算类型:
</div>
<div
class=
"selectinput"
style=
"margin-left: 20px"
>
<div
class=
"selectinput"
style=
"margin-left: 20px"
>
...
@@ -642,6 +646,7 @@ export default {
...
@@ -642,6 +646,7 @@ export default {
name
:
'
Outpatient
'
,
name
:
'
Outpatient
'
,
data
()
{
data
()
{
return
{
return
{
zifei_disable
:
false
,
is_sy
:
false
,
is_sy
:
false
,
saveLoding
:
false
,
saveLoding
:
false
,
invoicepostData
:
{},
invoicepostData
:
{},
...
@@ -1818,7 +1823,7 @@ export default {
...
@@ -1818,7 +1823,7 @@ export default {
},
},
ybjs
()
{
ybjs
()
{
if
((
this
.
checktipes
()
&&
this
.
man_name
!=
'
1
'
)
||
this
.
man_name
==
'
2
'
||
this
.
man_name
==
'
3
'
)
{
if
((
this
.
checktipes
()
&&
this
.
man_name
!=
'
1
'
)
||
this
.
man_name
==
'
2
'
||
this
.
man_name
==
'
3
'
)
{
if
(
this
.
channel
==
'
5
'
)
{
if
(
this
.
channel
==
'
5
'
)
{
this
.
$message
({
this
.
$message
({
message
:
'
药房药库禁止医保结算,请转为自费结算!
'
,
message
:
'
药房药库禁止医保结算,请转为自费结算!
'
,
type
:
'
error
'
,
type
:
'
error
'
,
...
@@ -1829,6 +1834,13 @@ export default {
...
@@ -1829,6 +1834,13 @@ export default {
this
.
yibaoshowNew
=
true
this
.
yibaoshowNew
=
true
this
.
yujiesuanload
=
false
this
.
yujiesuanload
=
false
}
else
{
}
else
{
if
(
!
this
.
zifei_disable
)
{
this
.
$message
({
message
:
'
若要自费结算请开启自费结算开关!
'
,
type
:
'
error
'
,
})
return
false
}
// this.jiesuanadmin()
// this.jiesuanadmin()
this
.
zfBeforePre
()
this
.
zfBeforePre
()
}
}
...
@@ -3447,4 +3459,33 @@ button:active {
...
@@ -3447,4 +3459,33 @@ button:active {
font-size
:
26px
;
font-size
:
26px
;
color
:
#f50303
;
color
:
#f50303
;
}
}
::v-deep
.tableScopeSwitchBox
.tableScopeSwitch
.el-switch__label
{
position
:
absolute
;
display
:
none
;
color
:
#fff
;
}
/*打开时文字位置设置*/
::v-deep
.tableScopeSwitchBox
.tableScopeSwitch
.el-switch__label--right
{
z-index
:
1
;
right
:
6px
;
}
/*关闭时文字位置设置*/
::v-deep
.tableScopeSwitchBox
.tableScopeSwitch
.el-switch__label--left
{
z-index
:
1
;
left
:
6px
;
}
/*显示文字*/
::v-deep
.tableScopeSwitchBox
.tableScopeSwitch
.el-switch__label.is-active
{
display
:
block
;
text-align
:
center
;
}
/*开关按钮的宽度大小*/
::v-deep
.tableScopeSwitchBox
.tableScopeSwitch.el-switch
.el-switch__core
,
::v-deep
.tableScopeSwitchBox
.el-switch
.el-switch__label
{
width
:
60px
!
important
;
}
</
style
>
</
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