|
@@ -45,7 +45,7 @@ watch(
|
|
(newVal, oldVal) => {
|
|
(newVal, oldVal) => {
|
|
|
|
|
|
// 发视变化,则初始化三维场景到第一个步骤
|
|
// 发视变化,则初始化三维场景到第一个步骤
|
|
- // QingXiCheEventInit();
|
|
|
|
|
|
+ QingXiCheEventInit();
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
@@ -146,6 +146,11 @@ watch(
|
|
* 初始化 清洗车 的逻辑
|
|
* 初始化 清洗车 的逻辑
|
|
*/
|
|
*/
|
|
const QingXiCheEventInit = () => {
|
|
const QingXiCheEventInit = () => {
|
|
|
|
+
|
|
|
|
+ if (CommonVal().loadSuccess == false) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
ComReturnCallbackExit();
|
|
ComReturnCallbackExit();
|
|
// console.log("初始化 清洗车 的逻辑 ===>");
|
|
// console.log("初始化 清洗车 的逻辑 ===>");
|
|
QingXiCheStepUpdate("仿真模拟");
|
|
QingXiCheStepUpdate("仿真模拟");
|
|
@@ -197,6 +202,11 @@ const QingXiCheStepUpdate = (name) => {
|
|
* 初始化 QV检测 的逻辑
|
|
* 初始化 QV检测 的逻辑
|
|
*/
|
|
*/
|
|
const QvEventInit = () => {
|
|
const QvEventInit = () => {
|
|
|
|
+
|
|
|
|
+ if (CommonVal().loadSuccess == false) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
ComReturnCallbackExit();
|
|
ComReturnCallbackExit();
|
|
QvStepUpdate("数字修复虚拟仿真-将阀门关闭停止水流");
|
|
QvStepUpdate("数字修复虚拟仿真-将阀门关闭停止水流");
|
|
}
|
|
}
|