share.js 482 B

1234567891011121314151617181920212223242526272829303132
  1. // pages/my/share/share.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. show:false,
  8. type:1
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. },
  15. closeShow(){
  16. this.setData({
  17. type:1,
  18. show:!this.data.show,
  19. })
  20. },
  21. changeType(e){
  22. let {type}= e.currentTarget.dataset
  23. this.setData({
  24. type
  25. })
  26. }
  27. })