Commit e86c6dec authored by 杜欣's avatar 杜欣

二级方案对比按钮

parent 73e3d6da
......@@ -420,7 +420,16 @@ class LevelTwoState extends BaseState<LevelTwoPage>
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Container(
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
RouterCenterImpl().findMainRouter().jumpPage(
context,
"level_two_plan_compare",
{"planType": 2, "planId": widget.planId},
false);
},
child: Container(
margin: EdgeInsets.only(left: 18),
width: 30,
child: Column(
......@@ -438,6 +447,7 @@ class LevelTwoState extends BaseState<LevelTwoPage>
],
),
),
),
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
......
......@@ -5,8 +5,8 @@
class PlanOverViewBean {
int error;
String message;
Map extra;
Map errorExtra;
Null extra;
Null errorExtra;
UserType userType;
PlanOverData data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment