bt-lcyd/pages/venueIntro/venueIntro.js
dong_bo0602 4458f60375 0614
2022-06-14 10:56:41 +08:00

101 lines
1.7 KiB
JavaScript

// pages/venueIntro/venueIntro.js
const app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
requestIp: '',
token: '',
venuesInfoId: '',
text: ''
},
getText: function () {
var self = this
wx.request({
url: self.data.requestIp + 'app/wechatprogram/getvenuesdetailbyId?venuesInfoId=' + self.data.venuesInfoId,
header: {
'token': self.data.token
},
success: function (res) {
console.log(res)
self.setData({
text: res.data.data.venueDescription
})
}
})
},
getToken: function () {
var self = this
wx.getStorage({
key: 'token',
success: function (res) {
self.setData({
token: res.data
})
self.getText()
},
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
console.log(options)
this.setData({
venuesInfoId: options.venuesInfoId,
requestIp: app.globalData.requestIp
})
this.getToken()
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})