123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- const request = require('../../utils/request.js');
- const app = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- nvabarData: {
- showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
- showBack: 1, //返回
- title: '权威发布', //导航栏 中间的标题
- // 此页面 页面内容距最顶部的距离
- height: app.globalData.height * 2 + 20,
- },
- unscrambleDetail: {},
- unid: '',
- },
- getDate(val, formatStr) {
- if (val) {
- return this.format(new Date(Number(val)), formatStr);
- }
- return '';
- },
- format(date, formatStr) {
- formatStr = formatStr.replace(/yyyy|YYYY/, date.getFullYear());
- formatStr = formatStr.replace(/MM/, (date.getMonth() + 1) > 9 ? (date.getMonth() + 1).toString() : '0' + (date.getMonth() + 1));
- formatStr = formatStr.replace(/dd|DD/, date.getDate() > 9 ? date.getDate().toString() : '0' + date.getDate());
- return formatStr;
- },
- loadDetail: function () {
- console.log(this.data.unid);
- request.fetch({
- url: 'api/financial/tPolicyDeclaration',
- id: this.data.unid,
- }).then((res) => {
- if (res.data.data.image) {
- res.data.data.image = request.imageUrl + res.data.data.image
- }
- if (res.data.data.current_state_time) {
- res.data.data.current_state_time = this.getDate(res.data.data.current_state_time, 'yyyy.MM.dd')
- } else {
- res.data.data.current_state_time = '';
- }
- if (res.data.data.description) {
- let reg = /src="/g;
- res.data.data.description = res.data.data.description.replace(reg,'src="'+request.imageUrl)
- }
- this.setData({
- unscrambleDetail: res.data.data
- });
- }).catch((err) => {
- console.log(err);
- });
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- console.log(options);
- this.setData({
- unid: options.id
- });
- this.loadDetail();
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|