fix(share-sheet): add icons (#4256)

This commit is contained in:
nemo-shen 2021-06-10 09:45:46 +08:00 committed by GitHub
parent f1b65e4350
commit f1a8b34962
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -11,10 +11,13 @@ Page({
}, },
options: [ options: [
{ name: '微信', icon: 'wechat', openType: 'share' }, { name: '微信', icon: 'wechat', openType: 'share' },
{ name: '朋友圈', icon: 'wechat-moments' },
{ name: 'QQ', icon: 'qq' },
{ name: '微博', icon: 'weibo' }, { name: '微博', icon: 'weibo' },
{ name: '复制链接', icon: 'link' }, { name: '复制链接', icon: 'link' },
{ name: '分享海报', icon: 'poster' }, { name: '分享海报', icon: 'poster' },
{ name: '二维码', icon: 'qrcode' }, { name: '二维码', icon: 'qrcode' },
{ name: '小程序码', icon: 'weapp-qrcode' },
], ],
multiLineOptions: [ multiLineOptions: [

View File

@ -176,7 +176,7 @@ Page({
| --- | --- | --- | | --- | --- | --- |
| name | 分享渠道名称 | _string_ | | name | 分享渠道名称 | _string_ |
| description | 分享选项描述 | _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_ | | openType | 按钮 `open-type`,可用于实现分享功能,可选值为 `share` | _string_ |
### Events ### Events

View File

@ -1,9 +1,9 @@
/* eslint-disable */ /* 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) { function getIconURL(icon) {
if (PRESET_ICONS.indexOf(icon) !== -1) { 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; return icon;