index.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // pages/search/index.js
  2. import utils from "../../utils/util";
  3. import {queryAllspace} from "../../requests/api";
  4. import Toast from '../../vant-weapp/dist/toast/toast';
  5. import $ from './../../utils/Tool'
  6. import router from './../../utils/router'
  7. const app = getApp();
  8. Page({
  9. data: {
  10. alllistContent:[],
  11. projectId:"",
  12. tenantId:"",
  13. userId:"",
  14. currtPage:0,
  15. allListnum:0,
  16. seachValue:'',
  17. imgShow:false,
  18. noSpace:false,
  19. },
  20. /**
  21. * 生命周期函数--监听页面加载
  22. */
  23. onLoad: function (options) {
  24. let projectId = $.store.get('projectId') ||$.storage.get('projectId');
  25. let tenantId = $.store.get('tenantId')||$.storage.get('tenantId');
  26. let userId = $.store.get('userId') || $.storage.get('userId');
  27. this.setData({
  28. currtPage:0,
  29. projectId:projectId,
  30. tenantId:tenantId,
  31. userId:userId,
  32. })
  33. this.getallList();
  34. },
  35. onShow(){
  36. this.getallList();
  37. // this.setData({currtPage:1});
  38. },
  39. getallList(value){
  40. this.setData({currtPage:this.data.currtPage + 1},async ()=>{
  41. let data={
  42. "criteria": {
  43. "userId":this.data.userId,
  44. "projectId": this.data.projectId,
  45. "tenantId": this.data.tenantId
  46. },
  47. page:this.data.currtPage,
  48. size:15,
  49. orders:[
  50. {
  51. column:"localName",
  52. asc:"true"
  53. }
  54. ]
  55. }
  56. if(this.data.seachValue){
  57. data.criteria.localName={$like: `%${this.data.seachValue}%`}
  58. }
  59. wx.showLoading({
  60. title:"加载中",
  61. mask:true
  62. })
  63. // $.loading();
  64. let res =await queryAllspace(data);
  65. // $.hideLoading();
  66. wx.hideLoading();
  67. this.setData({allListnum:res.count});
  68. if(res.count&&res.content){
  69. res.content.map(item=>{
  70. item.picInit=utils.picInit(item.roomFuncType);
  71. if(typeof item.isPassengerPass==="undefined"){
  72. item.isPassengerPassShow=false;
  73. }else{
  74. item.isPassengerPassShow=true;
  75. item.isPassengerPass=item.isPassengerPass?'有人':'无人'
  76. }
  77. })
  78. this.setData({alllistContent:this.data.alllistContent.concat(res.content)});
  79. }else{
  80. Toast('暂无更多')
  81. }
  82. })
  83. },
  84. // 搜索
  85. spaceSearch(e){
  86. this.setData({seachValue:e.detail,currtPage:0,alllistContent:[]},()=>{
  87. this.getallList(e.detail);
  88. });
  89. },
  90. listClick(e){
  91. let data = e.detail.cardDate;
  92. data.outLine&&(data.outLine="");
  93. router.push("adjust",data);
  94. },
  95. /**
  96. * 页面上拉触底事件的处理函数
  97. */
  98. onReachBottom: function () {
  99. if(this.data.allListnum!=this.data.alllistContent.length){
  100. // this.setData({currtPage:this.data.currtPage+1})
  101. this.getallList();
  102. }else{
  103. Toast('暂无更多')
  104. }
  105. },
  106. })