Commit bf92f715 authored by 林生雨's avatar 林生雨

w

parent 4146105c
...@@ -150,6 +150,18 @@ class LevelOneListState extends State<LevelOneList> ...@@ -150,6 +150,18 @@ class LevelOneListState extends State<LevelOneList>
RouterCenterImpl().findMainRouter().jumpPage( RouterCenterImpl().findMainRouter().jumpPage(
context, data2.hospital.messageUrl, null, true); context, data2.hospital.messageUrl, null, true);
} else if (data2.cardType == "plan") { } else if (data2.cardType == "plan") {
if (CacheManager.getInstance()
.get(MEMORY_CACHE)
.get(USER_ID) ==
null &&
RouterCenterImpl()
.findMainRouter()
.isWithNative()) {
RouterCenterImpl()
.findMainRouter()
.jumpPage(context, "show_login", null, true);
return;
}
buried_on_click_button(index, "consult", buried_on_click_button(index, "consult",
"level_two_plan", "${data2.plan.plan_id}"); "level_two_plan", "${data2.plan.plan_id}");
BaseBottomPicker() BaseBottomPicker()
...@@ -180,7 +192,7 @@ class LevelOneListState extends State<LevelOneList> ...@@ -180,7 +192,7 @@ class LevelOneListState extends State<LevelOneList>
widget.index == 0 widget.index == 0
? "level_one_plan_compare" ? "level_one_plan_compare"
: "level_two_plan_compare", : "level_two_plan_compare",
{"planId": planId, "planType": 2}, map,
false); false);
}, },
tabName: _model.tab_type, tabName: _model.tab_type,
......
...@@ -555,3 +555,4 @@ Widget baseStateView(double width, double height, LiveData<int> stateLive, ...@@ -555,3 +555,4 @@ Widget baseStateView(double width, double height, LiveData<int> stateLive,
}, },
); );
} }
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