From 81a289e2edb010de7629e5ea4f5e13aeac2381fc Mon Sep 17 00:00:00 2001 From: ante <448468458@qq.com> Date: Wed, 10 Apr 2024 18:13:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=20google=20=E4=B8=8A?= =?UTF-8?q?=E6=9E=B6=E7=9A=84=E5=AE=A1=E6=A0=B8=E9=97=AE=E9=A2=98=EF=BC=8C?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E8=AE=B0=E5=BD=95=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../doorLockLog/doorLockLog_page.dart | 21 ++----------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/star_lock/lib/main/lockDetail/doorLockLog/doorLockLog_page.dart b/star_lock/lib/main/lockDetail/doorLockLog/doorLockLog_page.dart index b1af4795..84a97d61 100644 --- a/star_lock/lib/main/lockDetail/doorLockLog/doorLockLog_page.dart +++ b/star_lock/lib/main/lockDetail/doorLockLog/doorLockLog_page.dart @@ -35,26 +35,9 @@ class _DoorLockLogPageState extends State { return Scaffold( backgroundColor: AppColors.mainBackgroundColor, appBar: TitleAppBar( - barTitle: TranslationLoader.lanKeys!.doorLockLog!.tr, + barTitle: TranslationLoader.lanKeys!.operatingRecord!.tr, haveBack: true, backgroundColor: AppColors.mainColor, - actionsList: [ - IconButton( - icon: Image.asset( - 'images/icon_bar_more.png', - height: 30.h, - width: 10.w, - ), - onPressed: () async { - var isDemoMode = await Storage.getBool(ifIsDemoModeOrNot); - if (isDemoMode == false) { - } else { - // Get.toNamed(Routers.selectLockTypePage); - logic.showToast("演示模式"); - } - }, - ), - ], ), body: Column( mainAxisSize: MainAxisSize.max, @@ -68,7 +51,7 @@ class _DoorLockLogPageState extends State { endIndent: 30.w, ), eventDropDownWidget(), - Expanded(child: Obx(() => timeLineView(state.lockLogItemList.value))) + Expanded(child: Obx(() => timeLineView(state.lockLogItemList))) ], ), );