From 2bd38f3c07fa4ec63c5b5fd99bca19d2b1b4ee2d Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期二, 19 三月 2024 14:54:50 +0800 Subject: [PATCH] refactor --- src/views/screen/components/screen-wrapper/index.vue | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/screen/components/screen-wrapper/index.vue b/src/views/screen/components/screen-wrapper/index.vue index 14b259f..532a79a 100644 --- a/src/views/screen/components/screen-wrapper/index.vue +++ b/src/views/screen/components/screen-wrapper/index.vue @@ -4,10 +4,11 @@ <div class="wrapper-content"> <div class="left-container wrapper"> <screen-face></screen-face> + <screen-car></screen-car> + <screen-video></screen-video> </div> <div class="center-container wrapper"> <screen-detection></screen-detection> - <screen-video></screen-video> </div> <div class="right-container wrapper"> @@ -22,13 +23,15 @@ import ScreenDetection from '../screen-detection/index'; import ScreenExamine from '../screen-examine/index'; import ScreenVideo from '../screen-video/index'; +import ScreenCar from '../screen-car/index'; export default { name: 'ScreenWrapper', components: { ScreenFace, ScreenDetection, ScreenExamine, - ScreenVideo + ScreenVideo, + ScreenCar }, } </script> @@ -72,5 +75,4 @@ padding-right: 0; } } - </style> \ No newline at end of file -- Gitblit v1.8.0