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
1eaed899
Commit
1eaed899
authored
Oct 07, 2023
by
高滢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
住院病房价格
parent
c25fc577
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
27 deletions
+27
-27
assign-wards.vue
...nt/hospitalization-management/components/assign-wards.vue
+13
-13
handling-admissions.vue
...italization-management/components/handling-admissions.vue
+14
-14
No files found.
src/views/service-management/hospitalization-management/components/assign-wards.vue
View file @
1eaed899
...
...
@@ -80,14 +80,14 @@
</el-table-column>
<el-table-column
label=
"标准价格"
min-width=
"80"
align=
"left"
show-overflow-tooltip
>
<
template
#
default=
"{row}"
>
<
div
v-if=
"row.chooseStatus==='0'"
>
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
inHospitalInfo
.
ordinaryPrice
)
+
'元/天'
}}
</span
>
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
inHospitalInfo
.
icuPrice
)
+
'元/天'
}}
</span>
<
/div
>
<
div
v-else
>
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
row
.
ordinaryPrice
)
+
'元/天'
}}
</span
>
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span
>
<
/div
>
<
!--
<div
v-if=
"row.chooseStatus==='0'"
>
--
>
<!--
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
inHospitalInfo
.
ordinaryPrice
)
+
'元/天'
}}
</span>
--
>
<span>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span>
<
!--
</div>
--
>
<
!--
<div
v-else
>
--
>
<!--
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
row
.
ordinaryPrice
)
+
'元/天'
}}
</span>
--
>
<!--
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span>
--
>
<
!--
</div>
--
>
</
template
>
</el-table-column>
<el-table-column
class-name=
"small-padding fixed-width"
align=
"left"
label=
"操作"
min-width=
"80"
>
...
...
@@ -271,11 +271,11 @@ export default {
this
.
chooseWard
.
wardLeaderName
=
row
.
wardLeaderName
this
.
chooseWard
.
wardLeaderPhone
=
row
.
wardLeaderPhone
this
.
highlightedRowId
=
row
.
wardId
if
(
row
.
wardType
===
'2'
)
{
this
.
chooseWard
.
standardAmount
=
row
.
icuPrice
}
else
if
(
row
.
wardType
===
'1'
)
{
this
.
chooseWard
.
standardAmount
=
row
.
ordinaryPrice
}
//
if (row.wardType === '2') {
this
.
chooseWard
.
standardAmount
=
row
.
icuPrice
//
} else if (row.wardType === '1') {
//
this.chooseWard.standardAmount = row.ordinaryPrice
//
}
},
highlightRow
(
scope
)
{
if
(
scope
.
row
.
chooseStatus
!==
'0'
)
{
...
...
src/views/service-management/hospitalization-management/components/handling-admissions.vue
View file @
1eaed899
...
...
@@ -82,8 +82,8 @@
<div
style=
"padding: 0 20px;margin-top: -10px"
>
<!-- 列表区-->
<el-table
style=
"cursor: pointer;"
ref=
"table"
style=
"cursor: pointer;"
:data=
"wardList"
:header-cell-style=
"
{ background:'#F4F4F4'}"
:row-class-name="highlightRow"
...
...
@@ -112,14 +112,14 @@
</el-table-column>
<el-table-column
label=
"病房每日单价"
min-width=
"80"
align=
"left"
show-overflow-tooltip
>
<
template
#
default=
"{row}"
>
<
div
v-if=
"row.chooseStatus==='0'"
>
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
inHospitalInfo
.
ordinaryPrice
)
+
'元/天'
}}
</span
>
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
inHospitalInfo
.
icuPrice
)
+
'元/天'
}}
</span>
<
/div
>
<
div
v-else
>
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
row
.
ordinaryPrice
)
+
'元/天'
}}
</span
>
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span
>
<
/div
>
<
!--
<div
v-if=
"row.chooseStatus==='0'"
>
--
>
<!--
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
inHospitalInfo
.
ordinaryPrice
)
+
'元/天'
}}
</span>
--
>
<span>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span>
<
!--
</div>
--
>
<
!--
<div
v-else
>
--
>
<!--
<span
v-show=
"row.wardType==='1'"
>
{{
moneyFormat
(
row
.
ordinaryPrice
)
+
'元/天'
}}
</span>
--
>
<!--
<span
v-show=
"row.wardType==='2'"
>
{{
moneyFormat
(
row
.
icuPrice
)
+
'元/天'
}}
</span>
--
>
<
!--
</div>
--
>
</
template
>
</el-table-column>
<el-table-column
class-name=
"small-padding fixed-width"
align=
"left"
label=
"操作"
min-width=
"80"
>
...
...
@@ -293,11 +293,11 @@ export default {
this
.
chooseWard
.
wardLeaderName
=
row
.
wardLeaderName
this
.
chooseWard
.
wardLeaderPhone
=
row
.
wardLeaderPhone
this
.
highlightedRowId
=
row
.
wardId
if
(
row
.
wardType
===
'2'
)
{
this
.
chooseWard
.
standardAmount
=
row
.
icuPrice
}
else
if
(
row
.
wardType
===
'1'
)
{
this
.
chooseWard
.
standardAmount
=
row
.
ordinaryPrice
}
//
if (row.wardType === '2') {
this
.
chooseWard
.
standardAmount
=
row
.
icuPrice
//
} else if (row.wardType === '1') {
//
this.chooseWard.standardAmount = row.ordinaryPrice
//
}
},
highlightRow
(
scope
)
{
if
(
scope
.
row
.
chooseStatus
!==
'0'
)
{
...
...
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