小程序
小游戏
企业微信
微信支付
扫描小程序码分享
open-type="share" 在分享时候,不指定默认图片,则自动裁剪当前页面,但是 当前页面有一个弹出层<gui-popup>,点击分享按钮的时候关闭弹出层了,截图和预期不一致,还是带有灰色层,是为什么呢?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<view>
<view @click="open">
<text>分享</text>
</view>
<gui-popup ref="guipopupforshare" position="bottom">
<button open-type="share"></button>
</gui-popup>
export default {
data() {
return {
productsDetail:{},
}
},
onShareAppMessage(res) {
if (res.from === 'button') { // 来自页面内分享按钮
this.$refs.guipopupforshare.close();
title: this.productsDetail.title,
path: '/activities/pages/seckill/seckillDetails?id=' + this.productsDetail.id
methods: {
open(){
this.$refs.guipopupforshare.open();
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
<view>
<view @click="open">
<text>分享</text>
</view>
<gui-popup ref="guipopupforshare" position="bottom">
<button open-type="share"></button>
</gui-popup>
</view>
export default {
data() {
return {
productsDetail:{},
}
},
onShareAppMessage(res) {
if (res.from === 'button') { // 来自页面内分享按钮
this.$refs.guipopupforshare.close();
}
return {
title: this.productsDetail.title,
path: '/activities/pages/seckill/seckillDetails?id=' + this.productsDetail.id
}
},
methods: {
open(){
this.$refs.guipopupforshare.open();
},
}
}