Compare commits

..

No commits in common. "181a8bddf498bbb323e9bae94f33320dee16728e" and "d9de0f22cf40885cd9abdb9d1351e3f99f284984" have entirely different histories.

3 changed files with 10 additions and 40 deletions

View File

@ -157,14 +157,12 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
} }
.message { .message {
width: 100%;
margin: auto; margin: auto;
min-height: 100px; min-height: 100px;
background-color: #eee; background-color: #eee;
padding: 10px; padding: 10px;
line-height: 30px; line-height: 30px;
border-radius: 5px; border-radius: 5px;
word-wrap: break-word;
} }
} }
</style> </style>

View File

@ -81,7 +81,7 @@
</div> </div>
</div> </div>
<div <div
class="message break-word" class="message"
v-if=" v-if="
reviewerData.SummarizeInfo.SummarizeEn || reviewerData.SummarizeInfo.SummarizeEn ||
reviewerData.SummarizeInfo.Summarize reviewerData.SummarizeInfo.Summarize
@ -1070,8 +1070,4 @@ export default {
} }
} }
} }
break-word {
width: 100%;
word-wrap: break-word;
}
</style> </style>

View File

@ -22,24 +22,13 @@
!hasPermi(['trials:trials-panel:setting:reading-unit:edit']) !hasPermi(['trials:trials-panel:setting:reading-unit:edit'])
" "
> >
<template v-if="isUSA"> <el-radio
<el-radio v-for="item of $d.ImagePlatform"
v-for="item of $d.ImagePlatformUSA" :key="item.id"
:key="item.id" :label="item.value"
:label="item.value" >
> {{ item.label }}
{{ item.label }} </el-radio>
</el-radio>
</template>
<template v-else>
<el-radio
v-for="item of $d.ImagePlatform"
:key="item.id"
:label="item.value"
>
{{ item.label }}
</el-radio>
</template>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<!-- 阅片工具 --> <!-- 阅片工具 -->
@ -385,11 +374,7 @@
v-for="item of $d.ImageDownloadEnum" v-for="item of $d.ImageDownloadEnum"
:key="item.id" :key="item.id"
:label="item.value" :label="item.value"
:disabled=" :disabled="(form.IsReadingTaskViewInOrder === 1 || form.IsReadingTaskViewInOrder === 0) && item.value === 1"
(form.IsReadingTaskViewInOrder === 1 ||
form.IsReadingTaskViewInOrder === 0) &&
item.value === 1
"
> >
{{ item.label }} {{ item.label }}
</el-radio> </el-radio>
@ -411,11 +396,7 @@
v-for="item of $d.ImageUploadEnum" v-for="item of $d.ImageUploadEnum"
:key="item.id" :key="item.id"
:label="item.value" :label="item.value"
:disabled=" :disabled="(form.IsReadingTaskViewInOrder === 1 || form.IsReadingTaskViewInOrder === 0) && item.value === 1"
(form.IsReadingTaskViewInOrder === 1 ||
form.IsReadingTaskViewInOrder === 0) &&
item.value === 1
"
> >
{{ item.label }} {{ item.label }}
</el-radio> </el-radio>
@ -812,11 +793,6 @@ export default {
mounted() { mounted() {
this.initPage() this.initPage()
}, },
computed: {
isUSA() {
return process.env.NODE_ENV === 'usa'
},
},
watch: { watch: {
CriterionModalitys: { CriterionModalitys: {
handler() { handler() {