Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
刘怀志
pet-business-web
Commits
21e3a840
Commit
21e3a840
authored
Aug 21, 2023
by
盖献康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug(66387) - 检查管理金额的元
parent
ecf4fa06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
check-subscribe.vue
...-management/medical-record-management/check-subscribe.vue
+3
-3
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+3
-3
No files found.
src/views/service-management/medical-record-management/check-subscribe.vue
View file @
21e3a840
...
...
@@ -206,8 +206,8 @@
</el-form-item>
</el-col>
<el-col
v-show=
"subscribeMessage.checkType === '2'"
:span=
"8"
>
<el-form-item
label=
"
支出账户
余额"
label-width=
"96px"
>
<span>
{{
'¥' + moneyFormat(currentHospital.currentBalance)
}}
</span>
<el-form-item
label=
"
预储值
余额"
label-width=
"96px"
>
<span>
{{
moneyFormat(currentHospital.currentBalance) + ' 元'
}}
</span>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -411,7 +411,7 @@ export default {
this
.
total
=
res
.
total
if
(
this
.
subscribeMessage
.
checkType
===
'2'
&&
this
.
deviceList
.
length
>
0
)
{
this
.
deviceList
.
forEach
(
item
=>
{
item
[
'price'
]
=
'¥'
+
this
.
subscribeMessage
.
payAmount
item
[
'price'
]
=
this
.
subscribeMessage
.
payAmount
+
' 元'
}
)
}
console
.
log
(
'列表'
,
this
.
deviceList
)
...
...
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
21e3a840
...
...
@@ -305,8 +305,8 @@
<
/el-form-item
>
<
/el-col
>
<
el
-
col
v
-
show
=
"currentCheckType === '2'"
:
span
=
"6"
>
<
el
-
form
-
item
label
=
"
支出账户
余额"
prop
=
"shadowReport"
label
-
width
=
"120"
>
<
span
v
-
if
=
"currentHospital !== undefined && currentHospital !== null"
>
{{
'¥'
+
moneyFormat
(
currentHospital
.
currentBalance
||
0
)
}}
<
/span
>
<
el
-
form
-
item
label
=
"
预储值
余额"
prop
=
"shadowReport"
label
-
width
=
"120"
>
<
span
v
-
if
=
"currentHospital !== undefined && currentHospital !== null"
>
{{
moneyFormat
(
currentHospital
.
currentBalance
||
0.00
)
+
' 元'
}}
<
/span
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
...
...
@@ -766,7 +766,7 @@ export default {
this
.
deviceTotal
=
res
.
total
if
(
this
.
currentCheckType
===
'2'
&&
this
.
deviceList
.
length
>
0
)
{
this
.
deviceList
.
forEach
(
item
=>
{
item
[
'price'
]
=
'¥'
+
this
.
keepTwoDecimals
(
this
.
currentPayAmount
)
item
[
'price'
]
=
this
.
keepTwoDecimals
(
this
.
currentPayAmount
)
+
' 元'
}
)
}
}
)
...
...
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