index.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // pages/wx_airport/Reported_list/index.js
  2. var {
  3. getProblemReportList
  4. } = require('../../../utils/api/xiaosha');
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. list: []
  11. },
  12. // 详情
  13. goDetails(e) {
  14. wx.navigateTo({
  15. url: '/pages/wx_airport/Reported_list/details/index?id=' + e.currentTarget.dataset.item.id,
  16. })
  17. },
  18. // 获取上报记录列表
  19. getProblemReportList() {
  20. let userInfo = wx.getStorageSync('userInfo')
  21. let from = {
  22. adminId: userInfo.orgId ? userInfo.orgId : null,
  23. userId: userInfo.userId ? userInfo.userId : null,
  24. }
  25. getProblemReportList(from).then(res => {
  26. this.setData({
  27. list: res.data
  28. })
  29. })
  30. },
  31. /**
  32. * 生命周期函数--监听页面加载
  33. */
  34. onLoad(options) {
  35. },
  36. /**
  37. * 生命周期函数--监听页面初次渲染完成
  38. */
  39. onReady() {
  40. },
  41. /**
  42. * 生命周期函数--监听页面显示
  43. */
  44. onShow() {
  45. this.getProblemReportList()
  46. },
  47. /**
  48. * 生命周期函数--监听页面隐藏
  49. */
  50. onHide() {
  51. },
  52. /**
  53. * 生命周期函数--监听页面卸载
  54. */
  55. onUnload() {
  56. },
  57. /**
  58. * 页面相关事件处理函数--监听用户下拉动作
  59. */
  60. onPullDownRefresh() {
  61. },
  62. /**
  63. * 页面上拉触底事件的处理函数
  64. */
  65. onReachBottom() {
  66. },
  67. /**
  68. * 用户点击右上角分享
  69. */
  70. onShareAppMessage() {
  71. }
  72. })