aboutUs.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // pages/aboutUs/aboutUs.js
  2. import { appGetConfigImg } from '../../api/index'
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. imgUrl: ''
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad(options) {
  14. },
  15. /**
  16. * 生命周期函数--监听页面初次渲染完成
  17. */
  18. getAppGetConfigImg() {
  19. const that = this
  20. wx.showNavigationBarLoading()
  21. // 类型 【1.关于我的 2.用户协议 3.我的 4.实体卡兑换说明 】
  22. appGetConfigImg({
  23. 'imgType': '1'
  24. }).then(configRes => {
  25. wx.hideNavigationBarLoading()
  26. that.setData({
  27. imgUrl: configRes.data[0].imgUrl
  28. })
  29. })
  30. },
  31. /**
  32. * 生命周期函数--监听页面显示
  33. */
  34. onShow() {
  35. this.getAppGetConfigImg()
  36. },
  37. /**
  38. * 生命周期函数--监听页面隐藏
  39. */
  40. onHide() {
  41. },
  42. /**
  43. * 生命周期函数--监听页面卸载
  44. */
  45. onUnload() {
  46. },
  47. /**
  48. * 页面相关事件处理函数--监听用户下拉动作
  49. */
  50. onPullDownRefresh() {
  51. },
  52. /**
  53. * 页面上拉触底事件的处理函数
  54. */
  55. onReachBottom() {
  56. },
  57. /**
  58. * 用户点击右上角分享
  59. */
  60. onShareAppMessage() {
  61. }
  62. })