// pages/zhdtInfo/zhdtInfo.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { id: '', swiperList: [], data:{}, }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { console.log(options.id) var that = this; wx.request({ url: app.globalData.url + '/api/article/publicMsgDetails?msgId=' + options.id, success: function (res) { wx.hideLoading(); console.log(res) if (res.data.code == 0) { that.setData({ data: { ...res.data.data, createTime: app.formatDate(res.data.data.createTime), } }) } else { wx.showModal({ title: '提示', content: "请求失败!" }) } } }) }, })