开放跳转链接

所有链接

原生短链说明

短链 说明 参数 备注
fund://page/funddetail 基金品种 fundcode 基金代码 --
fund://page/newsdetail 资讯详情页 newsid 资讯id; type 资讯类型 财富号类型资讯 type=10(这里的 type 指的是链接的参数,而不是跳转 api 的 type 参数,可参见示例)
fund://page/fbarticle 基金吧帖子详情 postid:帖子id; scrollcomment:是否要滚到评论区 --
fund://page/pushtofundbardetail 基金吧详情页 fundcode 基金代码 --
fund://page/buyfund 买基金 fundcode 基金代码 --
fund://page/netvaluelist 基金净值 -- --
fund://page/estimatelist 基金估值 -- --
fund://page/rankhome 基金排行 -- --
fund://page/fixranklist 定投排行 -- --
fund://page/gradelist 基金评级 -- --

示例代码

// 跳转基金品种页
fund.navigateToApp({
  type: 1, // 以上类型原生链接 type 都传 1
  url: 'fund://page/funddetail?fundcode=000001'
});

// 跳转财富号类型资讯
fund.navigateToApp({
  type: 1,
  url: 'fund://page/newsdetail?newsid=20200330155810991118800&type=10'
});

1
2
3
4
5
6
7
8
9
10
11
12

小程序短链说明

短链 说明 参数 备注
fund://mp.1234567.com.cn/weex/2440e2932f5c40dd918d1bb2ee8180b6 指数宝首页 -- --
fund://mp.1234567.com.cn/weex/e9f790f3f6b4416f8958637b0fcddd32 积分中心 -- --
fund://mp.1234567.com.cn/weex/e9f790f3f6b4416f8958637b0fcddd32/pages/shoppingMall 积分商城 -- --
fund://mp.1234567.com.cn/weex/e9f790f3f6b4416f8958637b0fcddd32/pages/coupons 卡券列表 -- --
fund://mp.1234567.com.cn/weex/80c11daabe524995b5f8044a0e69718c/pages/cfhdetailpage 财富号机构页 fundId 财富号id --
fund://mp.1234567.com.cn/weex/a461099f332046f0b32783c5d3d980a8/pages/index/index 组合详情页 SubAccountNo 组合id --

示例代码


// 跳转指数宝首页
fund.navigateToApp({
  type: 2, // 以上小程序短链 type 都传 2
  url: 'fund://mp.1234567.com.cn/weex/2440e2932f5c40dd918d1bb2ee8180b6'
});

// 跳转财富号机构页
fund.navigateToApp({
  type: 2,
  url: 'fund://mp.1234567.com.cn/weex/80c11daabe524995b5f8044a0e69718c/pages/cfhdetailpage?fundId=id'
});

// 组合详情页
fund.navigateToApp({
  type: 2,
  url: 'fund://mp.1234567.com.cn/weex/a461099f332046f0b32783c5d3d980a8/pages/index/index?SubAccountNo=id'
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Last Updated: 3/30/2021, 5:19:03 PM