intro.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // pages/intro/intro.js
  2. const app = getApp()
  3. const host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. datas:{
  10. imgs:[]
  11. },
  12. type:1
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. wx.getStorage({
  19. key: 'userInfo',
  20. success: res => {
  21. if (res.data) {
  22. this.setData({
  23. userInfo: res.data
  24. })
  25. wx.request({
  26. url: host + '/api/wx/article?id=' + options.id,
  27. method: 'GET',
  28. header: {
  29. 'Authorization': this.data.userInfo.token
  30. },
  31. success: res => {
  32. wx.setNavigationBarTitle({
  33. title: res.data.data.name,
  34. })
  35. this.setData({
  36. data: res.data.data
  37. })
  38. this.init()
  39. }
  40. })
  41. } else {
  42. wx.switchTab({
  43. url: '../user/user',
  44. })
  45. }
  46. },
  47. fail: error => {
  48. wx.switchTab({
  49. url: '../user/user',
  50. })
  51. }
  52. })
  53. },
  54. init:function(){
  55. const query = wx.createSelectorQuery()
  56. const that=this
  57. query.select('#editor').context(function (res) {
  58. res.context.setContents({
  59. html: that.data.data.content
  60. })
  61. })
  62. .exec()
  63. },
  64. openMap:function(){
  65. var lon = parseFloat(this.data.data.point.split(',')[0]),
  66. lat = parseFloat(this.data.data.point.split(',')[1]);
  67. wx.openLocation({//​使用微信内置地图查看位置。
  68. latitude: lat,//要去的纬度-地址
  69. longitude: lon,
  70. 'name': '巴中逸沣安全培训'
  71. })
  72. },
  73. phone:function(){
  74. wx.makePhoneCall({
  75. phoneNumber: this.data.data.phone //仅为示例,并非真实的电话号码
  76. })
  77. },
  78. /**
  79. * 生命周期函数--监听页面初次渲染完成
  80. */
  81. onReady: function () {
  82. },
  83. /**
  84. * 生命周期函数--监听页面显示
  85. */
  86. onShow: function () {
  87. },
  88. /**
  89. * 生命周期函数--监听页面隐藏
  90. */
  91. onHide: function () {
  92. },
  93. /**
  94. * 生命周期函数--监听页面卸载
  95. */
  96. onUnload: function () {
  97. },
  98. /**
  99. * 页面相关事件处理函数--监听用户下拉动作
  100. */
  101. onPullDownRefresh: function () {
  102. },
  103. /**
  104. * 页面上拉触底事件的处理函数
  105. */
  106. onReachBottom: function () {
  107. },
  108. /**
  109. * 用户点击右上角分享
  110. */
  111. onShareAppMessage: function () {
  112. }
  113. })