| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // pages/learning/learning.js
- const app = getApp()
- var host = app.globalData.host;
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- act:0,
- arct:[],
- hot_arct:[],
- over_arct:[],
- conference:[],
- over:[],
- pre:[],
- keyword:'',
- array: ['时间正序', '时间倒序'],
- val: ['ctime', '-ctime'],
- index: 0,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.getData();
- },
- getData:function(){
- var that=this;
- var order_by = this.data.val[this.data.index]
- wx.showNavigationBarLoading()
- wx.request({
- url: host+'/api/recommend',
- success:function(res){
- wx.hideNavigationBarLoading()
- that.setData({
- arct: res.data.data.article,
- hot_arct: res.data.data.hot_act,
- pre_arct: res.data.data.pre_act,
- over_arct: res.data.data.over_act
- })
- }
- })
- //学术会议
- wx.request({
- url: host + '/api/conference/list',
- data:{
- order_by: order_by,
- keyword: this.data.keyword
- },
- success: function (res) {
- that.setData({
- conference: res.data.data.list
- })
- }
- })
- //活动预告
- wx.request({
- url: host + '/api/activity/list',
- data:{
- type:'pre',
- order_by: order_by,
- keyword: this.data.keyword
- },
- success: function (res) {
- if(!res.data){
- return
- }
- that.setData({
- pre: res.data.data.list
- })
- }
- })
- //活动回顾
- wx.request({
- url: host + '/api/activity/list',
- data: {
- type: 'over',
- order_by: order_by,
- keyword: this.data.keyword
- },
- success: function (res) {
- if (!res.data) {
- return
- }
- that.setData({
- over: res.data.data.list
- })
- }
- })
- },
- showmenu: function () {
- this.setData({
- show: !this.data.show
- })
- },
- check: function (e) {
- this.setData({
- show: 0,
- index: e.target.dataset.id
- })
- this.getData();
- },
- tab: function (e) {
- this.setData({
- act: e.target.dataset.id
- })
- },
- swchange: function (e) {
- this.setData({
- act: e.detail.current
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|