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