| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- currentTab: 0,
- probType: ''
- },
- stopTouchMove: function () {
- return false;
- },
- switch1: function (e) {
- this.setData({
- currentTab: 1
- })
- },
- switch2: function (e) {
- this.setData({
- currentTab: 2
- })
- },
- handleTap: function (e) {
- this.setData({
- currentTab: 0,
- probType: e.currentTarget.dataset.type
- })
- },
- handleTap: function (e) {
- this.setData({
- currentTab: 0,
- probType: e.currentTarget.dataset.type
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (e) {
- },
- updatePage: function (e) {
- this.setData({
- currentTab: e.detail.current
- })
- }
- })
|