index.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. const util = require('../../../utils/util.js');
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. id: '',
  8. content:''
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad(options) {
  14. console.log(options)
  15. this.setData({
  16. id: options.id
  17. })
  18. this.getData()
  19. },
  20. getData() {
  21. let that=this
  22. util.ajax({
  23. func: "article_type/detail",
  24. data: {
  25. "id": that.data.id,
  26. },
  27. }, function (res) {
  28. if (res.code == 0) {
  29. that.data.content = res.data.content ? res.data.content.replace(/section/g, "div") : '';
  30. that.data.content = that.data.content.replace(/<img/g, "<img style='max-width:100%'");
  31. that.setData({
  32. content:that.data.content
  33. })
  34. } else {
  35. util.showTips(res.reason);
  36. }
  37. })
  38. },
  39. /**
  40. * 生命周期函数--监听页面初次渲染完成
  41. */
  42. onReady() {
  43. },
  44. /**
  45. * 生命周期函数--监听页面显示
  46. */
  47. onShow() {
  48. },
  49. /**
  50. * 生命周期函数--监听页面隐藏
  51. */
  52. onHide() {
  53. },
  54. /**
  55. * 生命周期函数--监听页面卸载
  56. */
  57. onUnload() {
  58. },
  59. /**
  60. * 页面相关事件处理函数--监听用户下拉动作
  61. */
  62. onPullDownRefresh() {
  63. },
  64. /**
  65. * 页面上拉触底事件的处理函数
  66. */
  67. onReachBottom() {
  68. },
  69. /**
  70. * 用户点击右上角分享
  71. */
  72. onShareAppMessage() {
  73. }
  74. })