index.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import wxParse from '../../wxParse/wxParse.js';
  2. import { getArticleDetails } from '../../api/api.js';
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. parameter: {
  10. 'navbar': '1',
  11. 'return': '1',
  12. 'title': '新闻详情',
  13. 'color': false
  14. },
  15. id:0,
  16. articleInfo:[],
  17. store_info:{},
  18. },
  19. /**
  20. * 生命周期函数--监听页面加载
  21. */
  22. onLoad: function (options) {
  23. if (options.hasOwnProperty('id')){
  24. this.setData({ id: options.id});
  25. }else{
  26. wx.navigateBack({delta: 1 });
  27. }
  28. },
  29. /**
  30. * 生命周期函数--监听页面初次渲染完成
  31. */
  32. onReady: function () {
  33. },
  34. /**
  35. * 生命周期函数--监听页面显示
  36. */
  37. onShow: function () {
  38. this.getArticleOne();
  39. },
  40. getArticleOne:function(){
  41. var that = this;
  42. getArticleDetails(that.data.id).then(res=>{
  43. that.setData({ 'parameter.title': res.data.title, articleInfo: res.data, store_info: res.data.store_info ? res.data.store_info : {} });
  44. //html转wxml
  45. wxParse.wxParse('content', 'html', res.data.content, that, 0);
  46. });
  47. },
  48. /**
  49. * 生命周期函数--监听页面隐藏
  50. */
  51. onHide: function () {
  52. },
  53. /**
  54. * 生命周期函数--监听页面卸载
  55. */
  56. onUnload: function () {
  57. },
  58. /**
  59. * 页面相关事件处理函数--监听用户下拉动作
  60. */
  61. onPullDownRefresh: function () {
  62. },
  63. /**
  64. * 页面上拉触底事件的处理函数
  65. */
  66. onReachBottom: function () {
  67. },
  68. /**
  69. * 用户点击右上角分享
  70. */
  71. onShareAppMessage: function () {
  72. return {
  73. title: this.data.parameter.title,
  74. path: '/pages/news_details/index?id=' + this.data.id,
  75. imageUrl: this.data.articleInfo.image_input.length ? this.data.articleInfo.image_input[0] : '',
  76. }
  77. }
  78. })