index.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // pages/contractTime/index.js
  2. const util = require('../../utils/util.js');
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. searchParams:{
  10. storeName:'',
  11. },
  12. storeList:[],
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. this.bindHotelList()
  19. },
  20. /**
  21. * 生命周期函数--监听页面初次渲染完成
  22. */
  23. onReady: function () {
  24. },
  25. /**
  26. * 生命周期函数--监听页面显示
  27. */
  28. onShow: function () {
  29. },
  30. /**
  31. * 生命周期函数--监听页面隐藏
  32. */
  33. onHide: function () {
  34. },
  35. /**
  36. * 生命周期函数--监听页面卸载
  37. */
  38. onUnload: function () {
  39. },
  40. /**
  41. * 页面相关事件处理函数--监听用户下拉动作
  42. */
  43. onPullDownRefresh: function () {
  44. },
  45. /**
  46. * 页面上拉触底事件的处理函数
  47. */
  48. onReachBottom: function () {
  49. },
  50. /**
  51. * 用户点击右上角分享
  52. */
  53. onShareAppMessage: function () {
  54. },
  55. bindHotelList(){
  56. var that = this
  57. util.request(util.api.storeInfo, that.data.searchParams, "GET", false, true,app.globalData.token).then((res)=>{
  58. if (res.code == 200) {
  59. that.setData({
  60. storeList: res.result,
  61. })
  62. }
  63. }).catch((res) => {})
  64. },
  65. searchHotel(){
  66. this.bindHotelList()
  67. },
  68. inputedit: function (e) {
  69. let _this = this;
  70. let dataset = e.currentTarget.dataset;
  71. let value = e.detail.value;
  72. let name = dataset.name;
  73. _this.data[name] = value;
  74. _this.setData({
  75. [name]: _this.data[name]
  76. });
  77. },
  78. })