From 3a542f1aad01e3f98e44fbcdd354fc86f189a9e3 Mon Sep 17 00:00:00 2001 From: mmc <1556375442@qq.com> Date: Mon, 15 Jun 2026 09:20:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E6=99=AF=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/devices/mowerAllView.jsx | 101 ++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/components/devices/mowerAllView.jsx diff --git a/src/components/devices/mowerAllView.jsx b/src/components/devices/mowerAllView.jsx new file mode 100644 index 0000000..e56a5ff --- /dev/null +++ b/src/components/devices/mowerAllView.jsx @@ -0,0 +1,101 @@ + +import VideoPlayer from '../VideoPlayer.tsx'; + +export function MowerAllView({ serialNumber, robotVideo, error, ready }) { + return ( +
+ {/* 第一行:左视 + 前视 + 右视 三等分 */} +
+ {/* 左视 */} +
+ +
左视
+
+ + {/* 前视 */} +
+ +
前视
+
+ + {/* 右视 */} +
+ +
右视
+
+
+ + {/* 第二行:后视 单独一行居中 */} +
+
+ +
后视
+
+
+
+ ) +}