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;
}
.message {
width: 100%;
margin: auto;
min-height: 100px;
background-color: #eee;
padding: 10px;
line-height: 30px;
border-radius: 5px;
word-wrap: break-word;
}
}
</style>

View File

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

View File

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