Compare commits
No commits in common. "5cf6ab24bd12357074b9f5de14efeb32cc607a55" and "42083afb8d82fbb99e164aa3b3d18b8f1075b080" have entirely different histories.
5cf6ab24bd
...
42083afb8d
|
@ -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)">
|
<template v-if="[14, 30].includes(record.UserTypeEnumInt) && (record.MedicalDialogCloseEnum!== null || record.Content)">
|
||||||
<div v-if="record.MedicalDialogCloseEnum!== null">{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
<div>{{ $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)">
|
<template v-if="[14, 30].includes(record.UserTypeEnumInt) && (record.MedicalDialogCloseEnum!== null || record.Content)">
|
||||||
<div v-if="record.MedicalDialogCloseEnum!== null">{{ $t('trials:medicalFeedback:title:closeReasonEnum') }}{{ $fd('MedicalDialogCloseEnum',record.MedicalDialogCloseEnum) }}</div>
|
<div>{{ $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,11 +260,7 @@ 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)) {
|
||||||
if (k === 'IsHaveQuestion' && this.medicalReviewInfo.AuditState === 0) {
|
this.form[k] = this.medicalReviewInfo[k];
|
||||||
this.form[k] = null
|
|
||||||
} else {
|
|
||||||
this.form[k] = this.medicalReviewInfo[k]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.fileList = [];
|
this.fileList = [];
|
||||||
|
|
Loading…
Reference in New Issue