filesbox/miniprogram/FilesBox/miniprogram_npm/@vant/weapp/share-sheet/options.wxs

15 lines
341 B
Plaintext
Raw Normal View History

2023-09-21 02:23:31 +00:00
/* eslint-disable */
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-sheet-' + icon + '.png';
}
return icon;
}
module.exports = {
getIconURL: getIconURL,
};