From 65cdddcf3c53abdb8e194c63eee62a6f9f3190b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=B0=91=E9=98=B3?= <786612630@qq.com> Date: Mon, 13 Jan 2025 17:46:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=201=E3=80=81=E4=BF=AE=E5=A4=8D=E5=8F=91?= =?UTF-8?q?=E9=80=81=E7=94=B5=E5=AD=90=E9=92=A5=E5=8C=99=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E6=B2=A1=E6=9C=89=E4=B8=8B=E5=88=92=E7=BA=BF=E3=80=82?= =?UTF-8?q?2=E3=80=81=E7=AE=80=E4=BD=93=E4=B8=AD=E6=96=87=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=B9=B4=E6=9C=88=E6=97=A5=E6=98=BE=E7=A4=BA=E7=AE=80?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lan/lan_zh.json | 10 +++++----- .../view/sendElectronicKeyView_page.dart | 13 ++++++++++++- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/lan/lan_zh.json b/lan/lan_zh.json index ce17267b..ecb737fe 100755 --- a/lan/lan_zh.json +++ b/lan/lan_zh.json @@ -1113,11 +1113,11 @@ "普通管理员英文": "普通管理员", "网关设备英文": "网关设备", "手机需联网英文": "手机需联网", - "年简称": "Y", - "月简称": "M", - "日简称": "D", - "时简称": "H", - "分简称": "M", + "年简称": "年", + "月简称": "月", + "日简称": "日", + "时简称": "时", + "分简称": "分", "跟随系统": "跟随系统", "重置后,该锁的指纹都将被删除哦,确认要重置吗?": "重置后,该锁的指纹都将被删除哦,确认要重置吗?", "重置后,该锁的遥控都将被删除哦,确认要重置吗?": "重置后,该锁的遥控都将被删除哦,确认要重置吗?" diff --git a/lib/main/lockDetail/electronicKey/sendElectronicKey/sendElectronicKey/view/sendElectronicKeyView_page.dart b/lib/main/lockDetail/electronicKey/sendElectronicKey/sendElectronicKey/view/sendElectronicKeyView_page.dart index 4aa39e86..9e2b8986 100755 --- a/lib/main/lockDetail/electronicKey/sendElectronicKey/sendElectronicKey/view/sendElectronicKeyView_page.dart +++ b/lib/main/lockDetail/electronicKey/sendElectronicKey/sendElectronicKey/view/sendElectronicKeyView_page.dart @@ -154,7 +154,14 @@ class _SendElectronicKeyViewState extends State Container( height: 65.h, padding: EdgeInsets.only(left: 20.w, right: 20.w), - color: Colors.white, + decoration: BoxDecoration( + color: Colors.white, + border: Border( + bottom: BorderSide( + color: AppColors.greyLineColor, // 设置边框颜色 + width: 2.0.h, // 设置边框宽度 + ), + )), child: Row( children: [ Text(titleStr, style: TextStyle(fontSize: 22.sp)), @@ -222,6 +229,10 @@ class _SendElectronicKeyViewState extends State } }, ), + ), + Container( + color: AppColors.greyLineColor, // 设置边框颜色 + height: 2.0.h, // ) ], ),