(event)
| 76 | |
| 77 | // ------------------- 事件监听函数 ------------------------- |
| 78 | handleTabClick(event) { |
| 79 | // 取出index |
| 80 | const index = event.detail.index; |
| 81 | |
| 82 | // 设置currentType |
| 83 | this.setData({ |
| 84 | currentType: types[index] |
| 85 | }) |
| 86 | }, |
| 87 | handleImageLoad() { |
| 88 | wx.createSelectorQuery().select('#tab-control').boundingClientRect(rect => { |
| 89 | this.data.tabScrollTop = rect.top |
nothing calls this directly
no outgoing calls
no test coverage detected