public_details.js 724 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. var WxParse = require("../../wxParse/wxParse.js");
  2. var app = getApp()
  3. Page({
  4. data: {
  5. type: '',
  6. url: '',
  7. detail: ''
  8. },
  9. onLoad: function (options) {
  10. console.log(options)
  11. var that = this;
  12. wx.setNavigationBarTitle({
  13. title: '公告详情'
  14. })
  15. app.request("/an?id=" + options.id, '', "GET").then(res => {
  16. console.log(res)
  17. that.setData({detail:res.data})
  18. WxParse.wxParse("content", "html", res.data.body, that)
  19. })
  20. },
  21. onReady: function () {
  22. },
  23. onShow: function () {
  24. },
  25. onHide: function () {
  26. },
  27. onUnload: function () {
  28. },
  29. onPullDownRefresh: function () {
  30. },
  31. onReachBottom: function () {
  32. },
  33. onShareAppMessage: function () {
  34. }
  35. })