1,新增删除电子钥匙接口
2,新增删除密码接口 3,调试电子钥匙有效期时间更改接口u
This commit is contained in:
parent
d6570450cf
commit
f2cbec8f5e
@ -81,7 +81,8 @@ class _ElectronicKeyDetailPageState extends State<ElectronicKeyDetailPage> {
|
|||||||
isHaveDirection: true,
|
isHaveDirection: true,
|
||||||
action: () {
|
action: () {
|
||||||
Navigator.pushNamed(
|
Navigator.pushNamed(
|
||||||
context, Routers.electronicKeyDetailChangeDate);
|
context, Routers.electronicKeyDetailChangeDate,
|
||||||
|
arguments: {"itemData": itemData});
|
||||||
}),
|
}),
|
||||||
Container(height: 10.h),
|
Container(height: 10.h),
|
||||||
CommonItem(
|
CommonItem(
|
||||||
@ -252,7 +253,7 @@ class _ElectronicKeyDetailPageState extends State<ElectronicKeyDetailPage> {
|
|||||||
Future<void> modifyKeyNameRequest() async {
|
Future<void> modifyKeyNameRequest() async {
|
||||||
KeyOperationRecordEntity entity = await ApiRepository.to
|
KeyOperationRecordEntity entity = await ApiRepository.to
|
||||||
.modifyKeyNameForAdmin(
|
.modifyKeyNameForAdmin(
|
||||||
itemData.keyId.toString(), _changeNameController.text, '0');
|
itemData.keyId.toString(), _changeNameController.text, '');
|
||||||
if (entity.errorCode!.codeIsSuccessful) {
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
print("修改要是名称成功啦啦啦啦啦");
|
print("修改要是名称成功啦啦啦啦啦");
|
||||||
Toast.show(msg: "修改成功");
|
Toast.show(msg: "修改成功");
|
||||||
@ -265,7 +266,7 @@ class _ElectronicKeyDetailPageState extends State<ElectronicKeyDetailPage> {
|
|||||||
//删除电子钥匙名称请求
|
//删除电子钥匙名称请求
|
||||||
Future<void> deleteKeyRequest() async {
|
Future<void> deleteKeyRequest() async {
|
||||||
ElectronicKeyListEntity entity =
|
ElectronicKeyListEntity entity =
|
||||||
await ApiRepository.to.deleteElectronicKey('0');
|
await ApiRepository.to.deleteElectronicKey(itemData.keyId.toString());
|
||||||
if (entity.errorCode!.codeIsSuccessful) {
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
print("删除电子钥匙成功");
|
print("删除电子钥匙成功");
|
||||||
Toast.show(msg: "删除成功");
|
Toast.show(msg: "删除成功");
|
||||||
|
|||||||
@ -1,11 +1,16 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_cupertino_datetime_picker/flutter_cupertino_datetime_picker.dart';
|
import 'package:flutter_pickers/pickers.dart';
|
||||||
|
import 'package:flutter_pickers/time_picker/model/date_mode.dart';
|
||||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:star_lock/main/lockDetail/electronicKey/electronicKeyDetail/keyOperationRecordEntity.dart';
|
||||||
|
import 'package:star_lock/main/lockDetail/electronicKey/electronicKeyList/entity/ElectronicKeyListEntity.dart';
|
||||||
|
import 'package:star_lock/network/api_repository.dart';
|
||||||
|
import 'package:star_lock/tools/baseGetXController.dart';
|
||||||
|
import 'package:star_lock/tools/toast.dart';
|
||||||
|
|
||||||
import '../../../../../app_settings/app_colors.dart';
|
import '../../../../../app_settings/app_colors.dart';
|
||||||
import '../../../../../tools/commonItem.dart';
|
import '../../../../../tools/commonItem.dart';
|
||||||
import '../../../../../tools/showSeletDateTime.dart';
|
|
||||||
import '../../../../../tools/titleAppBar.dart';
|
import '../../../../../tools/titleAppBar.dart';
|
||||||
import '../../../../../translations/trans_lib.dart';
|
import '../../../../../translations/trans_lib.dart';
|
||||||
|
|
||||||
@ -19,8 +24,23 @@ class ElectronicKeyDetailChangeDate extends StatefulWidget {
|
|||||||
|
|
||||||
class _ElectronicKeyDetailChangeDateState
|
class _ElectronicKeyDetailChangeDateState
|
||||||
extends State<ElectronicKeyDetailChangeDate> {
|
extends State<ElectronicKeyDetailChangeDate> {
|
||||||
|
ElectronicKeyListItem itemData = ElectronicKeyListItem();
|
||||||
|
|
||||||
|
String _selectEffectiveDate = ''; //生效时间
|
||||||
|
String _selectFailureDate = ''; //失效时间
|
||||||
|
late DateTime _effectiveDateTime;
|
||||||
|
late DateTime _failureDateTime;
|
||||||
|
late String endDay = '';
|
||||||
|
late String startDay = '';
|
||||||
|
late List weekDays = [];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
dynamic obj = ModalRoute.of(context)?.settings.arguments;
|
||||||
|
if (obj != null && (obj["itemData"] != null)) {
|
||||||
|
itemData = obj["itemData"];
|
||||||
|
}
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: AppColors.mainBackgroundColor,
|
backgroundColor: AppColors.mainBackgroundColor,
|
||||||
appBar: TitleAppBar(
|
appBar: TitleAppBar(
|
||||||
@ -34,7 +54,9 @@ class _ElectronicKeyDetailChangeDateState
|
|||||||
TranslationLoader.lanKeys!.sure!.tr,
|
TranslationLoader.lanKeys!.sure!.tr,
|
||||||
style: TextStyle(color: Colors.white, fontSize: 24.sp),
|
style: TextStyle(color: Colors.white, fontSize: 24.sp),
|
||||||
),
|
),
|
||||||
onPressed: () {},
|
onPressed: () {
|
||||||
|
updateKeyDateRequest();
|
||||||
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@ -47,50 +69,58 @@ class _ElectronicKeyDetailChangeDateState
|
|||||||
children: [
|
children: [
|
||||||
CommonItem(
|
CommonItem(
|
||||||
leftTitel: TranslationLoader.lanKeys!.effectiveTime!.tr,
|
leftTitel: TranslationLoader.lanKeys!.effectiveTime!.tr,
|
||||||
rightTitle: "2020.06.20 11:49",
|
rightTitle: _selectEffectiveDate,
|
||||||
isHaveDirection: true,
|
|
||||||
isHaveLine: true,
|
isHaveLine: true,
|
||||||
|
isHaveDirection: true,
|
||||||
action: () {
|
action: () {
|
||||||
ShowSeletDateTime().showDatePicker(
|
Pickers.showDatePicker(context, mode: DateMode.YMDHM,
|
||||||
context,
|
onConfirm: (p) {
|
||||||
'2100-01-01 00:00',
|
setState(() {
|
||||||
'1900-01-01 00:00',
|
_selectEffectiveDate =
|
||||||
getNowDate(),
|
'${p.year}-${intToStr(p.month!)}-${intToStr(p.day!)} ${intToStr(p.hour!)}:${intToStr(p.minute!)}';
|
||||||
'yyyy-MMMM-dd HH:mm',
|
_effectiveDateTime = DateTime.parse(_selectEffectiveDate);
|
||||||
(dateTime, List<int> index) {});
|
});
|
||||||
|
});
|
||||||
}),
|
}),
|
||||||
CommonItem(
|
CommonItem(
|
||||||
leftTitel: TranslationLoader.lanKeys!.failureTime!.tr,
|
leftTitel: TranslationLoader.lanKeys!.failureTime!.tr,
|
||||||
rightTitle: "2020.06.20 11:49",
|
rightTitle: _selectFailureDate,
|
||||||
isHaveDirection: true,
|
isHaveDirection: true,
|
||||||
action: () {
|
action: () {
|
||||||
ShowSeletDateTime().showDatePicker(context, '00:00', '00:00',
|
Pickers.showDatePicker(context, mode: DateMode.YMDHM,
|
||||||
getNowDate(), 'HH:mm', (dateTime, List<int> index) {});
|
onConfirm: (p) {
|
||||||
|
setState(() {
|
||||||
|
_selectFailureDate =
|
||||||
|
'${p.year}-${intToStr(p.month!)}-${intToStr(p.day!)} ${intToStr(p.hour!)}:${intToStr(p.minute!)}';
|
||||||
|
_failureDateTime = DateTime.parse(_selectFailureDate);
|
||||||
|
});
|
||||||
|
});
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
String getNowDate() {
|
//修改钥匙名称请求
|
||||||
// 获取当前时间对象
|
Future<void> updateKeyDateRequest() async {
|
||||||
DateTime today = DateTime.now();
|
KeyOperationRecordEntity entity = await ApiRepository.to.updateKeyDate(
|
||||||
String dateSlug =
|
itemData.keyId.toString(),
|
||||||
"${today.hour.toString().padLeft(2, '0')}:${today.minute.toString().padLeft(2, '0')}";
|
itemData.lockId.toString(),
|
||||||
|
_failureDateTime.millisecondsSinceEpoch.toString(),
|
||||||
|
endDay,
|
||||||
|
'',
|
||||||
|
_effectiveDateTime.millisecondsSinceEpoch.toString(),
|
||||||
|
startDay,
|
||||||
|
weekDays);
|
||||||
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
|
print("修改要是名称成功啦啦啦啦啦");
|
||||||
|
Toast.show(msg: "修改成功");
|
||||||
|
setState(() {
|
||||||
|
Navigator.pop(context);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// //获取当前时间的年
|
String intToStr(int v) {
|
||||||
// int year = now.year;
|
return (v < 10) ? "0$v" : "$v";
|
||||||
// //获取当前时间的月
|
|
||||||
// int month = now.month;
|
|
||||||
// //获取当前时间的日
|
|
||||||
// int day = now.day;
|
|
||||||
// //获取当前时间的时
|
|
||||||
// int hour = now.hour;
|
|
||||||
// //获取当前时间的分
|
|
||||||
// int minute = now.minute;
|
|
||||||
// //获取当前时间的秒
|
|
||||||
// int millisecond = now.millisecond;
|
|
||||||
|
|
||||||
// print("组合 $year-$month-$day $hour:$minute:$millisecond");
|
|
||||||
return dateSlug;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:star_lock/network/api_repository.dart';
|
||||||
|
import 'package:star_lock/tools/baseGetXController.dart';
|
||||||
|
|
||||||
import '../../../../../appRouters.dart';
|
import '../../../../../appRouters.dart';
|
||||||
import '../../../../../app_settings/app_colors.dart';
|
import '../../../../../app_settings/app_colors.dart';
|
||||||
@ -104,4 +106,35 @@ class _BasicInformationPageState extends State<BasicInformationPage> {
|
|||||||
],
|
],
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void getLockInfo() async {
|
||||||
|
var entity = await ApiRepository.to.getLockInfo(
|
||||||
|
lastUpdateDate: DateTime.now().millisecondsSinceEpoch.toString(),
|
||||||
|
pageNo: '1',
|
||||||
|
);
|
||||||
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
|
// if (page == 0) {
|
||||||
|
// refreshController.refreshCompleted();
|
||||||
|
// } else {
|
||||||
|
// if (entity.data!.keyInfos!.isEmpty) {
|
||||||
|
// refreshController.loadNoData();
|
||||||
|
// } else {
|
||||||
|
// refreshController.loadComplete();
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// page++;
|
||||||
|
|
||||||
|
if (entity.data!.keyInfos!.isEmpty) {
|
||||||
|
state.dataLength.value = 0;
|
||||||
|
} else if (entity.data!.keyInfos!.length == 1) {
|
||||||
|
state.dataLength.value = 1;
|
||||||
|
} else {
|
||||||
|
state.dataLength.value = 2;
|
||||||
|
}
|
||||||
|
state.lockMainEntity.value = entity;
|
||||||
|
} else {
|
||||||
|
// refreshController.loadFailed();
|
||||||
|
}
|
||||||
|
// refreshController.refreshCompleted();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,6 +2,7 @@ import 'package:flutter/cupertino.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:star_lock/main/lockDetail/electronicKey/electronicKeyList/entity/ElectronicKeyListEntity.dart';
|
||||||
import 'package:star_lock/main/lockDetail/passwordKey/passwordKeyList/passwordKeyListEntity.dart';
|
import 'package:star_lock/main/lockDetail/passwordKey/passwordKeyList/passwordKeyListEntity.dart';
|
||||||
import 'package:star_lock/main/lockDetail/passwordKey/passwordKey_perpetual/passwordKeyEntity.dart';
|
import 'package:star_lock/main/lockDetail/passwordKey/passwordKey_perpetual/passwordKeyEntity.dart';
|
||||||
import 'package:star_lock/network/api_repository.dart';
|
import 'package:star_lock/network/api_repository.dart';
|
||||||
@ -33,149 +34,166 @@ class _PasswordKeyDetailPageState extends State<PasswordKeyDetailPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: AppColors.mainBackgroundColor,
|
backgroundColor: AppColors.mainBackgroundColor,
|
||||||
appBar: TitleAppBar(
|
appBar: TitleAppBar(
|
||||||
barTitle: TranslationLoader.lanKeys!.passwordDetail!.tr,
|
barTitle: TranslationLoader.lanKeys!.passwordDetail!.tr,
|
||||||
haveBack: true,
|
haveBack: true,
|
||||||
backgroundColor: AppColors.mainColor,
|
backgroundColor: AppColors.mainColor,
|
||||||
actionsList: [
|
actionsList: [
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: Image.asset(
|
icon: Image.asset(
|
||||||
'images/icon_bar_share.png',
|
'images/icon_bar_share.png',
|
||||||
height: 30.h,
|
height: 30.h,
|
||||||
width: 30.w,
|
width: 30.w,
|
||||||
|
),
|
||||||
|
onPressed: () {},
|
||||||
),
|
),
|
||||||
onPressed: () {},
|
],
|
||||||
|
// actionsList: [
|
||||||
|
// TextButton(
|
||||||
|
// child: Text(
|
||||||
|
// "分享",
|
||||||
|
// style: TextStyle(color: Colors.white, fontSize: 24.sp),
|
||||||
|
// ),
|
||||||
|
// onPressed: () {},
|
||||||
|
// ),
|
||||||
|
// ],
|
||||||
|
),
|
||||||
|
body: SingleChildScrollView(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.password!.tr,
|
||||||
|
rightTitle: itemData.keyboardPwd,
|
||||||
|
isHaveDirection: true,
|
||||||
|
isHaveLine: true,
|
||||||
|
action: () {
|
||||||
|
showCupertinoAlertDialog(context);
|
||||||
|
}),
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.name!.tr,
|
||||||
|
rightTitle: itemData.keyboardPwdName,
|
||||||
|
isHaveDirection: true,
|
||||||
|
isHaveLine: true,
|
||||||
|
action: () {
|
||||||
|
showCupertinoAlertDialog(context);
|
||||||
|
}),
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.effectiveTime!.tr,
|
||||||
|
rightTitle: "永久",
|
||||||
|
isHaveDirection: true,
|
||||||
|
action: () {
|
||||||
|
Navigator.pushNamed(
|
||||||
|
context, Routers.electronicKeyDetailChangeDate);
|
||||||
|
}),
|
||||||
|
Container(height: 10.h),
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.sender!.tr,
|
||||||
|
rightTitle: itemData.senderUsername,
|
||||||
|
isHaveLine: true,
|
||||||
|
action: () {}),
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.senderTime!.tr,
|
||||||
|
rightTitle: getSenderDate(itemData),
|
||||||
|
action: () {}),
|
||||||
|
Container(height: 10.h),
|
||||||
|
CommonItem(
|
||||||
|
leftTitel: TranslationLoader.lanKeys!.operatingRecord!.tr,
|
||||||
|
rightTitle: "",
|
||||||
|
isHaveDirection: true,
|
||||||
|
action: () {
|
||||||
|
Navigator.pushNamed(context, Routers.keyOperationRecordPage,
|
||||||
|
arguments: {
|
||||||
|
'lockId': itemData.lockId.toString(),
|
||||||
|
'keyId': itemData.keyboardPwdId.toString()
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
Container(height: 40.h),
|
||||||
|
SizedBox(
|
||||||
|
width: ScreenUtil().screenWidth - 40.w,
|
||||||
|
height: 60.h,
|
||||||
|
child: OutlinedButton(
|
||||||
|
style: OutlinedButton.styleFrom(
|
||||||
|
// backgroundColor: Colors.white,
|
||||||
|
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pushNamed(
|
||||||
|
context, Routers.otherTypeKeyManagePage,
|
||||||
|
arguments: 0);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'设置卡',
|
||||||
|
style: TextStyle(
|
||||||
|
color: AppColors.mainColor, fontSize: 24.sp),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10.h,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: ScreenUtil().screenWidth - 40.w,
|
||||||
|
height: 60.h,
|
||||||
|
child: OutlinedButton(
|
||||||
|
style: OutlinedButton.styleFrom(
|
||||||
|
// backgroundColor: Colors.white,
|
||||||
|
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pushNamed(
|
||||||
|
context, Routers.otherTypeKeyManagePage,
|
||||||
|
arguments: 1);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'设置指纹',
|
||||||
|
style: TextStyle(
|
||||||
|
color: AppColors.mainColor, fontSize: 24.sp),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10.h,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: ScreenUtil().screenWidth - 40.w,
|
||||||
|
height: 60.h,
|
||||||
|
child: OutlinedButton(
|
||||||
|
style: OutlinedButton.styleFrom(
|
||||||
|
// backgroundColor: Colors.white,
|
||||||
|
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pushNamed(
|
||||||
|
context, Routers.otherTypeKeyManagePage,
|
||||||
|
arguments: 2);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
'设置遥控',
|
||||||
|
style: TextStyle(
|
||||||
|
color: AppColors.mainColor, fontSize: 24.sp),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 30.h,
|
||||||
|
),
|
||||||
|
SubmitBtn(
|
||||||
|
btnName: TranslationLoader.lanKeys!.delete!.tr,
|
||||||
|
isDelete: true,
|
||||||
|
borderRadius: 20.w,
|
||||||
|
margin: EdgeInsets.only(
|
||||||
|
left: 30.w, right: 30.w, top: 30.w, bottom: 30.w),
|
||||||
|
padding: EdgeInsets.only(top: 25.w, bottom: 25.w),
|
||||||
|
onClick: () {
|
||||||
|
deletePwdRequest();
|
||||||
|
}),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
));
|
||||||
// actionsList: [
|
}
|
||||||
// TextButton(
|
|
||||||
// child: Text(
|
//发送时间
|
||||||
// "分享",
|
String getSenderDate(PasswordKeyListItem indexEntity) {
|
||||||
// style: TextStyle(color: Colors.white, fontSize: 24.sp),
|
String senderDate = '';
|
||||||
// ),
|
DateTime dateStr =
|
||||||
// onPressed: () {},
|
DateTime.fromMillisecondsSinceEpoch(indexEntity.sendDate!);
|
||||||
// ),
|
senderDate = dateStr.toLocal().toString().substring(0, 16);
|
||||||
// ],
|
return senderDate;
|
||||||
),
|
|
||||||
body: Column(
|
|
||||||
children: [
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.password!.tr,
|
|
||||||
rightTitle: itemData.keyboardPwd,
|
|
||||||
isHaveDirection: true,
|
|
||||||
isHaveLine: true,
|
|
||||||
action: () {
|
|
||||||
showCupertinoAlertDialog(context);
|
|
||||||
}),
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.name!.tr,
|
|
||||||
rightTitle: itemData.keyboardPwdName,
|
|
||||||
isHaveDirection: true,
|
|
||||||
isHaveLine: true,
|
|
||||||
action: () {
|
|
||||||
showCupertinoAlertDialog(context);
|
|
||||||
}),
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.effectiveTime!.tr,
|
|
||||||
rightTitle: "永久",
|
|
||||||
isHaveDirection: true,
|
|
||||||
action: () {
|
|
||||||
Navigator.pushNamed(
|
|
||||||
context, Routers.electronicKeyDetailChangeDate);
|
|
||||||
}),
|
|
||||||
Container(height: 10.h),
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.sender!.tr,
|
|
||||||
rightTitle: itemData.senderUsername,
|
|
||||||
action: () {}),
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.senderTime!.tr,
|
|
||||||
rightTitle: itemData.sendDate.toString(),
|
|
||||||
action: () {}),
|
|
||||||
Container(height: 10.h),
|
|
||||||
CommonItem(
|
|
||||||
leftTitel: TranslationLoader.lanKeys!.operatingRecord!.tr,
|
|
||||||
rightTitle: "",
|
|
||||||
isHaveDirection: true,
|
|
||||||
action: () {
|
|
||||||
Navigator.pushNamed(context, Routers.keyOperationRecordPage,
|
|
||||||
arguments: {
|
|
||||||
'lockId': itemData.lockId.toString(),
|
|
||||||
'keyId': itemData.keyboardPwdId.toString()
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
Container(height: 40.h),
|
|
||||||
SizedBox(
|
|
||||||
width: ScreenUtil().screenWidth - 40.w,
|
|
||||||
height: 60.h,
|
|
||||||
child: OutlinedButton(
|
|
||||||
style: OutlinedButton.styleFrom(
|
|
||||||
// backgroundColor: Colors.white,
|
|
||||||
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pushNamed(context, Routers.otherTypeKeyManagePage,
|
|
||||||
arguments: 0);
|
|
||||||
},
|
|
||||||
child: Text(
|
|
||||||
'设置卡',
|
|
||||||
style: TextStyle(color: AppColors.mainColor, fontSize: 24.sp),
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 10.h,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: ScreenUtil().screenWidth - 40.w,
|
|
||||||
height: 60.h,
|
|
||||||
child: OutlinedButton(
|
|
||||||
style: OutlinedButton.styleFrom(
|
|
||||||
// backgroundColor: Colors.white,
|
|
||||||
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pushNamed(context, Routers.otherTypeKeyManagePage,
|
|
||||||
arguments: 1);
|
|
||||||
},
|
|
||||||
child: Text(
|
|
||||||
'设置指纹',
|
|
||||||
style: TextStyle(color: AppColors.mainColor, fontSize: 24.sp),
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 10.h,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: ScreenUtil().screenWidth - 40.w,
|
|
||||||
height: 60.h,
|
|
||||||
child: OutlinedButton(
|
|
||||||
style: OutlinedButton.styleFrom(
|
|
||||||
// backgroundColor: Colors.white,
|
|
||||||
side: BorderSide(width: 1, color: AppColors.mainColor)),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.pushNamed(context, Routers.otherTypeKeyManagePage,
|
|
||||||
arguments: 2);
|
|
||||||
},
|
|
||||||
child: Text(
|
|
||||||
'设置遥控',
|
|
||||||
style: TextStyle(color: AppColors.mainColor, fontSize: 24.sp),
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 30.h,
|
|
||||||
),
|
|
||||||
SubmitBtn(
|
|
||||||
btnName: TranslationLoader.lanKeys!.delete!.tr,
|
|
||||||
isDelete: true,
|
|
||||||
borderRadius: 20.w,
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
left: 30.w, right: 30.w, top: 30.w, bottom: 30.w),
|
|
||||||
padding: EdgeInsets.only(top: 25.w, bottom: 25.w),
|
|
||||||
onClick: () {
|
|
||||||
deletePwdRequest();
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget commonItem(String leftTitle, String rightTitle,
|
Widget commonItem(String leftTitle, String rightTitle,
|
||||||
@ -241,10 +259,10 @@ class _PasswordKeyDetailPageState extends State<PasswordKeyDetailPage> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
//删除密码请求
|
//删除密码请求 deleteType:1-蓝牙 2-网关
|
||||||
Future<void> deletePwdRequest() async {
|
Future<void> deletePwdRequest() async {
|
||||||
PasswordKeyEntity entity =
|
PasswordKeyEntity entity = await ApiRepository.to.deleteKeyboardPwd(
|
||||||
await ApiRepository.to.deleteKeyboardPwd('0', '1', '1');
|
itemData.lockId.toString(), itemData.keyboardPwdId.toString(), '1');
|
||||||
if (entity.errorCode!.codeIsSuccessful) {
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
print("删除密码成功");
|
print("删除密码成功");
|
||||||
Toast.show(msg: "删除成功");
|
Toast.show(msg: "删除成功");
|
||||||
|
|||||||
@ -400,7 +400,7 @@ class _PasswordKeyPerpetualPageState extends State<PasswordKeyPerpetualPage> {
|
|||||||
//清空码
|
//清空码
|
||||||
getKeyType = '4';
|
getKeyType = '4';
|
||||||
}
|
}
|
||||||
if (widget.type == '0') {
|
if (widget.type != '0' || widget.type != '2' || widget.type == '5') {
|
||||||
getFailureDateTime =
|
getFailureDateTime =
|
||||||
DateTime.parse(_selectFailureDate).millisecondsSinceEpoch.toString();
|
DateTime.parse(_selectFailureDate).millisecondsSinceEpoch.toString();
|
||||||
getEffectiveDateTime = DateTime.parse(_selectEffectiveDate)
|
getEffectiveDateTime = DateTime.parse(_selectEffectiveDate)
|
||||||
|
|||||||
@ -23,10 +23,11 @@ abstract class Api {
|
|||||||
final String modifyKeyNameURL = '/key/modifyKeyName'; //修改锁名称
|
final String modifyKeyNameURL = '/key/modifyKeyName'; //修改锁名称
|
||||||
final String modifyKeyNameForAdminURL =
|
final String modifyKeyNameForAdminURL =
|
||||||
'/key/modifyKeyNameForAdmin'; //编辑电子钥匙名字
|
'/key/modifyKeyNameForAdmin'; //编辑电子钥匙名字
|
||||||
|
final String updateKeyDateURL = '/key/updateKeyDate'; //编辑电子钥匙的有效期、有效时间、有效日
|
||||||
final String passwordKeyListURL = '/keyboardPwd/listSendRecords'; //密码钥匙列表
|
final String passwordKeyListURL = '/keyboardPwd/listSendRecords'; //密码钥匙列表
|
||||||
final String passwordKeyResetURL = '/keyboardPwd/reset'; //密码钥匙重置
|
final String passwordKeyResetURL = '/keyboardPwd/reset'; //密码钥匙重置
|
||||||
final String deleteElectronicKeyURL = '/keyboardPwd/reset'; //删除电子钥匙
|
final String deleteElectronicKeyURL = '/key/delete'; //删除电子钥匙
|
||||||
final String deleteKeyboardPwdURL = '/keyboardPwd/reset'; //删除密码
|
final String deleteKeyboardPwdURL = '/keyboardPwd/delete'; //删除密码
|
||||||
final String getLockInfoURL = '/lock/syncDataPage'; // 获取锁信息
|
final String getLockInfoURL = '/lock/syncDataPage'; // 获取锁信息
|
||||||
final String deletLockURL = '/lock/delete'; // 删除锁
|
final String deletLockURL = '/lock/delete'; // 删除锁
|
||||||
|
|
||||||
|
|||||||
@ -194,6 +194,28 @@ class ApiProvider extends BaseProvider {
|
|||||||
'operatorUid': operatorUid,
|
'operatorUid': operatorUid,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
Future<Response> updateKeyDate(
|
||||||
|
String keyId,
|
||||||
|
String lockId,
|
||||||
|
String endDate,
|
||||||
|
String endDay,
|
||||||
|
String operatorUid,
|
||||||
|
String startDate,
|
||||||
|
String startDay,
|
||||||
|
List weekDays) =>
|
||||||
|
post(
|
||||||
|
updateKeyDateURL.toUrl,
|
||||||
|
jsonEncode({
|
||||||
|
'keyId': keyId,
|
||||||
|
'lockId': lockId,
|
||||||
|
'endDate': endDate,
|
||||||
|
'endDay': endDay,
|
||||||
|
'operatorUid': operatorUid,
|
||||||
|
'startDate': startDate,
|
||||||
|
'startDay': startDay,
|
||||||
|
'weekDays': weekDays,
|
||||||
|
}));
|
||||||
|
|
||||||
Future<Response> resetElectronicKey(String lockId, String operatorUid) =>
|
Future<Response> resetElectronicKey(String lockId, String operatorUid) =>
|
||||||
post(resetElectronicKeyURL.toUrl,
|
post(resetElectronicKeyURL.toUrl,
|
||||||
jsonEncode({'lockId': lockId, 'operatorUid': operatorUid}));
|
jsonEncode({'lockId': lockId, 'operatorUid': operatorUid}));
|
||||||
@ -332,11 +354,11 @@ class ApiProvider extends BaseProvider {
|
|||||||
post(deleteElectronicKeyURL.toUrl, jsonEncode({'keyId': keyId}));
|
post(deleteElectronicKeyURL.toUrl, jsonEncode({'keyId': keyId}));
|
||||||
|
|
||||||
Future<Response> deleteKeyboardPwd(
|
Future<Response> deleteKeyboardPwd(
|
||||||
String keyId, String keyboardPwdId, String deleteType) =>
|
String lockId, String keyboardPwdId, String deleteType) =>
|
||||||
post(
|
post(
|
||||||
deleteKeyboardPwdURL.toUrl,
|
deleteKeyboardPwdURL.toUrl,
|
||||||
jsonEncode({
|
jsonEncode({
|
||||||
'keyId': keyId,
|
'lockId': lockId,
|
||||||
'keyboardPwdId': keyboardPwdId,
|
'keyboardPwdId': keyboardPwdId,
|
||||||
'deleteType': deleteType
|
'deleteType': deleteType
|
||||||
}));
|
}));
|
||||||
|
|||||||
@ -192,9 +192,17 @@ class ApiRepository {
|
|||||||
required Map position,
|
required Map position,
|
||||||
required Map bluetooth,
|
required Map bluetooth,
|
||||||
required String deviceNo,
|
required String deviceNo,
|
||||||
required String lockUserNo}) async {
|
required String lockUserNo}) async {
|
||||||
final res = await apiProvider.bindingBlueAdmin(bindingDate, hotelMode,
|
final res = await apiProvider.bindingBlueAdmin(
|
||||||
lockAlias, lockData, nbInitSuccess, position, bluetooth, deviceNo, lockUserNo);
|
bindingDate,
|
||||||
|
hotelMode,
|
||||||
|
lockAlias,
|
||||||
|
lockData,
|
||||||
|
nbInitSuccess,
|
||||||
|
position,
|
||||||
|
bluetooth,
|
||||||
|
deviceNo,
|
||||||
|
lockUserNo);
|
||||||
return SaveLockEntity.fromJson(res.body);
|
return SaveLockEntity.fromJson(res.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -229,7 +237,22 @@ class ApiRepository {
|
|||||||
return KeyOperationRecordEntity.fromJson(res.body);
|
return KeyOperationRecordEntity.fromJson(res.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
//编辑电子钥匙名字
|
//编辑电子钥匙有效期
|
||||||
|
Future<KeyOperationRecordEntity> updateKeyDate(
|
||||||
|
String keyId,
|
||||||
|
String lockId,
|
||||||
|
String endDate,
|
||||||
|
String endDay,
|
||||||
|
String operatorUid,
|
||||||
|
String startDate,
|
||||||
|
String startDay,
|
||||||
|
List weekDays) async {
|
||||||
|
final res = await apiProvider.updateKeyDate(keyId, lockId, endDate, endDay,
|
||||||
|
operatorUid, startDate, startDay, weekDays);
|
||||||
|
return KeyOperationRecordEntity.fromJson(res.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
//密码列表
|
||||||
Future<PasswordKeyListEntity> passwordKeyList(
|
Future<PasswordKeyListEntity> passwordKeyList(
|
||||||
String keyStatus,
|
String keyStatus,
|
||||||
String lockId,
|
String lockId,
|
||||||
@ -314,9 +337,9 @@ class ApiRepository {
|
|||||||
|
|
||||||
//删除密码
|
//删除密码
|
||||||
Future<PasswordKeyEntity> deleteKeyboardPwd(
|
Future<PasswordKeyEntity> deleteKeyboardPwd(
|
||||||
String keyId, String keyboardPwdId, String deleteType) async {
|
String lockId, String keyboardPwdId, String deleteType) async {
|
||||||
final res =
|
final res =
|
||||||
await apiProvider.deleteKeyboardPwd(keyId, keyboardPwdId, deleteType);
|
await apiProvider.deleteKeyboardPwd(lockId, keyboardPwdId, deleteType);
|
||||||
return PasswordKeyEntity.fromJson(res.body);
|
return PasswordKeyEntity.fromJson(res.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user