swiper.js 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. this.setData({
  13. type:options.type,
  14. url:options.url,
  15. detail: options.detail
  16. })
  17. console.log(options.url)
  18. wx.setNavigationBarTitle({
  19. title: options.name
  20. })
  21. if(options.type=='text'){
  22. app.request("/ad?id="+options.url, '', "GET").then(res => {
  23. console.log(res)
  24. WxParse.wxParse("content", "html", res.data.detail, that)
  25. }).catch(err => {
  26. console.log(err)
  27. })
  28. }
  29. },
  30. onReady: function () {
  31. },
  32. onShow: function () {
  33. },
  34. onHide: function () {
  35. },
  36. onUnload: function () {
  37. },
  38. onPullDownRefresh: function () {
  39. },
  40. onReachBottom: function () {
  41. },
  42. onShareAppMessage: function () {
  43. }
  44. })