// miniprogram/sharecontent.js Component({ /** * 组件的属性列表 */ properties: { nowflag: { type: Boolean, value:false }, }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { sharetap:function(){ var that=this; that.triggerEvent("run", '') }, sharelogtap:function(){ var that=this; that.triggerEvent("sharealert", '') }, closesharetap:function(){ this.setData({ nowflag:false }) } } })