info.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // pages/info/info.js
  2. const app = getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. hiddenModel:false,
  9. isShow:false,
  10. isExercise:0,
  11. statusBar: app.globalData.statusBar
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.setData(options)
  18. console.log(options)
  19. },
  20. /**
  21. * 生命周期函数--监听页面初次渲染完成
  22. */
  23. onReady: function () {
  24. },
  25. /**
  26. * 生命周期函数--监听页面显示
  27. */
  28. onShow: function () {
  29. },
  30. /**
  31. * 生命周期函数--监听页面隐藏
  32. */
  33. onHide: function () {
  34. },
  35. /**
  36. * 生命周期函数--监听页面卸载
  37. */
  38. onUnload: function () {
  39. },
  40. /**
  41. * 页面相关事件处理函数--监听用户下拉动作
  42. */
  43. onPullDownRefresh: function () {
  44. },
  45. /**
  46. * 页面上拉触底事件的处理函数
  47. */
  48. onReachBottom: function () {
  49. },
  50. /**
  51. * 用户点击右上角分享
  52. */
  53. onShareAppMessage: function () {
  54. },
  55. /**
  56. * 路由跳转
  57. */
  58. navigateCtl: app.navigateCtl,
  59. /**
  60. * 底部导航跳转
  61. */
  62. redirectCtl: app.redirectCtl,
  63. /**
  64. * 返回上一级页面
  65. */
  66. blockCtl: function () {
  67. this.redirectCtl({ url: 'me', method: {} }, true)
  68. },
  69. /**
  70. * 提示框隐藏
  71. */
  72. allShowModel: function () {
  73. this.setData({ hiddenModel: false })
  74. },
  75. getTest:function(){
  76. const {isExercise,ageGroup}=this.data;
  77. if(isExercise==0){
  78. this.setData({ hiddenModel: true })
  79. }else{
  80. this.redirectCtl({ url: 'tu_xing_tui_li', method: { level:1, ageGroup } }, true)
  81. }
  82. },
  83. /**
  84. * 去练习
  85. */
  86. exercise:function(){
  87. this.redirectCtl({ url: 'lian_xi', method: {} }, true)
  88. }
  89. })