25 lines
414 B
Dart
25 lines
414 B
Dart
import 'package:get/get.dart';
|
|
|
|
class NDaysUnopenedState {
|
|
final List<String> unopenDoorTimeList = [
|
|
'1天',
|
|
'2天',
|
|
'3天',
|
|
'4天',
|
|
'5天',
|
|
'6天',
|
|
'7天',
|
|
'8天',
|
|
'9天',
|
|
'10天',
|
|
'11天',
|
|
'12天',
|
|
'13天',
|
|
'14天',
|
|
'15天',
|
|
];
|
|
|
|
var isunOpenNotice = false.obs; // 是否N天未开门提醒
|
|
var unOpenDoorTime = '1天'.obs; // 未开门时间
|
|
}
|