1,修复添加考勤后锁详情页面item显示不全问题

2,新增对讲过程中远程开门失败的处理及提醒
This commit is contained in:
Daisy 2024-04-02 15:17:13 +08:00
parent 266f68e5a6
commit b7fcb60f28
2 changed files with 2 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class _LockDetailPageState extends State<LockDetailPage>
Stack(children: [ Stack(children: [
Container( Container(
width: 1.sw, width: 1.sw,
height: 1.sh - ScreenUtil().statusBarHeight * 2, height: 1.sh - ScreenUtil().statusBarHeight,
color: Colors.white, color: Colors.white,
child: Column( child: Column(
children: [ children: [

View File

@ -99,6 +99,7 @@ class CommandUDPReciverManager {
EasyLoading.showToast("开门成功", duration: 2000.milliseconds); EasyLoading.showToast("开门成功", duration: 2000.milliseconds);
} else { } else {
print("开门失败"); print("开门失败");
EasyLoading.showToast("开门失败", duration: 2000.milliseconds);
} }
} }
break; break;