14 lines
457 B
Dart
14 lines
457 B
Dart
import 'package:get/get.dart';
|
|
|
|
class CloudStorageState {
|
|
// 选中的索引
|
|
RxInt selectedIndex = 0.obs;
|
|
|
|
// 选项卡标题
|
|
final List<String> tabs = ['7天滚动存储'.tr, '30天滚动存储'.tr];
|
|
final List<Map<String, dynamic>> tabContent = [
|
|
{'title': '连续包月'.tr, 'price': '1', 'price2': '188', 'discount': '立省188元'.tr},
|
|
{'title': '连续包月'.tr, 'price': '1', 'price2': '188', 'discount': '立省188元'.tr}
|
|
];
|
|
}
|