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
9e54e6d1
Commit
9e54e6d1
authored
Oct 12, 2023
by
刘怀志
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
68400 缴费管理,住院治疗的支付金额为0.00 元时金额及付款时间显示不正确
parent
fb0aa66a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
medical-edit.vue
src/views/medical-record-management/medical-edit.vue
+4
-2
No files found.
src/views/medical-record-management/medical-edit.vue
View file @
9e54e6d1
...
...
@@ -1364,7 +1364,7 @@ color: #333333;"
<
/el-table-column
>
<
el
-
table
-
column
:
show
-
overflow
-
tooltip
=
"true"
align
=
"left"
label
=
"金额"
prop
=
"standardAmount"
>
<
template
slot
-
scope
=
"scope"
>
{{
scope
.
row
.
standardAmount
|
formatAmount
}}
{{
scope
.
row
.
standardAmount
||
scope
.
row
.
standardAmount
===
0
?
(
moneyFormat
(
scope
.
row
.
standardAmount
)
+
' 元'
)
:
'-'
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
show
-
overflow
-
tooltip
=
"true"
align
=
"left"
label
=
"缴费状态"
prop
=
"payStatus"
>
...
...
@@ -1378,7 +1378,7 @@ color: #333333;"
<
/el-table-column
>
<
el
-
table
-
column
:
show
-
overflow
-
tooltip
=
"true"
align
=
"left"
label
=
"缴费时间"
prop
=
"payTime"
>
<
template
slot
-
scope
=
"scope"
>
{{
scope
.
row
.
payTime
||
'-'
}}
{{
scope
.
row
.
payTime
?
`${moment(scope.row.payTime).format('yyyy/MM/DD HH:mm:ss')
}
`
:
'-'
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
show
-
overflow
-
tooltip
=
"true"
align
=
"left"
label
=
"付款账号"
prop
=
"ownerId"
>
...
...
@@ -1519,6 +1519,7 @@ import { addHospital, delHospital, listHospital, updateHospitalRecord } from '@/
import
moment
from
'moment/moment'
import
petPic
from
'@/assets/images/default_pet.jpg'
import
{
checkPermi
}
from
'@/utils/permission'
import
{
moneyFormat
}
from
'@/utils'
export
default
{
name
:
'MedicalEdit'
,
...
...
@@ -1847,6 +1848,7 @@ export default {
this
.
getDrugList
()
}
,
methods
:
{
moneyFormat
,
/* 清空按钮方法 */
handleClearRow
(
row
,
listName
,
removeButtonId
)
{
// 删除信息行
...
...
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