Compare commits

..

No commits in common. "1499e65ecf7d2dde3e24912e6443c716744026fa" and "b665f9685ac73f5a2e1eac612452a90e4b90e93a" have entirely different histories.

View File

@ -89,7 +89,6 @@ struct UserInfo {
'Param830Str': '0', //同一学员连续第二次考试时不再验证身份
'Param364': '0', //考前上车准备
'Param398': '0', //考前上车准备
'Param835': '0', //考前上车准备
}
@State startExam: boolean = false
// 过程照片拍照
@ -160,7 +159,6 @@ struct UserInfo {
cancel: () => {
},
confirm: () => {
this.prePareExam()
}
}),
customStyle: true,
@ -537,9 +535,6 @@ struct UserInfo {
if (sys.v_no === '770') {
that.systemParam.Param770Str = sys.v_value;
}
if (sys.v_no === '835') {
that.systemParam.Param835 = sys.v_value;
}
// 开始考试前必须解开安全带或关车门
if (sys.v_no === '803') {
that.systemParam.Param803Str = sys.v_value + '';
@ -1278,13 +1273,6 @@ struct UserInfo {
if (this.systemParam.Param612Str == '1') {
return
}
if(Number(this.systemParam.Param835)<=Number(this.currentUser.yycs)){
this.type='3'
this.title='当前考生预约考试次数为'+this.currentUser.yycs
this.errorDialog.open()
return
}
await this.prePareExam()
})
}
@ -1440,5 +1428,4 @@ type systemParam = {
'Param830Str': string, //同一学员连续第二次考试时不再验证身份
'Param364': string, //考前上车准备
'Param398': string, //考前上车准备
'Param835': string, //考前上车准备
}