feat(share-sheet): set default z-index to 100 & add new item prop openType (#3575)

This commit is contained in:
rex 2020-08-30 14:24:33 +08:00 committed by GitHub
parent 9aaba79c73
commit 6f07fe68cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 36 additions and 17 deletions

View File

@ -10,7 +10,7 @@ Page({
customIcon: false, customIcon: false,
}, },
options: [ options: [
{ name: '微信', icon: 'wechat' }, { name: '微信', icon: 'wechat', openType: 'share' },
{ name: '微博', icon: 'weibo' }, { name: '微博', icon: 'weibo' },
{ name: '复制链接', icon: 'link' }, { name: '复制链接', icon: 'link' },
{ name: '分享海报', icon: 'poster' }, { name: '分享海报', icon: 'poster' },

View File

@ -5,30 +5,31 @@
}, },
"setting": { "setting": {
"urlCheck": false, "urlCheck": false,
"scopeDataCheck": false,
"coverView": true,
"es6": true, "es6": true,
"enhance": false,
"postcss": true, "postcss": true,
"compileHotReLoad": false,
"preloadBackgroundData": false, "preloadBackgroundData": false,
"minified": true, "minified": true,
"newFeature": true,
"coverView": true,
"nodeModules": true,
"autoAudits": false, "autoAudits": false,
"showShadowRootInWxmlPanel": true, "newFeature": true,
"scopeDataCheck": false,
"uglifyFileName": false, "uglifyFileName": false,
"uploadWithSourceMap": true,
"useIsolateContext": true,
"nodeModules": true,
"enhance": false,
"useCompilerModule": false,
"userConfirmedUseCompilerModuleSwitch": false,
"showShadowRootInWxmlPanel": true,
"checkInvalidKey": true, "checkInvalidKey": true,
"checkSiteMap": true, "checkSiteMap": true,
"uploadWithSourceMap": true,
"compileHotReLoad": false,
"babelSetting": { "babelSetting": {
"ignore": [], "ignore": [],
"disablePlugins": [], "disablePlugins": [],
"outputPath": "" "outputPath": ""
}, },
"useIsolateContext": true, "bundle": false
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false
}, },
"compileType": "miniprogram", "compileType": "miniprogram",
"cloudfunctionRoot": "functions/", "cloudfunctionRoot": "functions/",
@ -385,8 +386,8 @@
"scene": null "scene": null
}, },
{ {
"id": -1, "id": 51,
"name": "pages/share-sheet/index", "name": "share-sheet",
"pathName": "pages/share-sheet/index", "pathName": "pages/share-sheet/index",
"query": "", "query": "",
"scene": null "scene": null

View File

@ -36,7 +36,7 @@ Page({
data: { data: {
showShare: false, showShare: false,
options: [ options: [
{ name: '微信', icon: 'wechat' }, { name: '微信', icon: 'wechat', openType: 'share' },
{ name: '微博', icon: 'weibo' }, { name: '微博', icon: 'weibo' },
{ name: '复制链接', icon: 'link' }, { name: '复制链接', icon: 'link' },
{ name: '分享海报', icon: 'poster' }, { name: '分享海报', icon: 'poster' },
@ -177,6 +177,7 @@ Page({
| name | 分享渠道名称 | _string_ | | name | 分享渠道名称 | _string_ |
| description | 分享选项描述 | _string_ | | description | 分享选项描述 | _string_ |
| icon | 图标,可选值为 `wechat` `weibo` `qq` `link` `qrcode` `poster`,支持传入图片 URL | _string_ | | icon | 图标,可选值为 `wechat` `weibo` `qq` `link` `qrcode` `poster`,支持传入图片 URL | _string_ |
| openType | 按钮 `open-type`,可用于实现分享功能,可选值为 `share` | _string_ |
### Events ### Events

View File

@ -8,7 +8,10 @@ VantComponent({
// overlay custom style // overlay custom style
overlayStyle: Object, overlayStyle: Object,
// z-index // z-index
zIndex: [Number, String], zIndex: {
type: Number,
value: 100,
},
title: String, title: String,
cancelText: { cancelText: {
type: String, type: String,

View File

@ -30,6 +30,18 @@
} }
} }
&__button {
height: auto;
padding: 0;
line-height: inherit;
background-color: transparent;
border: 0;
&::after {
border: 0;
}
}
&__icon { &__icon {
width: @share-sheet-icon-size; width: @share-sheet-icon-size;
height: @share-sheet-icon-size; height: @share-sheet-icon-size;

View File

@ -9,7 +9,9 @@
data-index="{{ index }}" data-index="{{ index }}"
bindtap="onSelect" bindtap="onSelect"
> >
<image src="{{ computed.getIconURL(item.icon) }}" class="van-share-sheet__icon" /> <button class="van-share-sheet__button" open-type="{{ item.openType }}">
<image src="{{ computed.getIconURL(item.icon) }}" class="van-share-sheet__icon" />
</button>
<view wx:if="{{ item.name }}" class="van-share-sheet__name">{{ item.name }}</view> <view wx:if="{{ item.name }}" class="van-share-sheet__name">{{ item.name }}</view>
<view wx:if="{{ item.description }}" class="van-share-sheet__option-description"> <view wx:if="{{ item.description }}" class="van-share-sheet__option-description">
{{ item.description }} {{ item.description }}