wangxiaoshuang 2026-04-29 09:32:10 +08:00
parent 577bbcd182
commit a628d75217
1 changed files with 7 additions and 4 deletions

View File

@ -177,7 +177,9 @@
custom-class="base-dialog-wrapper">
<el-form ref="reasonForm" :rules="rules" :model="ApplyforReasonForm" class="demo-ruleForm" size="small"
label-width="380px">
<p>{{ $t('trials:readTask:applyReread:title').replace('xxx', rowData.SubjectCode).replace('yyy', rowData.TaskName) }}</p>
<p>{{ $t('trials:readTask:applyReread:title').replace('xxx', rowData.SubjectCode).replace('yyy',
rowData.TaskName)
}}</p>
<!-- 申请原因 -->
<el-divider content-position="left">{{ $t('trials:readTask:title:applyReason') }}</el-divider>
<!-- 申请原因 -->
@ -201,7 +203,7 @@
<!-- 是否复制阅片表单 -->
<el-form-item :label="$t('trials:readTask:title:copyForm')" prop="IsCopyOrigenalForms" :rules="[
{ required: true, message: $t('common:ruleMessage:select') },
]">
]" v-if="rowData.ReadingTool !== 3">
<el-radio-group v-model="ApplyforReasonForm.IsCopyOrigenalForms">
<el-radio v-for="item of $d.YesOrNo" :key="`IsCopyOrigenalForms${item.raw.Id}`" :label="item.value">{{
item.label }}</el-radio>
@ -471,7 +473,8 @@ export default {
this.ApplyforReasonVisible = true
this.ApplyforReasonForm = {
Type: null,
Remake: null
Remake: null,
IsCopyOrigenalForms: this.rowData.ReadingTool === 3 ? false : null
}
this.loading = false
}).catch(() => { this.loading = false })