// pages/garden/components/growth.js Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { visible:false }, /** * 组件的方法列表 */ methods: { change(){ const tmp = !this.data.visible console.log(tmp); this.setData({visible:tmp}) } } })