fix: 过程任务队列

This commit is contained in:
wangzhongjie 2025-10-14 16:55:14 +08:00
parent e75a2c076f
commit d46a53f37e
2 changed files with 5 additions and 2 deletions

View File

@ -433,6 +433,8 @@ export interface MAPPOINT {
f_gps_e: number, f_gps_e: number,
f_gps_n: number, f_gps_n: number,
passed: number passed: number
X_MCH: string,
} }
export interface MAPITEMPOINTITEM { export interface MAPITEMPOINTITEM {
@ -558,6 +560,7 @@ export interface CAR_INFO {
FLAG: string, FLAG: string,
BK1: string, BK1: string,
BK2: string BK2: string
X_MCH: string,
} }
export interface KmItem { export interface KmItem {

View File

@ -23,7 +23,6 @@ import {
LANE, LANE,
MA_CDSBINFOType, MA_CDSBINFOType,
MA_ITEMINFOType, MA_ITEMINFOType,
MA_SYSTEMPARMType,
MAPITEMPOINTITEM, MAPITEMPOINTITEM,
MAPPOINT, MAPPOINT,
MarkRule, MarkRule,
@ -162,6 +161,7 @@ export struct JudgePage {
customStyle: true customStyle: true
}) })
// private judge: Judge = new Judge(this) // private judge: Judge = new Judge(this)
private judgeBusiness = new JudgeBusiness(this)
// 结束考试弹窗 // 结束考试弹窗
endExamDialogController: CustomDialogController = new CustomDialogController({ endExamDialogController: CustomDialogController = new CustomDialogController({
builder: ConfirmDialog({ builder: ConfirmDialog({
@ -194,7 +194,6 @@ export struct JudgePage {
}), }),
customStyle: true customStyle: true
}) })
private judgeBusiness = new JudgeBusiness(this)
laneSignalChange() { laneSignalChange() {
dConsole.log("车道信号变化1", this.laneSignal) dConsole.log("车道信号变化1", this.laneSignal)
@ -261,6 +260,7 @@ export struct JudgePage {
FLAG: carInfo.flag!, FLAG: carInfo.flag!,
BK1: carInfo.bk1!, BK1: carInfo.bk1!,
BK2: carInfo.bk2!, BK2: carInfo.bk2!,
X_MCH: carInfo.x_mch,
}) })
dConsole.info(JudgeTag, 'surenjun =>carinfoArrr', JSON.stringify(this.carinfoArr)) dConsole.info(JudgeTag, 'surenjun =>carinfoArrr', JSON.stringify(this.carinfoArr))
} }