record.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // pages/signFor/record.js
  2. const app=getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. content:[]
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. this.getData()
  15. },
  16. getData:function(){
  17. var that=this
  18. app.api.useApi(app.globalData.baseAppUrl + "api/admin/SignFor", {
  19. }, "get").then(function (res) {
  20. console.log(res);
  21. if (res.code != 200) {
  22. wx.showLoading({
  23. title: '数据获取失败',
  24. })
  25. setTimeout(function () {
  26. wx.hideLoading();
  27. }, 1000);
  28. } else {
  29. wx.hideLoading();
  30. that.setData({
  31. content:res.message.data
  32. })
  33. }
  34. }).catch(function (err) {
  35. console.log(222);
  36. })
  37. },
  38. /**
  39. * 生命周期函数--监听页面初次渲染完成
  40. */
  41. onReady: function () {
  42. },
  43. /**
  44. * 生命周期函数--监听页面显示
  45. */
  46. onShow: function () {
  47. },
  48. /**
  49. * 生命周期函数--监听页面隐藏
  50. */
  51. onHide: function () {
  52. },
  53. /**
  54. * 生命周期函数--监听页面卸载
  55. */
  56. onUnload: function () {
  57. },
  58. /**
  59. * 页面相关事件处理函数--监听用户下拉动作
  60. */
  61. onPullDownRefresh: function () {
  62. },
  63. /**
  64. * 页面上拉触底事件的处理函数
  65. */
  66. onReachBottom: function () {
  67. },
  68. /**
  69. * 用户点击右上角分享
  70. */
  71. onShareAppMessage: function () {
  72. }
  73. })