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"> custom-class="base-dialog-wrapper">
<el-form ref="reasonForm" :rules="rules" :model="ApplyforReasonForm" class="demo-ruleForm" size="small" <el-form ref="reasonForm" :rules="rules" :model="ApplyforReasonForm" class="demo-ruleForm" size="small"
label-width="380px"> 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> <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="[ <el-form-item :label="$t('trials:readTask:title:copyForm')" prop="IsCopyOrigenalForms" :rules="[
{ required: true, message: $t('common:ruleMessage:select') }, { required: true, message: $t('common:ruleMessage:select') },
]"> ]" v-if="rowData.ReadingTool !== 3">
<el-radio-group v-model="ApplyforReasonForm.IsCopyOrigenalForms"> <el-radio-group v-model="ApplyforReasonForm.IsCopyOrigenalForms">
<el-radio v-for="item of $d.YesOrNo" :key="`IsCopyOrigenalForms${item.raw.Id}`" :label="item.value">{{ <el-radio v-for="item of $d.YesOrNo" :key="`IsCopyOrigenalForms${item.raw.Id}`" :label="item.value">{{
item.label }}</el-radio> item.label }}</el-radio>
@ -443,7 +445,7 @@ export default {
} }
var routeData = this.$router.resolve({ path }) var routeData = this.$router.resolve({ path })
let imageToolType = row.ReadingTool === 1 ? 2 : 1 let imageToolType = row.ReadingTool === 1 ? 2 : 1
const res = await getAutoCutNextTask({imageToolType}) const res = await getAutoCutNextTask({ imageToolType })
let IsDoubleScreen = false let IsDoubleScreen = false
if (res.IsSuccess) { if (res.IsSuccess) {
IsDoubleScreen = res.Result.IsDoubleScreen IsDoubleScreen = res.Result.IsDoubleScreen
@ -471,7 +473,8 @@ export default {
this.ApplyforReasonVisible = true this.ApplyforReasonVisible = true
this.ApplyforReasonForm = { this.ApplyforReasonForm = {
Type: null, Type: null,
Remake: null Remake: null,
IsCopyOrigenalForms: this.rowData.ReadingTool === 3 ? false : null
} }
this.loading = false this.loading = false
}).catch(() => { this.loading = false }) }).catch(() => { this.loading = false })