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. $api.getDate({ match_id: this.data.match_id}).then(res => {
  32. this.setData({
  33. date: res.data.data
  34. })
  35. this.getData()
  36. })
  37. })
  38. },
  39. getData() {
  40. wx.showNavigationBarLoading()
  41. if (!this.data.match_id){
  42. return
  43. }
  44. $api.getRank({ stock_date: this.data.date, match_id: this.data.match_id}).then(res => {
  45. wx.hideNavigationBarLoading()
  46. this.setData({
  47. datas:res.data.data,
  48. })
  49. })
  50. .catch(err=>{
  51. wx.hideNavigationBarLoading()
  52. })
  53. },
  54. bindChange(e) {
  55. let match=this.data.match;
  56. this.setData({
  57. index: e.detail.value,
  58. match_id: match[e.detail.value].id
  59. })
  60. this.getData()
  61. },
  62. bindDateChange(e) {
  63. this.setData({
  64. date: e.detail.value
  65. })
  66. this.getData()
  67. },
  68. /**
  69. * 生命周期函数--监听页面初次渲染完成
  70. */
  71. onReady: function () {
  72. },
  73. /**
  74. * 生命周期函数--监听页面显示
  75. */
  76. onShow: function () {
  77. $api.getMyStyle().then(res => {
  78. if (!res.data.data.init_fund) {
  79. wx.navigateTo({
  80. url: '../style/style',
  81. })
  82. }
  83. })
  84. wx.hideNavigationBarLoading()
  85. if (!this.data.datas.groups){
  86. $api.getDate().then(res => {
  87. this.setData({
  88. date: res.data.data
  89. })
  90. this.getData()
  91. })
  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. })