From 850fbeddcd514476756acde45c3136eabe087240 Mon Sep 17 00:00:00 2001 From: gjj <Ganjj@probim.com.cn> Date: Tue, 18 Mar 2025 15:17:47 +0800 Subject: [PATCH] 标段筛选去重 --- src/views/Home.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index b44eb36..809c83a 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -193,9 +193,9 @@ if (this.isFullScreen) { const clientX = document.documentElement.clientWidth || document.body.clientWidth const clientY = document.documentElement.clientHeight || document.body.clientHeight - this.fullScreenPanoStyle = `width: 100%; height: 100%; z-index: 100; ` + this.fullScreenStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;` if (this.currentView === '720') { - this.fullScreenStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;` + this.fullScreenPanoStyle = `width: 100%; height: 100%; z-index: 100; ` } else if(this.currentView === 'model'){ this.fullScreenModelStyle = `width: ${clientX - 40}px; height: ${clientY - 120}px; margin:20px; position: fixed; top: 80px; left: 0;z-index: 100;background-color: #fff;overflow: hidden;` } -- Gitblit v1.9.3