From 7861dacb29781de169dcab4565643818a6791aa7 Mon Sep 17 00:00:00 2001 From: lv <1344032923@qq.com> Date: Tue, 1 Apr 2025 13:28:05 +0800 Subject: [PATCH] =?UTF-8?q?835=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/pages/UserInfo.ets | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/entry/src/main/ets/pages/UserInfo.ets b/entry/src/main/ets/pages/UserInfo.ets index f90f414f..071cffff 100644 --- a/entry/src/main/ets/pages/UserInfo.ets +++ b/entry/src/main/ets/pages/UserInfo.ets @@ -89,6 +89,7 @@ struct UserInfo { 'Param830Str': '0', //同一学员连续第二次考试时不再验证身份 'Param364': '0', //考前上车准备 'Param398': '0', //考前上车准备 + 'Param835': '0', //考前上车准备 } @State startExam: boolean = false // 过程照片拍照 @@ -535,6 +536,10 @@ 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 + ''; @@ -1428,4 +1433,5 @@ type systemParam = { 'Param830Str': string, //同一学员连续第二次考试时不再验证身份 'Param364': string, //考前上车准备 'Param398': string, //考前上车准备 + 'Param835': string, //考前上车准备 } \ No newline at end of file