阅片单元配置中,阅片平台美国应该是LiLi
parent
d9de0f22cf
commit
4b353bab8f
|
@ -22,13 +22,24 @@
|
||||||
!hasPermi(['trials:trials-panel:setting:reading-unit:edit'])
|
!hasPermi(['trials:trials-panel:setting:reading-unit:edit'])
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<el-radio
|
<template v-if="isUSA">
|
||||||
v-for="item of $d.ImagePlatform"
|
<el-radio
|
||||||
:key="item.id"
|
v-for="item of $d.ImagePlatformUSA"
|
||||||
:label="item.value"
|
:key="item.id"
|
||||||
>
|
:label="item.value"
|
||||||
{{ item.label }}
|
>
|
||||||
</el-radio>
|
{{ 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-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 阅片工具 -->
|
<!-- 阅片工具 -->
|
||||||
|
@ -374,7 +385,11 @@
|
||||||
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="(form.IsReadingTaskViewInOrder === 1 || form.IsReadingTaskViewInOrder === 0) && item.value === 1"
|
:disabled="
|
||||||
|
(form.IsReadingTaskViewInOrder === 1 ||
|
||||||
|
form.IsReadingTaskViewInOrder === 0) &&
|
||||||
|
item.value === 1
|
||||||
|
"
|
||||||
>
|
>
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
</el-radio>
|
</el-radio>
|
||||||
|
@ -396,7 +411,11 @@
|
||||||
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="(form.IsReadingTaskViewInOrder === 1 || form.IsReadingTaskViewInOrder === 0) && item.value === 1"
|
:disabled="
|
||||||
|
(form.IsReadingTaskViewInOrder === 1 ||
|
||||||
|
form.IsReadingTaskViewInOrder === 0) &&
|
||||||
|
item.value === 1
|
||||||
|
"
|
||||||
>
|
>
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
</el-radio>
|
</el-radio>
|
||||||
|
@ -793,6 +812,11 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.initPage()
|
this.initPage()
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
isUSA() {
|
||||||
|
return process.env.NODE_ENV === 'usa'
|
||||||
|
},
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
CriterionModalitys: {
|
CriterionModalitys: {
|
||||||
handler() {
|
handler() {
|
||||||
|
|
Loading…
Reference in New Issue