index.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. unscrambleDetail: {},
  16. unid: '',
  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.unid);
  32. request.fetch({
  33. url: 'api/financial/tPolicyDeclaration',
  34. id: this.data.unid,
  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.current_state_time) {
  40. res.data.data.current_state_time = this.getDate(res.data.data.current_state_time, 'yyyy.MM.dd')
  41. } else {
  42. res.data.data.current_state_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. unscrambleDetail: res.data.data
  50. });
  51. }).catch((err) => {
  52. console.log(err);
  53. });
  54. },
  55. /**
  56. * 生命周期函数--监听页面加载
  57. */
  58. onLoad: function (options) {
  59. console.log(options);
  60. this.setData({
  61. unid: options.id
  62. });
  63. this.loadDetail();
  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. })