feat:断网补传

This commit is contained in:
surenjun 2025-01-14 15:13:50 +08:00
parent 9ff557da80
commit 78c897feaa
3 changed files with 2006 additions and 2010 deletions

File diff suppressed because it is too large Load Diff

View File

@ -198,6 +198,11 @@ struct Index {
this.examMileage = this.examMileage == '0'?(sys.v_value + ''): this.examMileage;
}
// //地点版本参数
// if (sys.v_no == '211') {
// this.syssetParam211 = decodeURIComponent(sys.v_value + '')
// }
//364 绕车一周评判时机(1-开始考试后判 2-开始考试前判)
if (sys.v_no == '364' && sys.v_value == 2) {
let currentParams: any = router.getParams();
@ -1025,7 +1030,11 @@ struct Index {
confirmFn:()=>{
this.errorMsg = ''
this.isErrorMsgEnd = true;
router.back()
if(this.disConnectErrorOpen){
globalThis.context.terminateSelf()
}else{
router.back()
}
},
})
}
@ -1043,6 +1052,10 @@ struct Index {
},
})
}
if(this.disConnectErrorOpen){
}
}
.height('100%').backgroundColor('#000').justifyContent(FlexAlign.Start)
}
@ -1350,6 +1363,7 @@ struct Index {
//监管接口序列号
@State serialNumber: number = 0
@State syssetParam623: boolean = false;
@State syssetParam211: string = '';
@State carType: string = ''
@State carName: string = ''
@State isDeductedPopShow: boolean = false
@ -1397,4 +1411,5 @@ struct Index {
@State carlist:string= ''
@State errorMsg: string = ''
@State isErrorMsgEnd: boolean = false
@State disConnectErrorOpen: boolean = false
}

File diff suppressed because it is too large Load Diff