mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(share-sheet): add icons (#4256)
This commit is contained in:
parent
f1b65e4350
commit
f1a8b34962
@ -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: [
|
||||||
|
@ -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
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user