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
919fa78b
Commit
919fa78b
authored
Aug 22, 2023
by
陈明豪
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
0838ed3d
6672ee2f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
13 deletions
+20
-13
use-details.vue
...views/equipment-management/use-management/use-details.vue
+1
-1
use-management.vue
...ws/equipment-management/use-management/use-management.vue
+8
-6
hospitalization-management.vue
...hospitalization-management/hospitalization-management.vue
+11
-6
No files found.
src/views/equipment-management/use-management/use-details.vue
View file @
919fa78b
...
...
@@ -286,7 +286,7 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"支付金额"
>
<el-input
v-model=
"form.payAmount"
:disabled=
"true"
placeholder=
"-"
style=
" width:
190px
"
/>
<el-input
v-model=
"form.payAmount"
:disabled=
"true"
placeholder=
"-"
style=
" width:
90%
"
/>
<span
style=
"margin-left: 5px"
>
元
</span>
</el-form-item>
</el-col>
...
...
src/views/equipment-management/use-management/use-management.vue
View file @
919fa78b
...
...
@@ -136,11 +136,11 @@
<
span
>
{{
parseTime
(
scope
.
row
.
reportTime
,
'{h
}
:{m
}
'
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"支付金额"
align
=
"left"
prop
=
"payAmount"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
formatPrice
(
scope
.
row
.
payAmount
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"支付金额"
align
=
"left"
prop
=
"payAmount"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
formatPrice
(
scope
.
row
.
payAmount
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"设备当前状态"
align
=
"left"
prop
=
"status"
>
<
template
slot
-
scope
=
"scope"
>
<
span
...
...
@@ -186,6 +186,7 @@
import
{
listUseManagement
,
listUseManagementAll
}
from
'@/api/business/use'
import
{
listItemByType
}
from
'@/api/business/item'
import
{
getInfo
}
from
'@/api/login'
import
{
parseStrEmpty
}
from
'@/utils/ruoyi'
export
default
{
name
:
'UseManagement'
,
...
...
@@ -285,7 +286,7 @@ export default {
methods
:
{
// 表格显示病房单价保留两位小数
formatPrice
(
cellValue
)
{
return
cellValue
.
toFixed
(
2
)
+
'元'
if
(
parseStrEmpty
(
cellValue
)
!==
''
)
{
return
cellValue
.
toFixed
(
2
)
+
'元'
}
}
,
// 表单选择框对齐
cellClass
(
row
)
{
...
...
@@ -387,6 +388,7 @@ export default {
listUseManagement
(
this
.
queryParams
).
then
(
res
=>
{
this
.
total
=
res
.
total
this
.
userList
=
res
.
rows
console
.
log
(
'this.userList'
,
this
.
userList
)
this
.
loading
=
false
console
.
log
(
'列表'
,
res
)
}
)
...
...
src/views/service-management/hospitalization-management/hospitalization-management.vue
View file @
919fa78b
...
...
@@ -345,7 +345,7 @@ export default {
moneyFormat
,
highlightRow
(
scope
)
{
if
(
scope
.
row
.
diseaseLevel
===
'1'
)
{
return
'
height-line
'
return
'
expenditure-highlight-row
'
}
}
,
// 病房下拉框
...
...
@@ -492,14 +492,19 @@ export default {
}
}
<
/script
>
<
style
>
.
height
-
line
{
background
-
color
:
rgba
(
85
,
163
,
67
,
0.2
)
!
important
;
}
<
/style
>
<
!--
<
style
>--
>
<!--
/*.height-line{*/
-->
<!--
/* background: #F6FCF5;*/
-->
<!--
//
}
-->
<
!--
<
/style>--
>
<
style
scoped
lang
=
"scss"
>
.
app
-
container
{
background
-
color
:
#
FFFFFF
;
}
.
el
-
table
{
.
expenditure
-
highlight
-
row
{
background
:
#
F6FCF5
;
}
}
<
/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