diff --git a/core/frontend/src/components/canvas/customComponent/UserView.vue b/core/frontend/src/components/canvas/customComponent/UserView.vue index adcae86e46..eb1248f805 100644 --- a/core/frontend/src/components/canvas/customComponent/UserView.vue +++ b/core/frontend/src/components/canvas/customComponent/UserView.vue @@ -377,14 +377,14 @@ export default { return !(this.isEdit && this.currentCanvasNewId.includes(this.element.id)) && this.isFirstLoad }, scaleCoefficient() { - if (this.terminal === 'pc' && !this.mobileLayoutStatus) { + if (this.terminal === 'pc' && (!this.mobileLayoutStatus || this.showPosition === 'preview-wait')) { return 1.1 } else { return 4.5 } }, scaleCoefficientType() { - if (this.terminal === 'pc' && !this.mobileLayoutStatus) { + if (this.terminal === 'pc' && (!this.mobileLayoutStatus || this.showPosition === 'preview-wait')) { return 'pc' } else { return 'mobile' diff --git a/core/frontend/src/views/panel/edit/ComponentWaitItem.vue b/core/frontend/src/views/panel/edit/ComponentWaitItem.vue index 57753a534c..34c8370495 100644 --- a/core/frontend/src/views/panel/edit/ComponentWaitItem.vue +++ b/core/frontend/src/views/panel/edit/ComponentWaitItem.vue @@ -33,6 +33,7 @@ :is-edit="false" :element="config" :h="outItemHeight" + :show-position="'preview-wait'" :canvas-style-data="canvasStyleData" />