113 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
// pages/lianxi/index.js
 | 
						|
const api = require("../../utils/request.js");
 | 
						|
var util = require('../../utils/util.js')
 | 
						|
Page({
 | 
						|
 | 
						|
  /**
 | 
						|
   * 页面的初始数据
 | 
						|
   */
 | 
						|
  data: {
 | 
						|
    results: [],
 | 
						|
    query:{
 | 
						|
      page:1,
 | 
						|
      limit:10
 | 
						|
    }
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 生命周期函数--监听页面加载
 | 
						|
   */
 | 
						|
  onLoad: function (options) {
 | 
						|
    var that = this
 | 
						|
    if(options.type=1){
 | 
						|
      that.data.query.type='正式考试'
 | 
						|
      that.data.query.workscope=getApp().globalData.userinfo.workscope
 | 
						|
    }
 | 
						|
    that.getList(that.data.query)
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 生命周期函数--监听页面初次渲染完成
 | 
						|
   */
 | 
						|
  onReady: function () {
 | 
						|
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 生命周期函数--监听页面显示
 | 
						|
   */
 | 
						|
  onShow: function () {
 | 
						|
  },
 | 
						|
  getList: function () {
 | 
						|
    var that = this
 | 
						|
    api.request('/examtest/examtest/self/', 'GET', that.data.query).then(res => {
 | 
						|
      for(var i=0;i<res.data.results.length;i++){
 | 
						|
        res.data.results[i].took = util.formatSecond(res.data.results[i].took)
 | 
						|
      }
 | 
						|
      if (that.data.query.page == 1) {
 | 
						|
        that.data.results = res.data.results
 | 
						|
      } else {
 | 
						|
        that.data.results = that.data.results.concat(res.data.results)
 | 
						|
      }
 | 
						|
 | 
						|
      that.setData({
 | 
						|
        results: that.data.results,
 | 
						|
        count: res.data.count
 | 
						|
      })
 | 
						|
 | 
						|
    })
 | 
						|
  },
 | 
						|
  /**
 | 
						|
   * 生命周期函数--监听页面隐藏
 | 
						|
   */
 | 
						|
  onHide: function () {
 | 
						|
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 生命周期函数--监听页面卸载
 | 
						|
   */
 | 
						|
  onUnload: function () {
 | 
						|
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 页面相关事件处理函数--监听用户下拉动作
 | 
						|
   */
 | 
						|
  onPullDownRefresh: function () {
 | 
						|
    var that = this
 | 
						|
    that.data.query.page = 1;
 | 
						|
    that.getList();
 | 
						|
    wx.stopPullDownRefresh();
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 页面上拉触底事件的处理函数
 | 
						|
   */
 | 
						|
  onReachBottom: function () {
 | 
						|
    var that=this
 | 
						|
    if(that.data.count<=that.data.query.page*that.data.query.limit){
 | 
						|
      wx.showToast({
 | 
						|
        title: '没有更多了',
 | 
						|
        icon: 'none'
 | 
						|
      })
 | 
						|
    }else{
 | 
						|
      that.data.query.page = that.data.query.page + 1
 | 
						|
      that.getList()
 | 
						|
    }
 | 
						|
    
 | 
						|
  },
 | 
						|
 | 
						|
  /**
 | 
						|
   * 用户点击右上角分享
 | 
						|
   */
 | 
						|
  onShareAppMessage: function () {
 | 
						|
 | 
						|
  },
 | 
						|
 | 
						|
  detail: function (e) {
 | 
						|
    wx.navigateTo({
 | 
						|
      url: '',
 | 
						|
    })
 | 
						|
  },
 | 
						|
}) |