userAgreement.js 1.0 KB

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