Volunteer_dynamic.js
1.4 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const app = getApp();
Page({
data: {
navbar: [],
currentTab: 1,
list: [],
},
//切换navbar
navbarTap: function (e) {
console.log(e)
this.setData({
currentTab: e.currentTarget.dataset.id
})
//全局变量
// app.globalData.currentTab = e.currentTarget.dataset.id;
this.getactive();
},
onShow() {
// this.setData({
// currentTab: app.globalData.currentTab
// })
let that = this;
that.getNewsType()
that.getactive();
},
onLoad: function () {
},
// 志愿动态栏目类型
getNewsType() {
let that = this;
let url = '/index/second/getNewsType';
let head = {
'XX-Token': wx.getStorageSync('token')
}
app.post(url, head).then((res) => {
console.log(res)
that.setData({
navbar: res,
})
}).catch((err) => {
})
},
// 列表
getactive() {
let that = this;
let url = '/index/second/getNewsList';
let head = {
'XX-Token': wx.getStorageSync('token')
}
let params = {
type_id: that.data.currentTab
}
console.log(params)
app.post(url, params, head).then((res) => {
// console.log(res)
that.setData({
list: res
})
}).catch((err) => {
})
},
// 列表详情
getNewsInfo(e) {
var id = e.currentTarget.dataset.id
wx.navigateTo({
url: '/pages/getNewsInfo/getNewsInfo?id=' + id,
})
}
})