|
@@ -912,11 +912,9 @@ Page({
|
|
|
if (constant.strings.isEmpty(item.forwardUrl)) {
|
|
|
return;
|
|
|
}
|
|
|
- // 内链,暂时不支持
|
|
|
- if (item.forwardType == 0) {
|
|
|
- constant.routeUtil.jump(item.forwardUrl, item.forwardUrl);
|
|
|
- }
|
|
|
- // 外链
|
|
|
+ // 外链,暂时不支持
|
|
|
+ if (item.forwardType == 0) {}
|
|
|
+ // 内链
|
|
|
else if (item.forwardType == 1) {
|
|
|
var param = "?param=" + item.forwardUrl;
|
|
|
constant.routeUtil.jumpParam(constant.routePath.webview, param);
|