增加跳转意见反馈页面带content参数
This commit is contained in:
@ -39,6 +39,7 @@ public class SkipActivity extends BaseActivity {
|
||||
intent.putExtra("id", id);
|
||||
intent.putExtra("name", getIntent().getData().getQueryParameter("name"));
|
||||
} else if ("suggestion".equals(host)) {
|
||||
intent.putExtra("content", getIntent().getData().getQueryParameter("content"));
|
||||
intent.setClass(this, SuggestionActivity.class);
|
||||
}
|
||||
} else {
|
||||
@ -58,6 +59,7 @@ public class SkipActivity extends BaseActivity {
|
||||
intent.putExtra("id", id);
|
||||
intent.putExtra("name", getIntent().getData().getQueryParameter("name"));
|
||||
} else if ("suggestion".equals(host)) {
|
||||
intent.putExtra("content", getIntent().getData().getQueryParameter("content"));
|
||||
intent.putExtra("to", "SuggestionActivity");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user