|
|
@@ -1,3 +1,5 @@
|
|
|
+import 'package:application/view/home/user_manage/user_manage_page.dart';
|
|
|
+
|
|
|
import 'data_detail/data_detail.dart';
|
|
|
import 'app_bar.dart';
|
|
|
import 'map/map_page.dart';
|
|
|
@@ -45,7 +47,7 @@ class HomeView extends GetView<HomeController> {
|
|
|
final _tabElems = [
|
|
|
_TabElem(title: '设置', child: const SizedBox()),
|
|
|
_TabElem(title: '地图', child: const MapPage()),
|
|
|
- _TabElem(title: '用户管理', child: const SizedBox()),
|
|
|
+ _TabElem(title: '用户管理', child: const UserManagePage()),
|
|
|
_TabElem(title: '个人排名', child: const SizedBox()),
|
|
|
_TabElem(title: '分组排名', child: const SizedBox()),
|
|
|
_TabElem(title: '数据详情', child: const DataDetailPage()),
|