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
94f9811a
Commit
94f9811a
authored
Sep 07, 2023
by
陈明豪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修改
parent
65e2f936
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
5 deletions
+33
-5
DetailInput.vue
src/components/DetailInput/DetailInput.vue
+26
-0
check-detail.vue
...ice-management/medical-record-management/check-detail.vue
+7
-5
No files found.
src/components/DetailInput/DetailInput.vue
0 → 100644
View file @
94f9811a
<
template
>
<el-input
v-model=
"value"
:disabled=
"true"
/>
</
template
>
<
script
>
export
default
{
name
:
'DetailInput'
,
props
:
[
'value'
],
data
()
{
return
{
}
},
watch
:
{},
created
()
{
},
methods
:
{}
}
</
script
>
<
style
scoped
lang=
"scss"
>
::v-deep
.el-input.is-disabled
.el-input__inner
{
color
:
#333
!
important
;
background-color
:
#f4f4f4
!
important
;
}
</
style
>
src/views/service-management/medical-record-management/check-detail.vue
View file @
94f9811a
...
...
@@ -190,7 +190,7 @@
<!--
<el-step
title=
"检查获取报告"
:description=
"parseTime(checkDetail.reportTime, '
{y}-{m}-{d} {h}:{i}') || '暂未检查'" />-->
<!--
</el-steps>
-->
<!--
</div>
-->
<CheckSchedule
class=
"check-progress"
v-if=
"!isPlatRole
"
:schedule-key=
"scheduleKey"
/>
<CheckSchedule
v-if=
"!isPlatRole"
class=
"check-progress
"
:schedule-key=
"scheduleKey"
/>
<!-- 缴费信息 -->
<div
v-if=
"!isPlatRole"
>
<div
class=
"title-paragraph"
style=
"margin-top: 0px;"
>
...
...
@@ -309,7 +309,7 @@
</el-col>
<el-col
v-if=
"isPlatRole"
:span=
"8"
>
<el-form-item
label=
"下单医院"
>
<el-input
:placeholder=
"checkDetail.hospitalName
"
disabled=
"true"
style=
"width: 80%"
/>
<el-input
v-model=
"checkDetail.hospitalName"
placeholder=
"-
"
disabled=
"true"
style=
"width: 80%"
/>
</el-form-item>
</el-col>
<el-col
v-show=
"checkDetail.checkType === '2'"
:span=
"8"
>
...
...
@@ -422,7 +422,7 @@
<el-form-item
label=
"影像报告"
>
<div
v-if=
"checkDetail.shadowReport === null || checkDetail.shadowReport === ''"
>
<el-input
v-model=
"
checkDetail.shadow
Report"
v-model=
"
null
Report"
class=
"input-detail"
placeholder=
"暂未上传"
disabled
...
...
@@ -491,6 +491,7 @@ export default {
return
{
isPlatRole
:
false
,
checkDetail
:
{},
nullReport
:
'暂未上传'
,
schedule
:
1
,
videoReportVisible
:
false
,
// 影像报告
...
...
@@ -599,10 +600,11 @@ export default {
payTime
:
parseTime
(
this
.
checkDetail
.
payTime
,
'{y}/{m}/{d} {h}:{i}'
),
appointTime
:
parseTime
(
this
.
checkDetail
.
appointTime
,
'{y}/{m}/{d} {h}:{i}'
),
// 下单时间
checkStartTime
:
parseTime
(
this
.
checkDetail
.
checkStartTime
,
'{y}/{m}/{d}'
),
// 检查日期
reportTime
:
parseTime
(
this
.
checkDetail
.
reportTime
,
'{y}/{m}/{d} {h}:{i}'
)
// 报告上传时间
reportTime
:
this
.
checkDetail
.
reportTime
?
parseTime
(
this
.
checkDetail
.
reportTime
,
'{y}/{m}/{d} {h}:{i}'
)
:
'暂未上传'
// 报告上传时间
}
this
.
checkDetail
.
payAmount
=
this
.
keepTwoDecimals
(
this
.
checkDetail
.
payAmount
)
this
.
checkDetail
.
devicePrice
=
this
.
keepTwoDecimals
(
this
.
checkDetail
.
devicePrice
)
this
.
checkDetail
.
devicePrice
=
moneyFormat
(
this
.
checkDetail
.
devicePrice
)
// this.checkDetail.shadowReport = this.checkDetail.shadowReport ? this.checkDetail.shadowReport : '暂未上传'
this
.
schedule
=
parseInt
(
this
.
checkDetail
.
checkSchedule
)
+
1
this
.
scheduleKey
=
{
checkSchedule
:
this
.
checkDetail
.
checkSchedule
,
...
...
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