export xlsx

This commit is contained in:
quantulr
2024-06-17 17:28:54 +08:00
parent 62a7c7f29e
commit e0701ba823
8 changed files with 294 additions and 43 deletions

View File

@ -13,10 +13,14 @@ class MyApp extends StatelessWidget {
final _router = GoRouter(
routes: [
GoRoute(
name: "order_list",
path: '/',
builder: (context, state) => const OrderList(),
),
GoRoute(path: '/logistics', builder: (context, state) => const Logistics())
GoRoute(
path: '/logistics',
name: "logistics",
builder: (context, state) => const Logistics())
],
);