fix: 1、修复发送电子钥匙输入框没有下划线。2、简体中文选择年月日显示简称

This commit is contained in:
魏少阳 2025-01-13 17:46:23 +08:00
parent 5e818c9d67
commit 65cdddcf3c
2 changed files with 17 additions and 6 deletions

View File

@ -1113,11 +1113,11 @@
"普通管理员英文": "普通管理员",
"网关设备英文": "网关设备",
"手机需联网英文": "手机需联网",
"年简称": "Y",
"月简称": "M",
"日简称": "D",
"时简称": "H",
"分简称": "M",
"年简称": "",
"月简称": "",
"日简称": "",
"时简称": "",
"分简称": "",
"跟随系统": "跟随系统",
"重置后,该锁的指纹都将被删除哦,确认要重置吗?": "重置后,该锁的指纹都将被删除哦,确认要重置吗?",
"重置后,该锁的遥控都将被删除哦,确认要重置吗?": "重置后,该锁的遥控都将被删除哦,确认要重置吗?"

View File

@ -154,7 +154,14 @@ class _SendElectronicKeyViewState extends State<SendElectronicKeyView>
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: <Widget>[
Text(titleStr, style: TextStyle(fontSize: 22.sp)),
@ -222,6 +229,10 @@ class _SendElectronicKeyViewState extends State<SendElectronicKeyView>
}
},
),
),
Container(
color: AppColors.greyLineColor, //
height: 2.0.h, //
)
],
),