|
|
|
@ -737,8 +737,13 @@ class _UnionDetailsPage extends State<UnionDetailsPage> {
|
|
|
|
|
itemBuilder: (context, position) { |
|
|
|
|
return InkWell( |
|
|
|
|
onTap: () { |
|
|
|
|
Navigator.of(context).pushNamed('/router/store_detail_page', |
|
|
|
|
arguments: {"activityId": activitys[position].id}); |
|
|
|
|
if (widget.arguments["source"] != null |
|
|
|
|
&& widget.arguments["source"] == activitys[position].id) { |
|
|
|
|
Navigator.of(context).pop(); |
|
|
|
|
} else { |
|
|
|
|
Navigator.of(context).pushNamed('/router/store_detail_page', |
|
|
|
|
arguments: {"activityId": activitys[position].id, "source": widget.arguments["id"]}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
child: Container( |
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 5.w), |
|
|
|
|