index.js 408 B

123456789101112131415161718192021222324252627
  1. var app = getApp();
  2. Component({
  3. properties: {
  4. sharePacket:{
  5. type:Object,
  6. value:{
  7. isState: true,
  8. priceName:'',
  9. }
  10. }
  11. },
  12. data: {
  13. },
  14. attached: function () {
  15. },
  16. methods: {
  17. closeShare:function(){
  18. this.setData({
  19. "sharePacket.isState": true
  20. })
  21. },
  22. goShare:function(){
  23. this.triggerEvent('listenerActionSheet');
  24. },
  25. }
  26. })