uat_us
parent
577bbcd182
commit
a628d75217
|
|
@ -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>
|
||||
|
|
@ -443,7 +445,7 @@ export default {
|
|||
}
|
||||
var routeData = this.$router.resolve({ path })
|
||||
let imageToolType = row.ReadingTool === 1 ? 2 : 1
|
||||
const res = await getAutoCutNextTask({imageToolType})
|
||||
const res = await getAutoCutNextTask({ imageToolType })
|
||||
let IsDoubleScreen = false
|
||||
if (res.IsSuccess) {
|
||||
IsDoubleScreen = res.Result.IsDoubleScreen
|
||||
|
|
@ -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 })
|
||||
|
|
|
|||
Loading…
Reference in New Issue