Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
a72521304e
|
|
@ -376,4 +376,8 @@ body .el-table th.gutter {
|
|||
height: 20px !important;
|
||||
vertical-align: -0.4em !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.mobile_confirm {
|
||||
width: 200px;
|
||||
}
|
||||
|
|
@ -126,7 +126,8 @@ export default {
|
|||
this.userTypeEnumInt === 0 ? this.$t('trials:researchForm:message:submitWarning') : this.$t('trials:researchForm:message:submitWarning2'),
|
||||
{
|
||||
type: 'warning',
|
||||
distinguishCancelAndClose: true
|
||||
distinguishCancelAndClose: true,
|
||||
customClass: "mobile_confirm"
|
||||
}
|
||||
)
|
||||
if (confirm !== 'confirm') return
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@
|
|||
<div v-if="!study.IsCriticalSequence" class="dicom-desc">
|
||||
<!-- <div v-if="taskInfo && taskInfo.IsShowStudyName">{{ study.StudyName }}</div> -->
|
||||
<div style="text-overflow: ellipsis;overflow: hidden;">
|
||||
<span v-if="taskInfo && taskInfo.IsReadingTaskViewInOrder !== 0" :title="study.CodeView">{{ study.CodeView }}</span>
|
||||
<span v-if="taskInfo && taskInfo.IsReadingTaskViewInOrder !== 0" :title="study.CodeView">{{
|
||||
study.CodeView }}</span>
|
||||
<span v-if="taskInfo && taskInfo.IsShowStudyName" :title="study.StudyName" style="margin-left: 5px;">{{
|
||||
study.StudyName }}</span>
|
||||
</div>
|
||||
|
|
@ -100,9 +101,11 @@ export default {
|
|||
},
|
||||
watch: {
|
||||
activeFileIndex() {
|
||||
this.scrollElementToTop(this.$refs[`noneDicomRef_${this.activeFileIndex}`][0], {
|
||||
offset: 50
|
||||
})
|
||||
if (this.$refs[`noneDicomRef_${this.activeFileIndex}`]) {
|
||||
this.scrollElementToTop(this.$refs[`noneDicomRef_${this.activeFileIndex}`][0], {
|
||||
offset: 50
|
||||
})
|
||||
}
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue