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.
116 lines
2.0 KiB
116 lines
2.0 KiB
// pages/index/total/tatal.js
|
|
const app = getApp();
|
|
Page({
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {},
|
|
derail(e) {
|
|
let id = e.currentTarget.id
|
|
let token = wx.getStorageSync('token') || ''
|
|
if (!token) {
|
|
wx.navigateTo({
|
|
url: '/pages/mine/pages/bindUser/index'
|
|
})
|
|
}else{
|
|
wx.navigateTo({
|
|
url: '/subPackages/pages/detail/index?id=' + id
|
|
})
|
|
}
|
|
|
|
console.log('000', token)
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad(options) {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
*/
|
|
onReady() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow() {
|
|
this.setData({
|
|
sQuDao: wx.getStorageSync('sQuDao') || '',
|
|
})
|
|
this.getData()
|
|
},
|
|
getData() {
|
|
wx.showToast({
|
|
title: '加载中',
|
|
icon: 'loading',
|
|
duration: 300000
|
|
})
|
|
// let key = ele.key
|
|
app.globalData.request({
|
|
action: 'getHomeList0528',
|
|
sType: 'Home',
|
|
sTimeType: "34",
|
|
// sStartTime:sStartTime,
|
|
// sEndTime:sEndTime,
|
|
sQuDao: wx.getStorageSync('sQuDao') || ""
|
|
}).then(res => {
|
|
const _source = []
|
|
res.forEach(ele => {
|
|
let obj = {
|
|
sourcetime: ele._source.sourcetime,
|
|
title: ele._source.title,
|
|
user_author: ele._source.user_author,
|
|
source: ele._source.source,
|
|
id: ele._id
|
|
}
|
|
_source.push(obj)
|
|
})
|
|
this.setData({
|
|
content: _source
|
|
});
|
|
console.log('9999', )
|
|
// console.log('9999',arr)
|
|
});
|
|
setTimeout(() => {
|
|
wx.hideToast();
|
|
}, 500)
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面隐藏
|
|
*/
|
|
onHide() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面卸载
|
|
*/
|
|
onUnload() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 用户点击右上角分享
|
|
*/
|
|
onShareAppMessage() {
|
|
|
|
}
|
|
}) |