1,操作记录bug修复
2,微信公众号推送打开后二维码报错修复
This commit is contained in:
parent
4b0d3d13fe
commit
01db54a346
@ -65,7 +65,7 @@
|
|||||||
"accountNumber": "账号",
|
"accountNumber": "账号",
|
||||||
"volumeAuthorizationLock": "批量授权锁",
|
"volumeAuthorizationLock": "批量授权锁",
|
||||||
"authorizedAdminTip": "授权管理员拥有操作这把锁的重要权限,请确保只发给我你信任的人",
|
"authorizedAdminTip": "授权管理员拥有操作这把锁的重要权限,请确保只发给我你信任的人",
|
||||||
"lockOperatingRecordTip": "只能保留一定时间内的记录,如果您需要保留历史记录,可以在右上角导出",
|
"lockOperatingRecordTip": "如果您需要保留历史记录,可以在右上角导出",
|
||||||
"rankingList": "排列榜",
|
"rankingList": "排列榜",
|
||||||
"earlyArrivalList": "早到榜",
|
"earlyArrivalList": "早到榜",
|
||||||
"lateList": "迟到榜",
|
"lateList": "迟到榜",
|
||||||
|
|||||||
@ -53,7 +53,7 @@ class _DoorLockLogPageState extends State<DoorLockLogPage> with RouteAware {
|
|||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
ShowTipView().showSureAlertDialog(
|
ShowTipView().showSureAlertDialog(
|
||||||
'1.锁没有联网,密码、IC卡、指纹等开门记录无法实时上传,可以点击右上角按钮,然后读取记录。\n2.只能保留一定时间内的记录,如果您需要保留历史记录,可以点击右上角按钮,然后导出记录',
|
'1.锁没有联网,密码、IC卡、指纹等开门记录无法实时上传,可以点击右上角按钮,然后读取记录。\n2.如果您需要保留历史记录,可以点击右上角按钮,然后导出记录',
|
||||||
tipTitle: '看不到操作记录,可能原因有',
|
tipTitle: '看不到操作记录,可能原因有',
|
||||||
sureStr: '我知道了'.tr);
|
sureStr: '我知道了'.tr);
|
||||||
},
|
},
|
||||||
@ -276,9 +276,8 @@ class _DoorLockLogPageState extends State<DoorLockLogPage> with RouteAware {
|
|||||||
|
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Get.toNamed(Routers.doorLockLogDetailPage, arguments: {
|
Get.toNamed(Routers.doorLockLogDetailPage,
|
||||||
'doorLockLogDataItem': timelineData
|
arguments: {'doorLockLogDataItem': timelineData});
|
||||||
});
|
|
||||||
},
|
},
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.only(left: 20.w, top: 20.h),
|
padding: EdgeInsets.only(left: 20.w, top: 20.h),
|
||||||
|
|||||||
@ -30,11 +30,14 @@ class ShowCupertinoAlertView {
|
|||||||
SizedBox(
|
SizedBox(
|
||||||
height: 60.h,
|
height: 60.h,
|
||||||
),
|
),
|
||||||
Image.network(
|
if (qrCodeUrl.isNotEmpty)
|
||||||
qrCodeUrl,
|
Image.network(
|
||||||
width: 400.w,
|
qrCodeUrl,
|
||||||
height: 400.w,
|
width: 400.w,
|
||||||
),
|
height: 400.w,
|
||||||
|
)
|
||||||
|
else
|
||||||
|
Container(),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user