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.

61 lines
1.3 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
})
}
},
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
});
});
setTimeout(() => {
wx.hideToast();
}, 500)
},
})