21 lines
559 B
Dart
Executable File
21 lines
559 B
Dart
Executable File
import 'package:get/get.dart';
|
|
import 'package:star_lock/main/lockDetail/videoLog/videoLog/videoLog_entity.dart';
|
|
|
|
class EditVideoLogState {
|
|
var selectVideoLogList = <RecordListData>[].obs; //选中的视频列表
|
|
var isSelectAll = false.obs;
|
|
var videoLogList = [].obs; //全部的视频列表
|
|
var getLockId = 0.obs;
|
|
|
|
EditVideoLogState() {
|
|
Map map = Get.arguments;
|
|
if (map['videoDataList'] != null) {
|
|
videoLogList.value = map['videoDataList'];
|
|
}
|
|
|
|
if (map['lockId'] != null) {
|
|
getLockId.value = map['lockId'];
|
|
}
|
|
}
|
|
}
|