clocklist.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // pages/clocklist/clocklist.js
  2. const app = getApp()
  3. const host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad(options) {
  14. this.setData({
  15. openid: app.globalData.openid
  16. })
  17. // options.id='64596'
  18. wx.request({
  19. url: host+'/api/wx/clockin/list',
  20. method:'GET',
  21. header: {
  22. openid: this.data.openid
  23. },
  24. data:{
  25. order_id:options.id
  26. },
  27. success:res=>{
  28. this.setData({
  29. list:res.data.data
  30. })
  31. }
  32. })
  33. },
  34. preview(e){
  35. wx.previewImage({
  36. urls: [e.target.dataset.url],
  37. current:e.target.dataset.url
  38. })
  39. },
  40. /**
  41. * 生命周期函数--监听页面初次渲染完成
  42. */
  43. onReady() {
  44. },
  45. /**
  46. * 生命周期函数--监听页面显示
  47. */
  48. onShow() {
  49. },
  50. /**
  51. * 生命周期函数--监听页面隐藏
  52. */
  53. onHide() {
  54. },
  55. /**
  56. * 生命周期函数--监听页面卸载
  57. */
  58. onUnload() {
  59. },
  60. /**
  61. * 页面相关事件处理函数--监听用户下拉动作
  62. */
  63. onPullDownRefresh() {
  64. },
  65. /**
  66. * 页面上拉触底事件的处理函数
  67. */
  68. onReachBottom() {
  69. },
  70. /**
  71. * 用户点击右上角分享
  72. */
  73. onShareAppMessage() {
  74. }
  75. })