|
@@ -37,6 +37,7 @@ import { QvPanelStore } from "@/components/QvSimulation/QvPanel/store/QvPanelSto
|
|
|
import { QvPanelEvent } from "@/components/QvSimulation/QvPanel/js/QvPanelEvent.js";
|
|
|
QvPanelEvent.find().ComStore["QvPanelStore"] = QvPanelStore;
|
|
|
|
|
|
+import { QvPipeEvent } from "./QvThreeWorldEvent/js/QvPipeEvent.js";
|
|
|
|
|
|
import { computed, onMounted, onUnmounted, watch, ref } from "vue";
|
|
|
import { useRouter } from 'vue-router';
|
|
@@ -47,6 +48,14 @@ QvComRes.find().resJson["mp4_qv"] = new URL("./assets/mp4/qv.mp4", import.meta.u
|
|
|
QvComRes.find().resJson["mp4_demo"] = new URL("./assets/mp4/demo.mp4", import.meta.url).href;
|
|
|
|
|
|
|
|
|
+const props = defineProps({
|
|
|
+ // 获取当前学生任务ID缺陷列表
|
|
|
+ studentTaskIdList : {
|
|
|
+ type: Object
|
|
|
+ },
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
// 定义发射给父组件的方法
|
|
|
const emits = defineEmits([
|
|
|
'callbackProcessUpdate',
|
|
@@ -99,6 +108,12 @@ onMounted(function() {
|
|
|
// commonDemo();
|
|
|
// }, 1000);
|
|
|
|
|
|
+ console.log(
|
|
|
+ "QV 获取的问题管段的列表 studentTaskIdList ===>", props.studentTaskIdList
|
|
|
+ );
|
|
|
+
|
|
|
+ QvPipeEvent.find().studentTaskIdList = props.studentTaskIdList;
|
|
|
+
|
|
|
});
|
|
|
|
|
|
/**
|