You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
387 B
20 lines
387 B
5 months ago
|
var talksInfo = require('../../data/talkInfo.js');
|
||
|
Page({
|
||
|
|
||
|
|
||
|
onLoad: function (options) {
|
||
|
|
||
|
// this.data.posts_key = postsData.postList
|
||
|
this.setData({
|
||
|
posts_key: talksInfo.postList
|
||
|
})
|
||
|
|
||
|
},
|
||
|
jumpBtn: function (options) {
|
||
|
var postId = options.currentTarget.dataset.postid;
|
||
|
|
||
|
wx.navigateTo({
|
||
|
url: '/pages/talkingmore/talkingmore?id=' + postId
|
||
|
})
|
||
|
},
|
||
|
})
|