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
4a711255
Commit
4a711255
authored
Sep 08, 2023
by
高滢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
住院颜色
parent
f21f6d71
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
11 deletions
+14
-11
assign-wards.vue
...nt/hospitalization-management/components/assign-wards.vue
+1
-0
handling-admissions.vue
...italization-management/components/handling-admissions.vue
+1
-0
hospitalization-details.vue
...nt/hospitalization-management/hospitalization-details.vue
+4
-4
hospitalization-management.vue
...hospitalization-management/hospitalization-management.vue
+8
-7
No files found.
src/views/service-management/hospitalization-management/components/assign-wards.vue
View file @
4a711255
...
...
@@ -46,6 +46,7 @@
<!-- 列表区-->
<el-table
ref=
"table"
style=
"cursor: pointer;"
:data=
"wardList"
:header-cell-style=
"
{ background:'#E8E9E8' }"
:row-class-name="highlightRow"
...
...
src/views/service-management/hospitalization-management/components/handling-admissions.vue
View file @
4a711255
...
...
@@ -82,6 +82,7 @@
<div
style=
"padding: 0 20px"
>
<!-- 列表区-->
<el-table
style=
"cursor: pointer;"
ref=
"table"
:data=
"wardList"
:header-cell-style=
"
{ background:'#E8E9E8' }"
...
...
src/views/service-management/hospitalization-management/hospitalization-details.vue
View file @
4a711255
...
...
@@ -332,7 +332,7 @@
</div>
<div
style=
"padding: 20px;"
>
<el-table
:data=
"hosDetailBos"
>
<el-table
:data=
"hosDetailBos"
style=
"cursor: pointer;"
>
<el-table-column
label=
"病房类型"
align=
"left"
prop=
"wardType"
>
<template
slot-scope=
"scope"
>
<dict-tag
v-if=
"scope.row.wardType"
:options=
"dict.type.ward_type"
:value=
"scope.row.wardType"
/>
...
...
@@ -354,11 +354,11 @@
<
template
slot
-
scope
=
"scope"
>
<
div
v
-
if
=
"detailInfo.status<4"
>
<
span
v
-
if
=
"scope.row.status === '3'"
style
=
"color:#ff9d4e "
>
已转出
<
/span
>
<
span
v
-
else
-
if
=
"scope.row.status === '2'"
style
=
"color:
#5bb647
"
>
住院中
<
/span
>
<
span
v
-
else
-
if
=
"scope.row.status === '2'"
style
=
"color:
#3490CE
"
>
住院中
<
/span
>
<
span
v
-
else
>-<
/span
>
<
/div
>
<
div
v
-
else
>
<
span
style
=
"color:#
DB4747
"
>
已出院
<
/span
>
<
span
style
=
"color:#
000000
"
>
已出院
<
/span
>
<
/div
>
<
/template
>
<
/el-table-column
>
...
...
@@ -377,7 +377,7 @@
<
/div
>
<
div
style
=
"padding: 30px 20px 30px 20px;"
>
<
el
-
table
:
data
=
"finTradeHis"
>
<
el
-
table
:
data
=
"finTradeHis"
style
=
"cursor: pointer;"
>
<
el
-
table
-
column
label
=
"时间"
align
=
"left"
prop
=
"createTime"
/>
<
el
-
table
-
column
label
=
"金额"
align
=
"left"
prop
=
"paymentAmount"
>
<
template
slot
-
scope
=
"scope"
>
...
...
src/views/service-management/hospitalization-management/hospitalization-management.vue
View file @
4a711255
...
...
@@ -49,12 +49,12 @@
/>
</el-form-item>
<el-form-item>
<el-select
v-model=
"sortedColumn"
clearable
value-key=
"id"
placeholder=
"请选择排序方式"
@
change=
"handleSort"
>
<el-select
v-model=
"sortedColumn"
clearable
placeholder=
"请选择排序方式"
@
change=
"handleSort"
>
<el-option
v-for=
"
item
in sortedList"
:key=
"i
tem.id
"
v-for=
"
(item,index)
in sortedList"
:key=
"i
ndex
"
:label=
"item.sortedColumn"
:value=
"item"
:value=
"item
.id
"
/>
</el-select>
</el-form-item>
...
...
@@ -105,6 +105,7 @@
<el-table
ref=
"table"
style=
"cursor: pointer;"
v-loading=
"loading"
:data=
"hospitalList"
:row-key=
"getRowKeys"
...
...
@@ -415,9 +416,9 @@ export default {
}
,
// 选择排序规则
handleSort
(
val
)
{
this
.
queryParams
.
sort
=
val
.
nameColumn
this
.
queryParams
.
isAsc
=
val
.
collation
this
.
sortedColumn
=
val
.
sortedColumn
console
.
log
(
this
.
sortedList
[
val
])
this
.
queryParams
.
sort
=
val
//
this.sortedColumn = val.sortedColumn
}
,
// 去详情页
handleDetails
(
row
)
{
...
...
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