人生啊人生 3 veckor sedan
förälder
incheckning
fba4296f00

+ 7 - 0
user_web/src/components/student/courseChapter3d/view.vue

@@ -19,6 +19,8 @@ import showDirection from '@/components/student/courseChapter3d/showDirection.vu
 import showEnd from '@/components/student/courseChapter3d/showEnd.vue';
 import showThreeWorldIndicate from '@/components/student/courseChapter3d/showThreeWorldIndicate.vue';
 import showClickRotation from '@/components/student/courseChapter3d/showClickRotation.vue';
+import showDownHole from '@/components/student/courseChapter3d/showDownHole.vue';
+
 import { courseChapter3dShow } from "@/stores/courseChapter3dShow.ts";
 
 // 定义发射给父组件的方法
@@ -153,6 +155,11 @@ const carShutDownEvent = () => {
     <showClickRotation
     v-show="courseChapter3dShow().show.showClickRotationViewBool == true"
     ></showClickRotation>
+
+    <!-- 下井信息录入 -->
+    <showDownHole
+    v-show="courseChapter3dShow().show.showDownHoleViewOpen == true"
+    ></showDownHole>
     
 </template>
 

+ 20 - 3
user_web/src/stores/courseChapter3dShow.ts

@@ -389,9 +389,26 @@ export const courseChapter3dShow = defineStore('courseChapter3dShow', () => {
         // 是否显示蒙版
         threeWorldMask : false,
 
-
-
-
+        // 下井信息录入UI是否弹出
+        showDownHoleViewOpen : true,
+        // 下井信息录入输入框填写的内容
+        showDownHoleConfig : {
+            // 任务名称/编号
+            taskName : "",
+            // 检测地点
+            location : "",
+            // 井号
+            hashSign : "",
+            // 检测方向
+            detectionDirection : "",
+            // 管道类型
+            pipeType : "",
+            // 材质
+            material : "",
+            // 管径
+            pipeDiameter : "",
+        },
+        
     });
     
     return {