page_router.dart 328 B

1234567891011121314151617181920
  1. import 'package:get/get.dart';
  2. import 'package:router/path/router_path.dart';
  3. import '../modules/sign_in_sign_out/sign_in_sign_out_page.dart';
  4. class JobPageRouter {
  5. static final routes = [
  6. //签到签出
  7. GetPage(
  8. name: RouterPath.JOB_SIGN_IN_SIGN_OUT,
  9. page: () => SignInSignOutPage(),
  10. ),
  11. ];
  12. }