Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing Details

main
caiyiling 2026-07-09 16:33:50 +08:00
commit a72521304e
3 changed files with 13 additions and 5 deletions

View File

@ -376,4 +376,8 @@ body .el-table th.gutter {
height: 20px !important; height: 20px !important;
vertical-align: -0.4em !important; vertical-align: -0.4em !important;
cursor: pointer; cursor: pointer;
}
.mobile_confirm {
width: 200px;
} }

View File

@ -126,7 +126,8 @@ export default {
this.userTypeEnumInt === 0 ? this.$t('trials:researchForm:message:submitWarning') : this.$t('trials:researchForm:message:submitWarning2'), this.userTypeEnumInt === 0 ? this.$t('trials:researchForm:message:submitWarning') : this.$t('trials:researchForm:message:submitWarning2'),
{ {
type: 'warning', type: 'warning',
distinguishCancelAndClose: true distinguishCancelAndClose: true,
customClass: "mobile_confirm"
} }
) )
if (confirm !== 'confirm') return if (confirm !== 'confirm') return

View File

@ -15,7 +15,8 @@
<div v-if="!study.IsCriticalSequence" class="dicom-desc"> <div v-if="!study.IsCriticalSequence" class="dicom-desc">
<!-- <div v-if="taskInfo && taskInfo.IsShowStudyName">{{ study.StudyName }}</div> --> <!-- <div v-if="taskInfo && taskInfo.IsShowStudyName">{{ study.StudyName }}</div> -->
<div style="text-overflow: ellipsis;overflow: hidden;"> <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;">{{ <span v-if="taskInfo && taskInfo.IsShowStudyName" :title="study.StudyName" style="margin-left: 5px;">{{
study.StudyName }}</span> study.StudyName }}</span>
</div> </div>
@ -100,9 +101,11 @@ export default {
}, },
watch: { watch: {
activeFileIndex() { activeFileIndex() {
this.scrollElementToTop(this.$refs[`noneDicomRef_${this.activeFileIndex}`][0], { if (this.$refs[`noneDicomRef_${this.activeFileIndex}`]) {
offset: 50 this.scrollElementToTop(this.$refs[`noneDicomRef_${this.activeFileIndex}`][0], {
}) offset: 50
})
}
}, },
}, },
methods: { methods: {