Volunteer_dynamic.js
510 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//index.js
const app = getApp();
Page({
data: {
navbar: ['活动资讯', '媒体报道','通知公告','志愿随笔'],
currentTab: 0,
list: [],
},
//切换bar
navbarTap: function (e) {
this.setData({
currentTab: e.currentTarget.dataset.idx
})
//全局变量
app.globalData.currentTab = e.currentTarget.dataset.idx;
},
onShow() {
this.setData({
currentTab: app.globalData.currentTab
})
},
onLoad: function () {
},
})