完全随机融合弹框不显示检查号显示检查模态
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
fe64feac80
commit
63cbc8746f
|
|
@ -12,7 +12,9 @@
|
||||||
{ required: true, message: $t('common:ruleMessage:select'), trigger: 'blur' }
|
{ required: true, message: $t('common:ruleMessage:select'), trigger: 'blur' }
|
||||||
]">
|
]">
|
||||||
<el-select v-model="fusionForm.studyId" clearable @change="handleStudyIdChange">
|
<el-select v-model="fusionForm.studyId" clearable @change="handleStudyIdChange">
|
||||||
<el-option v-for="item in studyList" :key="item.StudyId" :label="item.StudyCode" :value="item.StudyId" />
|
<el-option v-for="item in studyList" :key="item.StudyId"
|
||||||
|
:label="taskInfo.IsReadingTaskViewInOrder !== 0 ? item.StudyCode : `${item.Modalities}(${item.SeriesCount})`"
|
||||||
|
:value="item.StudyId" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 融合图像 -->
|
<!-- 融合图像 -->
|
||||||
|
|
@ -111,10 +113,12 @@ export default {
|
||||||
ctSeries: [],
|
ctSeries: [],
|
||||||
petSeries: [],
|
petSeries: [],
|
||||||
petctWindow: null,
|
petctWindow: null,
|
||||||
digitPlaces: 2
|
digitPlaces: 2,
|
||||||
|
taskInfo: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.taskInfo = JSON.parse(sessionStorage.getItem('taskInfo'))
|
||||||
var digitPlaces = Number(localStorage.getItem('digitPlaces'))
|
var digitPlaces = Number(localStorage.getItem('digitPlaces'))
|
||||||
this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces
|
this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces
|
||||||
this.initForm()
|
this.initForm()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue