From cc6994a5858cd662f5904005bbbd9d34b712f76c Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期五, 19 四月 2024 11:56:25 +0800 Subject: [PATCH] feat:添加地图label --- src/views/screen/components/screen-wrapper/index.vue | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/views/screen/components/screen-wrapper/index.vue b/src/views/screen/components/screen-wrapper/index.vue index e401f5a..a6e27e1 100644 --- a/src/views/screen/components/screen-wrapper/index.vue +++ b/src/views/screen/components/screen-wrapper/index.vue @@ -5,14 +5,14 @@ 杩斿洖 </div> <div class="wrapper-content"> - <screen-map-three></screen-map-three> + <screen-map-three :loadEnd="isEnd"></screen-map-three> <div class="left-container wrapper"> <screen-face class="enter-left" :class="{ 'animate-enter-x': isEnd }"></screen-face> <screen-car class="enter-left animate-delay-1" :class="{ 'animate-enter-x': isEnd }"></screen-car> <screen-video class="enter-left animate-delay-2" :class="{ 'animate-enter-x': isEnd }"></screen-video> </div> <div class="center-container center-wrapper"> - <screen-map></screen-map> + <screen-map-cover></screen-map-cover> <screen-table class="enter-top" :class="{ 'animate-enter-y': isEnd }"></screen-table> <!-- <screen-detection></screen-detection> --> @@ -31,17 +31,16 @@ import ScreenFace from '../screen-face/index'; import ScreenVideo from '../screen-video/index'; import ScreenCar from '../screen-car/index'; -import ScreenMap from '../screen-map/index'; import ScreenMapCover from '../screen-map-cover/index'; import ScreenTable from '../screen-table/index'; -import ScreenMapThree from '../screen-map-three/index.vue'; +import ScreenMapThree from '../screen-map-three/index'; +import ScreenData from '../screen-data/index'; export default { name: 'ScreenWrapper', components: { SelectItem, ScreenExamine, - ScreenMap, ScreenTable, ScreenMapCover, ScreenMapThree, @@ -52,7 +51,7 @@ }, data() { return { - isEnd: false + isEnd: false, } }, methods: { -- Gitblit v1.8.0