医学审核问题更改
parent
3d89939a98
commit
ff0ddeea9a
|
@ -11,8 +11,8 @@
|
||||||
<span>({{ record.CreateTime }}) </span>
|
<span>({{ record.CreateTime }}) </span>
|
||||||
</p>
|
</p>
|
||||||
<div class="info-content">
|
<div class="info-content">
|
||||||
<template v-if="[14, 30].includes(record.UserTypeEnumInt) && (record.MedicalDialogCloseEnum!== null || record.Content)">
|
<template v-if="[14, 30].includes(record.UserTypeEnumInt)">
|
||||||
<div>{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
<div v-if="record.MedicalDialogCloseEnum!== null">{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
||||||
<div v-if="record.Content">{{ $t('trials:medicalFeedback:title:closereasonRemarks') }}{{ record.Content }}</div>
|
<div v-if="record.Content">{{ $t('trials:medicalFeedback:title:closereasonRemarks') }}{{ record.Content }}</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
<span>({{ record.CreateTime }}) </span>
|
<span>({{ record.CreateTime }}) </span>
|
||||||
</p>
|
</p>
|
||||||
<div class="info-content">
|
<div class="info-content">
|
||||||
<template v-if="[14, 30].includes(record.UserTypeEnumInt) && (record.MedicalDialogCloseEnum!== null || record.Content)">
|
<template v-if="[14, 30].includes(record.UserTypeEnumInt)">
|
||||||
<div>{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
<div v-if="record.MedicalDialogCloseEnum!== null">{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
||||||
<div v-if="record.Content">{{ $t('trials:medicalFeedback:title:closereasonRemarks') }}{{ record.Content }}</div>
|
<div v-if="record.Content">{{ $t('trials:medicalFeedback:title:closereasonRemarks') }}{{ record.Content }}</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -260,7 +260,11 @@ export default {
|
||||||
if (Object.keys(this.medicalReviewInfo).length > 0) {
|
if (Object.keys(this.medicalReviewInfo).length > 0) {
|
||||||
for (const k in this.form) {
|
for (const k in this.form) {
|
||||||
if (this.medicalReviewInfo.hasOwnProperty(k)) {
|
if (this.medicalReviewInfo.hasOwnProperty(k)) {
|
||||||
this.form[k] = this.medicalReviewInfo[k];
|
if (k === 'IsHaveQuestion' && this.medicalReviewInfo.AuditState === 0) {
|
||||||
|
this.form[k] = null
|
||||||
|
} else {
|
||||||
|
this.form[k] = this.medicalReviewInfo[k]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.fileList = [];
|
this.fileList = [];
|
||||||
|
|
Loading…
Reference in New Issue