| 123456789101112131415161718192021222324252627282930 |
- var app = getApp();
- Component({
- properties: {
- sharePacket: {
- type: Object,
- value: {
- isState: true,
- priceName: '',
- }
- }
- },
- data: {
- },
- attached: function () {},
- methods: {
- closeShare: function () {
- this.setData({
- "sharePacket.isState": true
- })
- },
- goShare: function () {
- this.triggerEvent('listenerActionSheet');
- },
- }
- })
|