中心调研移动端确认弹框样式修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
1af9b48622
commit
71e04c3bf1
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue