From 295eb3cc87aaa5176d64a4ef985cdad0bfefae9a Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 31 Mar 2025 08:35:00 +0800
Subject: [PATCH] 增加单个机巢页面

---
 src/views/SignMachineNest/components/MachineRight/MachineRight.vue |   28 +++++++++++++++++++++++++---
 1 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/src/views/SignMachineNest/components/MachineRight/MachineRight.vue b/src/views/SignMachineNest/components/MachineRight/MachineRight.vue
index 5b6e65e..3705b78 100644
--- a/src/views/SignMachineNest/components/MachineRight/MachineRight.vue
+++ b/src/views/SignMachineNest/components/MachineRight/MachineRight.vue
@@ -1,7 +1,29 @@
 <template>
-  <div class="machine-right">右边</div>
+  <div class="machine-right">
+    <UserOperate/>
+    <MachineStatus/>
+    <MachineMonitor/>
+    <InspectionRaskList/>
+  </div>
 </template>
 
-<script setup></script>
+<script setup>
+import UserOperate from '@/components/UserOperate.vue';
+import MachineStatus from './MachineStatus.vue';
+import MachineMonitor from './MachineMonitor.vue';
+import InspectionRaskList from './InspectionRaskList.vue';
+</script>
 
-<style scoped lang="scss"></style>
\ No newline at end of file
+<style scoped lang="scss">
+.machine-right {
+  position: absolute;
+  top: 122px;
+  right: 31px;
+  width: 404px;
+
+  .titleBox {
+    width: 404px;
+    height: 43px;
+  }
+}
+</style>
\ No newline at end of file

--
Gitblit v1.9.3