Compare commits

..

No commits in common. "eec575d210026f73bb8260fcc20fdf456e8cf986" and "b568b40f957f9434a8ef061ec52be9c0d8ed0992" have entirely different histories.

1 changed files with 2 additions and 6 deletions

View File

@ -12,9 +12,7 @@
{ required: true, message: $t('common:ruleMessage:select'), trigger: 'blur' }
]">
<el-select v-model="fusionForm.studyId" clearable @change="handleStudyIdChange">
<el-option v-for="item in studyList" :key="item.StudyId"
:label="taskInfo.IsReadingTaskViewInOrder !== 0 ? item.StudyCode : `${item.Modalities}(${item.SeriesCount})`"
:value="item.StudyId" />
<el-option v-for="item in studyList" :key="item.StudyId" :label="item.StudyCode" :value="item.StudyId" />
</el-select>
</el-form-item>
<!-- 融合图像 -->
@ -113,12 +111,10 @@ export default {
ctSeries: [],
petSeries: [],
petctWindow: null,
digitPlaces: 2,
taskInfo: {}
digitPlaces: 2
}
},
mounted() {
this.taskInfo = JSON.parse(sessionStorage.getItem('taskInfo'))
var digitPlaces = Number(localStorage.getItem('digitPlaces'))
this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces
this.initForm()