// pages/setting/notification.js Component({ options: { addGlobalClass: true, multipleSlots: true }, data: { show: false, message: '自由灵活的api, 超详细的注释, 可让您快速自定义真正属于自己的下拉上拉组件' }, methods: { attention: function(message){ if(message){ this.setData({ show: true, message }) } else { this.setData({ show: true }) } }, onConfirm: function(){ wx.navigateTo({ url: '/pages/ztbvip/member/index' }) }, onClose: function(){ this.setData({ show: false }) } } })