提交 68755989 编写于 作者: DCloud_JSON's avatar DCloud_JSON

修复H5端在about页面,返回触发引发报错

上级 e3b191a1
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
"text": this.$t('common').wechatBbs, "text": this.$t('common').wechatBbs,
"share": { "share": {
"provider": "weixin", "provider": "weixin",
"scene": "WXSenceTimeline" "scene": "WXSceneTimeline"
} }
}, },
{ {
......
...@@ -310,7 +310,7 @@ ...@@ -310,7 +310,7 @@
"text": this.$t('common').wechatBbs, "text": this.$t('common').wechatBbs,
"share": { "share": {
"provider": "weixin", "provider": "weixin",
"scene": "WXSenceTimeline" "scene": "WXSceneTimeline"
} }
}, },
{ {
......
{
"goEasy": {
"commonKey": "BC-01f554db12604b46ae8373907e28794d",
"clientKey": "PC-bfb6b6517e7f4c4f8b9285911fd3be27",
"subscribeKey": "BS-ac71890d8612459bb4b22429cf406be3",
"restKey": "PR-77f4630e731e4b5f8078aea77268cba4",
"secretKey": "4bfeca3985504b3d",
"restHost":"rest-hangzhou.goeasy.io"
}
}
## 2.0.2(2021-12-16)
修复在某些情况下报:`Cannot read property 'hide' of undefined`的问题
## 2.0.1(2021-11-29)
修改错误的scene值WXSenceTimeline(分享到朋友圈)更正为WXSceneTimeline
## 2.0.0(2021-10-14) ## 2.0.0(2021-10-14)
支持监听返回操作(如:物理返回,全面屏手机侧滑)关闭分享弹窗 支持监听返回操作(如:物理返回,全面屏手机侧滑)关闭分享弹窗
## 1.0.6(2021-08-25) ## 1.0.6(2021-08-25)
......
...@@ -194,10 +194,11 @@ class NvImageMenu { ...@@ -194,10 +194,11 @@ class NvImageMenu {
} }
hide() { hide() {
if (this.isShow) {
nvMask.hide() nvMask.hide()
nvImageMenu.hide() nvImageMenu.hide()
this.isShow = false this.isShow = false
} }
}
} }
export default NvImageMenu export default NvImageMenu
\ No newline at end of file
{ {
"id": "uni-share", "id": "uni-share",
"displayName": "uni-share", "displayName": "uni-share",
"version": "2.0.0", "version": "2.0.2",
"description": "底部弹出宫格图标式的分享菜单,可覆盖原生组件。", "description": "底部弹出宫格图标式的分享菜单,可覆盖原生组件。",
"keywords": [ "keywords": [
"分享菜单" "分享菜单"
......
...@@ -7,6 +7,15 @@ ...@@ -7,6 +7,15 @@
<script> <script>
import uniShare from '@/uni_modules/uni-share/js_sdk/uni-share.js'; import uniShare from '@/uni_modules/uni-share/js_sdk/uni-share.js';
export default { export default {
onBackPress({from}) {
console.log(from);
if(from=='backbutton'){
this.$nextTick(function(){
uniShare.hide()
})
return uniShare.isShow;
}
},
methods: { methods: {
uniShare() { uniShare() {
uniShare.show({ uniShare.show({
...@@ -30,7 +39,7 @@ ...@@ -30,7 +39,7 @@
"text": "微信朋友圈", "text": "微信朋友圈",
"share": { "share": {
"provider": "weixin", "provider": "weixin",
"scene": "WXSenceTimeline" "scene": "WXSceneTimeline"
} }
}, },
{ {
...@@ -75,6 +84,7 @@ ...@@ -75,6 +84,7 @@
], ],
cancelText: "取消分享", cancelText: "取消分享",
}, e => { //callback }, e => { //callback
console.log(uniShare.isShow);
console.log(e); console.log(e);
}) })
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册