Commit 94f9811a authored by 陈明豪's avatar 陈明豪

bug修改

parent 65e2f936
<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>
......@@ -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.shadowReport"
v-model="nullReport"
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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment