index.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. const request = require('../../utils/request.js');
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. nvabarData: {
  9. showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
  10. showBack: 1, //返回
  11. title: '政策解读', //导航栏 中间的标题
  12. // 此页面 页面内容距最顶部的距离
  13. height: app.globalData.height * 2 + 20,
  14. },
  15. policyDetail: {},
  16. pid: '',
  17. },
  18. getDate(val, formatStr) {
  19. if (val) {
  20. return this.format(new Date(Number(val)), formatStr);
  21. }
  22. return '';
  23. },
  24. format(date, formatStr) {
  25. formatStr = formatStr.replace(/yyyy|YYYY/, date.getFullYear());
  26. formatStr = formatStr.replace(/MM/, (date.getMonth() + 1) > 9 ? (date.getMonth() + 1).toString() : '0' + (date.getMonth() + 1));
  27. formatStr = formatStr.replace(/dd|DD/, date.getDate() > 9 ? date.getDate().toString() : '0' + date.getDate());
  28. return formatStr;
  29. },
  30. loadDetail: function () {
  31. console.log(this.data.pid);
  32. request.fetch({
  33. url: 'api/financial/tPolicyInterpretation',
  34. id: this.data.pid,
  35. }).then((res) => {
  36. if (res.data.data.image) {
  37. res.data.data.image = request.imageUrl + res.data.data.image
  38. }
  39. if (res.data.data.create_time) {
  40. res.data.data.create_time = this.getDate(res.data.data.create_time, 'yyyy.MM.dd')
  41. } else {
  42. res.data.data.create_time = '';
  43. }
  44. if (res.data.data.description) {
  45. let reg = /src="/g;
  46. res.data.data.description = res.data.data.description.replace(reg,'src="'+request.imageUrl)
  47. }
  48. this.setData({
  49. policyDetail: res.data.data
  50. });
  51. }).catch((err) => {
  52. console.log(err);
  53. });
  54. },
  55. /**
  56. * 生命周期函数--监听页面加载
  57. */
  58. onLoad: function (options) {
  59. this.setData({
  60. pid: options.id
  61. });
  62. this.loadDetail();
  63. },
  64. /**
  65. * 生命周期函数--监听页面初次渲染完成
  66. */
  67. onReady: function () {
  68. },
  69. /**
  70. * 生命周期函数--监听页面显示
  71. */
  72. onShow: function () {
  73. },
  74. /**
  75. * 生命周期函数--监听页面隐藏
  76. */
  77. onHide: function () {
  78. },
  79. /**
  80. * 生命周期函数--监听页面卸载
  81. */
  82. onUnload: function () {
  83. },
  84. /**
  85. * 页面相关事件处理函数--监听用户下拉动作
  86. */
  87. onPullDownRefresh: function () {
  88. },
  89. /**
  90. * 页面上拉触底事件的处理函数
  91. */
  92. onReachBottom: function () {
  93. },
  94. /**
  95. * 用户点击右上角分享
  96. */
  97. onShareAppMessage: function () {
  98. }
  99. })