|
@@ -5,10 +5,10 @@ import 'package:location/module/about/about_page.dart';
|
|
|
import 'package:location/module/analyse/location_analyse_page.dart';
|
|
import 'package:location/module/analyse/location_analyse_page.dart';
|
|
|
import 'package:location/module/browser/browser_controller.dart';
|
|
import 'package:location/module/browser/browser_controller.dart';
|
|
|
import 'package:location/module/browser/browser_view.dart';
|
|
import 'package:location/module/browser/browser_view.dart';
|
|
|
-import 'package:location/module/commonpoint/add/common_point_add_controller.dart';
|
|
|
|
|
-import 'package:location/module/commonpoint/add/common_point_add_page.dart';
|
|
|
|
|
import 'package:location/module/commonpoint/common_point_controller.dart';
|
|
import 'package:location/module/commonpoint/common_point_controller.dart';
|
|
|
import 'package:location/module/commonpoint/common_point_page.dart';
|
|
import 'package:location/module/commonpoint/common_point_page.dart';
|
|
|
|
|
+import 'package:location/module/commonpoint/detail/common_point_detail_controller.dart';
|
|
|
|
|
+import 'package:location/module/commonpoint/detail/common_point_detail_page.dart';
|
|
|
import 'package:location/module/commonpoint/select_address/common_point_select_address_page.dart';
|
|
import 'package:location/module/commonpoint/select_address/common_point_select_address_page.dart';
|
|
|
import 'package:location/module/commonpoint/setting/common_point_setting_controller.dart';
|
|
import 'package:location/module/commonpoint/setting/common_point_setting_controller.dart';
|
|
|
import 'package:location/module/commonpoint/setting/common_point_setting_page.dart';
|
|
import 'package:location/module/commonpoint/setting/common_point_setting_page.dart';
|
|
@@ -75,7 +75,7 @@ abstract class RoutePath {
|
|
|
static const locationAnalyse = '/locationAnalyse';
|
|
static const locationAnalyse = '/locationAnalyse';
|
|
|
static const commonPoint = '/commonPoint';
|
|
static const commonPoint = '/commonPoint';
|
|
|
static const commonPointSetting = '/commonPointSetting';
|
|
static const commonPointSetting = '/commonPointSetting';
|
|
|
- static const commonPointAdd = '/commonPointAdd';
|
|
|
|
|
|
|
+ static const commonPointDetail = '/commonPointDetail';
|
|
|
static const commonPointSelectAddress = '/commonPointSelectAddress';
|
|
static const commonPointSelectAddress = '/commonPointSelectAddress';
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -104,7 +104,7 @@ class AppBinding extends Bindings {
|
|
|
lazyPut(() => getIt.get<MemberActivityController>());
|
|
lazyPut(() => getIt.get<MemberActivityController>());
|
|
|
lazyPut(() => getIt.get<CommonPointController>());
|
|
lazyPut(() => getIt.get<CommonPointController>());
|
|
|
lazyPut(() => getIt.get<CommonPointSettingController>());
|
|
lazyPut(() => getIt.get<CommonPointSettingController>());
|
|
|
- lazyPut(() => getIt.get<CommonPointAddController>());
|
|
|
|
|
|
|
+ lazyPut(() => getIt.get<CommonPointDetailController>());
|
|
|
lazyPut(() => getIt.get<CommonPointSelectAddressController>());
|
|
lazyPut(() => getIt.get<CommonPointSelectAddressController>());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -137,7 +137,8 @@ final generalPages = [
|
|
|
GetPage(name: RoutePath.commonPoint, page: () => CommonPointPage()),
|
|
GetPage(name: RoutePath.commonPoint, page: () => CommonPointPage()),
|
|
|
GetPage(
|
|
GetPage(
|
|
|
name: RoutePath.commonPointSetting, page: () => CommonPointSettingPage()),
|
|
name: RoutePath.commonPointSetting, page: () => CommonPointSettingPage()),
|
|
|
- GetPage(name: RoutePath.commonPointAdd, page: () => CommonPointAddPage()),
|
|
|
|
|
|
|
+ GetPage(
|
|
|
|
|
+ name: RoutePath.commonPointDetail, page: () => CommonPointDetailPage()),
|
|
|
GetPage(
|
|
GetPage(
|
|
|
name: RoutePath.commonPointSelectAddress,
|
|
name: RoutePath.commonPointSelectAddress,
|
|
|
page: () => CommonPointSelectAddressPage()),
|
|
page: () => CommonPointSelectAddressPage()),
|