中心调研移动端确认弹框样式修改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2026-07-09 15:17:44 +08:00
parent 1af9b48622
commit 71e04c3bf1
3 changed files with 13 additions and 5 deletions

View File

@ -376,4 +376,8 @@ body .el-table th.gutter {
height: 20px !important;
vertical-align: -0.4em !important;
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'),
{
type: 'warning',
distinguishCancelAndClose: true
distinguishCancelAndClose: true,
customClass: "mobile_confirm"
}
)
if (confirm !== 'confirm') return

View File

@ -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: {