|
@@ -172,13 +172,28 @@ const menuEvent = (name) => {
|
|
|
|
|
|
}
|
|
|
|
|
|
+watch(
|
|
|
+
|
|
|
+ () => CommonVal().loadSuccess,
|
|
|
+ (newVal, oldVal) => {
|
|
|
+
|
|
|
+ if (CommonVal().loadSuccess == true) {
|
|
|
+
|
|
|
+ setTimeout(function() {
|
|
|
+ QingXiCheEventInit();
|
|
|
+ }, 2000);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+);
|
|
|
|
|
|
/**
|
|
|
* 初始化 清洗车 的逻辑
|
|
|
*/
|
|
|
const QingXiCheEventInit = () => {
|
|
|
ComReturnCallbackExit();
|
|
|
-
|
|
|
+ console.log("初始化 清洗车 的逻辑 ===>");
|
|
|
|
|
|
}
|
|
|
|
|
@@ -186,7 +201,7 @@ const QingXiCheEventInit = () => {
|
|
|
* 初始化 QV检测 的逻辑
|
|
|
*/
|
|
|
const QvEventInit = () => {
|
|
|
-
|
|
|
+ ComReturnCallbackExit();
|
|
|
}
|
|
|
|
|
|
|