web-view-H5.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // public/pages/web-view-H5/web-view-H5.js
  2. var businessT = require('../../../tool/business-tool.js')
  3. var app = getApp()
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. url:''
  10. },
  11. test(e) {
  12. businessT.debugLog("加载成功")
  13. businessT.debugLog(e.detail)
  14. },
  15. test1(e) {
  16. businessT.debugLog("加载失败")
  17. businessT.debugLog(e.detail)
  18. },
  19. /**
  20. * 生命周期函数--监听页面加载
  21. */
  22. onLoad: function (options) {
  23. wx.showLoading({
  24. mask: true,
  25. title: '加载中...',
  26. });
  27. businessT.debugLog(options)
  28. if (options.par == 1001){
  29. this.setData({
  30. url: 'https://www.wodeshebao.com/calc/index.html?f=app'
  31. })
  32. }
  33. else{
  34. this.setData({
  35. url: options.url
  36. })
  37. }
  38. },
  39. /**
  40. * 生命周期函数--监听页面初次渲染完成
  41. */
  42. onReady: function () {
  43. wx.hideLoading()
  44. },
  45. /**
  46. * 生命周期函数--监听页面显示
  47. */
  48. onShow: function () {
  49. },
  50. /**
  51. * 生命周期函数--监听页面隐藏
  52. */
  53. onHide: function () {
  54. },
  55. /**
  56. * 生命周期函数--监听页面卸载
  57. */
  58. onUnload: function () {
  59. },
  60. /**
  61. * 页面相关事件处理函数--监听用户下拉动作
  62. */
  63. onPullDownRefresh: function () {
  64. },
  65. /**
  66. * 页面上拉触底事件的处理函数
  67. */
  68. onReachBottom: function () {
  69. },
  70. /**
  71. * 用户点击右上角分享
  72. */
  73. onShareAppMessage: function () {
  74. }
  75. })