diff --git a/example/pages/share-sheet/index.js b/example/pages/share-sheet/index.js index bd08d460..ec5f5b33 100644 --- a/example/pages/share-sheet/index.js +++ b/example/pages/share-sheet/index.js @@ -11,10 +11,13 @@ Page({ }, options: [ { name: '微信', icon: 'wechat', openType: 'share' }, + { name: '朋友圈', icon: 'wechat-moments' }, + { name: 'QQ', icon: 'qq' }, { name: '微博', icon: 'weibo' }, { name: '复制链接', icon: 'link' }, { name: '分享海报', icon: 'poster' }, { name: '二维码', icon: 'qrcode' }, + { name: '小程序码', icon: 'weapp-qrcode' }, ], multiLineOptions: [ diff --git a/packages/share-sheet/README.md b/packages/share-sheet/README.md index 2e7be242..a9761ac6 100644 --- a/packages/share-sheet/README.md +++ b/packages/share-sheet/README.md @@ -176,7 +176,7 @@ Page({ | --- | --- | --- | | name | 分享渠道名称 | _string_ | | description | 分享选项描述 | _string_ | -| icon | 图标,可选值为 `wechat` `weibo` `qq` `link` `qrcode` `poster`,支持传入图片 URL | _string_ | +| icon | 图标,可选值为 `qq` `link` `weibo` `wechat` `poster` `qrcode` `weapp-qrcode` `wechat-moments`,支持传入图片 URL | _string_ | | openType | 按钮 `open-type`,可用于实现分享功能,可选值为 `share` | _string_ | ### Events diff --git a/packages/share-sheet/options.wxs b/packages/share-sheet/options.wxs index ab6033b9..a116d324 100644 --- a/packages/share-sheet/options.wxs +++ b/packages/share-sheet/options.wxs @@ -1,9 +1,9 @@ /* eslint-disable */ -var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster']; +var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments']; function getIconURL(icon) { if (PRESET_ICONS.indexOf(icon) !== -1) { - return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png'; + return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png'; } return icon;