diff --git a/example/pages/share-sheet/index.js b/example/pages/share-sheet/index.js index e3feb42d..bd08d460 100644 --- a/example/pages/share-sheet/index.js +++ b/example/pages/share-sheet/index.js @@ -10,7 +10,7 @@ Page({ customIcon: false, }, options: [ - { name: '微信', icon: 'wechat' }, + { name: '微信', icon: 'wechat', openType: 'share' }, { name: '微博', icon: 'weibo' }, { name: '复制链接', icon: 'link' }, { name: '分享海报', icon: 'poster' }, diff --git a/example/project.config.json b/example/project.config.json index 6e676f68..b59da5cd 100644 --- a/example/project.config.json +++ b/example/project.config.json @@ -5,30 +5,31 @@ }, "setting": { "urlCheck": false, + "scopeDataCheck": false, + "coverView": true, "es6": true, - "enhance": false, "postcss": true, + "compileHotReLoad": false, "preloadBackgroundData": false, "minified": true, - "newFeature": true, - "coverView": true, - "nodeModules": true, "autoAudits": false, - "showShadowRootInWxmlPanel": true, - "scopeDataCheck": false, + "newFeature": true, "uglifyFileName": false, + "uploadWithSourceMap": true, + "useIsolateContext": true, + "nodeModules": true, + "enhance": false, + "useCompilerModule": false, + "userConfirmedUseCompilerModuleSwitch": false, + "showShadowRootInWxmlPanel": true, "checkInvalidKey": true, "checkSiteMap": true, - "uploadWithSourceMap": true, - "compileHotReLoad": false, "babelSetting": { "ignore": [], "disablePlugins": [], "outputPath": "" }, - "useIsolateContext": true, - "useCompilerModule": true, - "userConfirmedUseCompilerModuleSwitch": false + "bundle": false }, "compileType": "miniprogram", "cloudfunctionRoot": "functions/", @@ -385,8 +386,8 @@ "scene": null }, { - "id": -1, - "name": "pages/share-sheet/index", + "id": 51, + "name": "share-sheet", "pathName": "pages/share-sheet/index", "query": "", "scene": null diff --git a/packages/share-sheet/README.md b/packages/share-sheet/README.md index fc1a1e81..403b557e 100644 --- a/packages/share-sheet/README.md +++ b/packages/share-sheet/README.md @@ -36,7 +36,7 @@ Page({ data: { showShare: false, options: [ - { name: '微信', icon: 'wechat' }, + { name: '微信', icon: 'wechat', openType: 'share' }, { name: '微博', icon: 'weibo' }, { name: '复制链接', icon: 'link' }, { name: '分享海报', icon: 'poster' }, @@ -177,6 +177,7 @@ Page({ | name | 分享渠道名称 | _string_ | | description | 分享选项描述 | _string_ | | icon | 图标,可选值为 `wechat` `weibo` `qq` `link` `qrcode` `poster`,支持传入图片 URL | _string_ | +| openType | 按钮 `open-type`,可用于实现分享功能,可选值为 `share` | _string_ | ### Events diff --git a/packages/share-sheet/index.ts b/packages/share-sheet/index.ts index e1211f61..5315c029 100644 --- a/packages/share-sheet/index.ts +++ b/packages/share-sheet/index.ts @@ -8,7 +8,10 @@ VantComponent({ // overlay custom style overlayStyle: Object, // z-index - zIndex: [Number, String], + zIndex: { + type: Number, + value: 100, + }, title: String, cancelText: { type: String, diff --git a/packages/share-sheet/options.less b/packages/share-sheet/options.less index ee4ff899..82cadd06 100644 --- a/packages/share-sheet/options.less +++ b/packages/share-sheet/options.less @@ -30,6 +30,18 @@ } } + &__button { + height: auto; + padding: 0; + line-height: inherit; + background-color: transparent; + border: 0; + + &::after { + border: 0; + } + } + &__icon { width: @share-sheet-icon-size; height: @share-sheet-icon-size; diff --git a/packages/share-sheet/options.wxml b/packages/share-sheet/options.wxml index cb38c7ec..cad68377 100644 --- a/packages/share-sheet/options.wxml +++ b/packages/share-sheet/options.wxml @@ -9,7 +9,9 @@ data-index="{{ index }}" bindtap="onSelect" > - + {{ item.name }} {{ item.description }}