修改搜索条件

This commit is contained in:
2025-12-18 10:33:24 +08:00
parent 95c08818cb
commit 3ec56a925c
2 changed files with 13 additions and 4 deletions

View File

@@ -154,7 +154,12 @@ class SitePage extends GetView<SiteController> {
),
ElevatedButton(
onPressed: () {
Get.to(() => const HistoryPage());
Get.to(
() => HistoryPage(),
arguments: {
'stationName': controller.name,
},
);
},
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue.shade700,