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)) }