list.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. const util = require("../../../utils/util");
  2. const api = require('../../../api/api.js');
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. list: [],
  9. page: 1,
  10. limit: 10,
  11. totalPages: 1,
  12. filter:''
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. },
  19. makeCall(e){
  20. let mobile = e.currentTarget.dataset.mobile;
  21. wx.makePhoneCall({
  22. phoneNumber: mobile,
  23. })
  24. },
  25. getList(){
  26. let that = this;
  27. util.request(api.ServantOpenBill, {
  28. page: that.data.page,
  29. limit: that.data.limit
  30. }).then(function(res) {
  31. console.log(res);
  32. if (res.errno === 0) {
  33. that.setData({
  34. list: that.data.list.concat(res.data.list),
  35. totalPages: res.data.pages
  36. });
  37. }
  38. });
  39. },
  40. /**
  41. * 生命周期函数--监听页面初次渲染完成
  42. */
  43. onReady: function () {
  44. },
  45. /**
  46. * 生命周期函数--监听页面显示
  47. */
  48. onShow: function () {
  49. this.setData({
  50. list:[]
  51. })
  52. this.getList();
  53. },
  54. /**
  55. * 生命周期函数--监听页面隐藏
  56. */
  57. onHide: function () {
  58. },
  59. /**
  60. * 生命周期函数--监听页面卸载
  61. */
  62. onUnload: function () {
  63. },
  64. /**
  65. * 页面相关事件处理函数--监听用户下拉动作
  66. */
  67. onPullDownRefresh: function () {
  68. },
  69. /**
  70. * 页面上拉触底事件的处理函数
  71. */
  72. onReachBottom: function () {
  73. if (this.data.totalPages > this.data.page) {
  74. this.setData({
  75. page: this.data.page + 1
  76. });
  77. this.getList();
  78. } else {
  79. wx.showToast({
  80. title: '没有更多开单记录了',
  81. icon: 'none',
  82. duration: 2000
  83. });
  84. return false;
  85. }
  86. },
  87. /**
  88. * 用户点击右上角分享
  89. */
  90. onShareAppMessage: function () {
  91. }
  92. })