rank.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // pages/rank/rank.js
  2. const $api = require('../../utils/api.js').API;
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. datas:{},
  9. date:'',
  10. match:[],
  11. index:0,
  12. match_id:''
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. // var y = new Date().getFullYear(), m = (new Date().getMonth() + 1), d = new Date().getDate();
  19. // m = m > 9 ? m : '0' + m;
  20. // d = d > 9 ? d : '0' + d;
  21. // this.setData({
  22. // date: y + '-' + m + '-' + d
  23. // })
  24. $api.getMatchList().then(res=>{
  25. let l = res.data.data.length - 1;
  26. this.setData({
  27. match:res.data.data,
  28. index: l,
  29. match_id: res.data.data[l].id
  30. })
  31. this.getDate()
  32. })
  33. },
  34. getDate(){
  35. $api.getDate({ match_id: this.data.match_id }).then(res => {
  36. this.setData({
  37. date: res.data.data
  38. })
  39. this.getData()
  40. })
  41. },
  42. getData() {
  43. wx.showNavigationBarLoading()
  44. if (!this.data.match_id){
  45. return
  46. }
  47. $api.getRank({ stock_date: this.data.date, match_id: this.data.match_id}).then(res => {
  48. wx.hideNavigationBarLoading()
  49. this.setData({
  50. datas:res.data.data,
  51. })
  52. })
  53. .catch(err=>{
  54. wx.hideNavigationBarLoading()
  55. })
  56. },
  57. bindChange(e) {
  58. let match=this.data.match;
  59. this.setData({
  60. index: e.detail.value,
  61. match_id: match[e.detail.value].id
  62. })
  63. this.getDate()
  64. },
  65. bindDateChange(e) {
  66. this.setData({
  67. date: e.detail.value
  68. })
  69. this.getData()
  70. },
  71. /**
  72. * 生命周期函数--监听页面初次渲染完成
  73. */
  74. onReady: function () {
  75. },
  76. /**
  77. * 生命周期函数--监听页面显示
  78. */
  79. onShow: function () {
  80. console.log('show')
  81. wx.hideNavigationBarLoading()
  82. if (!this.data.datas.groups){
  83. $api.getDate().then(res => {
  84. this.setData({
  85. date: res.data.data
  86. })
  87. this.getData()
  88. })
  89. }else{
  90. wx.showNavigationBarLoading()
  91. this.getData()
  92. }
  93. },
  94. /**
  95. * 生命周期函数--监听页面隐藏
  96. */
  97. onHide: function () {
  98. },
  99. /**
  100. * 生命周期函数--监听页面卸载
  101. */
  102. onUnload: function () {
  103. },
  104. /**
  105. * 页面相关事件处理函数--监听用户下拉动作
  106. */
  107. onPullDownRefresh: function () {
  108. },
  109. /**
  110. * 页面上拉触底事件的处理函数
  111. */
  112. onReachBottom: function () {
  113. },
  114. /**
  115. * 用户点击右上角分享
  116. */
  117. onShareAppMessage: function () {
  118. }
  119. })