detail.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. // pages/home/detail/detail.js
  2. const app = getApp()
  3. const url = require('../../../utils/url.js')
  4. var call = require("../../../utils/net.js")
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. id: null,//内容详情的ID
  11. title:'',
  12. detail:''
  13. },
  14. //跳转纠错
  15. tocorrection:function(){
  16. let id = this.data.id
  17. wx.navigateTo({
  18. url: '/pages/home/correction/correction?id='+id,
  19. })
  20. },
  21. //返回首页
  22. backhome:function(){
  23. wx.switchTab({
  24. url: '/pages/home/index',
  25. })
  26. },
  27. /**
  28. * 生命周期函数--监听页面加载
  29. */
  30. onLoad: function (options) {
  31. var that = this;
  32. wx.setNavigationBarTitle({
  33. title: '详情'
  34. })
  35. //请求城市的政务标题列表
  36. call.request(url.host + url.getContent,
  37. { id: options.id },
  38. res => {
  39. //console.log(res)
  40. if(res.data.data.length != 0 ){
  41. that.setData({
  42. id: options.id,
  43. title: options.title,
  44. detail: res.data.data
  45. })
  46. }else{
  47. wx.showModal({
  48. title: '提示',
  49. content: '小微正在马不停蹄补充这项内容,敬请期待!',
  50. showCancel:false,
  51. success(res) {
  52. if (res.confirm) {
  53. wx.navigateBack({
  54. delta: 1
  55. })
  56. }
  57. }
  58. })
  59. }
  60. },
  61. res => {
  62. console.log(res)
  63. })
  64. },
  65. /**
  66. * 生命周期函数--监听页面初次渲染完成
  67. */
  68. onReady: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面显示
  72. */
  73. onShow: function () {
  74. },
  75. /**
  76. * 生命周期函数--监听页面隐藏
  77. */
  78. onHide: function () {
  79. },
  80. /**
  81. * 生命周期函数--监听页面卸载
  82. */
  83. onUnload: function () {
  84. },
  85. /**
  86. * 页面相关事件处理函数--监听用户下拉动作
  87. */
  88. onPullDownRefresh: function () {
  89. },
  90. /**
  91. * 页面上拉触底事件的处理函数
  92. */
  93. onReachBottom: function () {
  94. },
  95. /**
  96. * 用户点击右上角分享
  97. */
  98. onShareAppMessage: function () {
  99. }
  100. })