winloseRank.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // pages/winlost/winlost.js
  2. const app = getApp()
  3. const $api = require('../../utils/api.js').API;
  4. const $push = require('../../utils/api.js').PUSH;
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad(options) {
  15. var user_id=options.user_id,match_id=options.match_id
  16. $api.getWinlossRank({user_id:user_id,rank_type:'win',match_id:match_id}).then(res=>{
  17. this.setData({
  18. win:res.data.data
  19. })
  20. })
  21. $api.getWinlossRank({user_id:1888,rank_type:'loss',match_id:20}).then(res=>{
  22. this.setData({
  23. loss:res.data.data
  24. })
  25. })
  26. },
  27. /**
  28. * 生命周期函数--监听页面初次渲染完成
  29. */
  30. onReady() {
  31. },
  32. /**
  33. * 生命周期函数--监听页面显示
  34. */
  35. onShow() {
  36. },
  37. /**
  38. * 生命周期函数--监听页面隐藏
  39. */
  40. onHide() {
  41. },
  42. /**
  43. * 生命周期函数--监听页面卸载
  44. */
  45. onUnload() {
  46. },
  47. /**
  48. * 页面相关事件处理函数--监听用户下拉动作
  49. */
  50. onPullDownRefresh() {
  51. },
  52. /**
  53. * 页面上拉触底事件的处理函数
  54. */
  55. onReachBottom() {
  56. },
  57. /**
  58. * 用户点击右上角分享
  59. */
  60. onShareAppMessage() {
  61. }
  62. })