完全随机分割问题绑定弹框不显示检查编号显示检查模态
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9892070ccc
commit
b09209af31
|
|
@ -4,7 +4,8 @@
|
||||||
<el-form-item :label="$t('segment:form:label:studyName')" prop="taskBlindName">
|
<el-form-item :label="$t('segment:form:label:studyName')" prop="taskBlindName">
|
||||||
<el-select v-model="form.studyId" clearable @change="(e) => handleChange(e, 'study')"
|
<el-select v-model="form.studyId" clearable @change="(e) => handleChange(e, 'study')"
|
||||||
@clear="(e) => handleClear(e, 'study')">
|
@clear="(e) => handleClear(e, 'study')">
|
||||||
<el-option v-for="item in studyList" :key="item.StudyId" :label="item.StudyCode"
|
<el-option v-for="item in studyList" :key="item.StudyId"
|
||||||
|
:label="taskInfo.IsReadingTaskViewInOrder !== 0 ? item.StudyCode : `${item.Modalities}(${item.SeriesCount})`"
|
||||||
:value="item.StudyId" />
|
:value="item.StudyId" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
@ -87,12 +88,13 @@ export default {
|
||||||
}, trigger: ['blur', 'change']
|
}, trigger: ['blur', 'change']
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
taskInfo: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// mounted() {
|
mounted() {
|
||||||
// this.init()
|
this.taskInfo = JSON.parse(sessionStorage.getItem('taskInfo'))
|
||||||
// },
|
},
|
||||||
methods: {
|
methods: {
|
||||||
setSeries(series) {
|
setSeries(series) {
|
||||||
this.series = series
|
this.series = series
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue