From d46a53f37eb053a0d02f21eed30f43d1c3712838 Mon Sep 17 00:00:00 2001 From: wangzhongjie Date: Tue, 14 Oct 2025 16:55:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=BF=87=E7=A8=8B=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E9=98=9F=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/model/Judge.ets | 3 +++ entry/src/main/ets/pages/Judge.ets | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/entry/src/main/ets/model/Judge.ets b/entry/src/main/ets/model/Judge.ets index 4817625..9152da8 100644 --- a/entry/src/main/ets/model/Judge.ets +++ b/entry/src/main/ets/model/Judge.ets @@ -433,6 +433,8 @@ export interface MAPPOINT { f_gps_e: number, f_gps_n: number, passed: number + X_MCH: string, + } export interface MAPITEMPOINTITEM { @@ -558,6 +560,7 @@ export interface CAR_INFO { FLAG: string, BK1: string, BK2: string + X_MCH: string, } export interface KmItem { diff --git a/entry/src/main/ets/pages/Judge.ets b/entry/src/main/ets/pages/Judge.ets index 6216e99..ebbddc4 100644 --- a/entry/src/main/ets/pages/Judge.ets +++ b/entry/src/main/ets/pages/Judge.ets @@ -23,7 +23,6 @@ import { LANE, MA_CDSBINFOType, MA_ITEMINFOType, - MA_SYSTEMPARMType, MAPITEMPOINTITEM, MAPPOINT, MarkRule, @@ -162,6 +161,7 @@ export struct JudgePage { customStyle: true }) // private judge: Judge = new Judge(this) + private judgeBusiness = new JudgeBusiness(this) // 结束考试弹窗 endExamDialogController: CustomDialogController = new CustomDialogController({ builder: ConfirmDialog({ @@ -194,7 +194,6 @@ export struct JudgePage { }), customStyle: true }) - private judgeBusiness = new JudgeBusiness(this) laneSignalChange() { dConsole.log("车道信号变化1", this.laneSignal) @@ -261,6 +260,7 @@ export struct JudgePage { FLAG: carInfo.flag!, BK1: carInfo.bk1!, BK2: carInfo.bk2!, + X_MCH: carInfo.x_mch, }) dConsole.info(JudgeTag, 'surenjun =>carinfoArrr', JSON.stringify(this.carinfoArr)) }