123456789101112131415161718192021222324252627282930313233343536373839 |
- // 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
- })
- }
- }
-
- })
|