20 lines
574 B
Dart
Raw Normal View History

2023-11-13 09:47:19 +08:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:star_lock/main/lockDetail/messageWarn/lockUser/lockUser_entity.dart';
2023-11-13 09:47:19 +08:00
class LockUserState {
TextEditingController searchController = TextEditingController(); //邮箱/手机号输入框
var isSelectUser = false.obs;
var isSelectIndex = 0.obs;
var getLockId = 0.obs;
var lockUserList = <LockUserListKeys>[].obs; //锁所有用户列表
LockUserState() {
Map map = Get.arguments;
if (map['getLockId'] != null) {
getLockId.value = map['getLockId'];
}
}
2023-11-13 09:47:19 +08:00
}