apply.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // pages/apply/apply.js
  2. const app = getApp()
  3. const $api = require('../../utils/api.js').API;
  4. import md5 from '../../utils/md5.js';//支付页面引入md5.js
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. type:2,
  11. info:{},
  12. signdone:{},
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. this.setData({
  19. type:options.type
  20. })
  21. this.getInfo()
  22. },
  23. tab(e){
  24. this.setData({
  25. page:e.target.dataset.id
  26. })
  27. },
  28. post(){
  29. if($api.checkUser()){
  30. wx.navigateTo({
  31. url: '../signup/signup?type='+this.data.type,
  32. })
  33. }
  34. },
  35. getInfo(){
  36. $api.getsignupweb().then(res=>{
  37. this.setData({
  38. info:res.data.data
  39. })
  40. })
  41. },
  42. getSigndone(){
  43. $api.getsignup().then(res=>{
  44. this.setData({
  45. signdone:res.data.data
  46. })
  47. })
  48. },
  49. /**
  50. * 生命周期函数--监听页面初次渲染完成
  51. */
  52. onReady: function () {
  53. },
  54. /**
  55. * 生命周期函数--监听页面显示
  56. */
  57. onShow: function () {
  58. this.getSigndone()
  59. },
  60. /**
  61. * 生命周期函数--监听页面隐藏
  62. */
  63. onHide: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面卸载
  67. */
  68. onUnload: function () {
  69. },
  70. /**
  71. * 页面相关事件处理函数--监听用户下拉动作
  72. */
  73. onPullDownRefresh: function () {
  74. },
  75. /**
  76. * 页面上拉触底事件的处理函数
  77. */
  78. onReachBottom: function () {
  79. },
  80. /**
  81. * 用户点击右上角分享
  82. */
  83. onShareAppMessage: function () {
  84. }
  85. })