userAgreement.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // pages/agreement/userAgreement.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. baseUrl: getApp().globalData.postHeadAgreement.substring(getApp().globalData.postHeadAgreement,getApp().globalData.postHeadAgreement.indexOf("/",8))
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad(options) {
  13. },
  14. /**
  15. * 生命周期函数--监听页面初次渲染完成
  16. */
  17. onReady() {
  18. },
  19. /**
  20. * 生命周期函数--监听页面显示
  21. */
  22. onShow() {
  23. console.info(this.data.baseUrl)
  24. // wx.downloadFile({
  25. // // 示例 url,并非真实存在
  26. // url: 'https://jqcs.pjnes.com/web/profile/avatar/派捷充电用户使用协议.docx',
  27. // success: function (res) {
  28. // const filePath = res.tempFilePath
  29. // wx.openDocument({
  30. // filePath: filePath,
  31. // success: function (res) {
  32. // console.log('打开文档成功')
  33. // }
  34. // })
  35. // }
  36. // })
  37. },
  38. /**
  39. * 生命周期函数--监听页面隐藏
  40. */
  41. onHide() {
  42. },
  43. /**
  44. * 生命周期函数--监听页面卸载
  45. */
  46. onUnload() {
  47. },
  48. /**
  49. * 页面相关事件处理函数--监听用户下拉动作
  50. */
  51. onPullDownRefresh() {
  52. },
  53. /**
  54. * 页面上拉触底事件的处理函数
  55. */
  56. onReachBottom() {
  57. },
  58. /**
  59. * 用户点击右上角分享
  60. */
  61. onShareAppMessage() {
  62. },
  63. htmlLoad(){
  64. }
  65. })