12345678910111213141516171819202122232425262728293031323334353637 |
- // compontents/share/share.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- },
- /**
- * 组件的初始数据
- */
- data: {
- flag: true,
- postId: '',
- },
- /**
- * 组件的方法列表
- */
- methods: {
- //隐藏分享框
- hidePopup: function () {
- this.setData({
- flag: !this.data.flag
- })
- },
- //展示分享框
- showPopup (postId) {
- this.setData({
- flag: !this.data.flag,
- postId
- })
- },
- }
- })
|