From 7feb1632bc81fee2c8d4524f967b4ee0b63ca8d4 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 26 七月 2024 11:33:30 +0800
Subject: [PATCH] v-show改为v-if

---
 src/views/screen/index.vue |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/views/screen/index.vue b/src/views/screen/index.vue
index 4e8c6fc..c90f503 100644
--- a/src/views/screen/index.vue
+++ b/src/views/screen/index.vue
@@ -1,9 +1,7 @@
 <template>
   <div class="screen-container">
-    
     <screen-title></screen-title>
     <v-scale-screen width="1920" height="1080" :autoScale="true" :delay="0" class="screen">
-      <screen-map-three></screen-map-three>
       <screen-wrapper></screen-wrapper>
     </v-scale-screen>
   </div>
@@ -13,7 +11,6 @@
 <script>
 import ScreenTitle from './components/screen-title/index.vue';
 import ScreenWrapper from './components/screen-wrapper/index.vue';
-import ScreenMapThree from './components/screen-map-three/index.vue';
 
 
 export default {
@@ -21,7 +18,6 @@
   components: {
     ScreenTitle,
     ScreenWrapper,
-    ScreenMapThree
   },
   data() {
     return {
@@ -34,11 +30,16 @@
 </script>
 
 <style lang="scss" scoped>
+.screen-container {
+  user-select: none;
+  -webkit-user-select: none;
+}
 .screen {
-  background: url('../../assets/images/screen/pageBg1.jpg') !important;
-  background-size: cover !important;
-  background-repeat: no-repeat !important;
-  background-position: center center !important;
+  background-color: #033c76 !important;
+  //background: url('../../assets/images/screen/pageBg1.jpg') !important;
+  //background-size: cover !important;
+  //background-repeat: no-repeat !important;
+  //background-position: center center !important;
 }
 
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.8.0