mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 00:49:37 +08:00
92 lines
1.5 KiB
JavaScript
92 lines
1.5 KiB
JavaScript
![]() |
const app = getApp()
|
||
|
|
||
|
import Notify from '@vant/weapp/notify/notify';
|
||
|
|
||
|
import {
|
||
|
selfFormatTimeYMD,
|
||
|
selfFormatTimeHM
|
||
|
} from "../../../utils/util.js"
|
||
|
|
||
|
import {
|
||
|
cancelOrderRq
|
||
|
} from "../../../api/meeting/meetingRoom.js"
|
||
|
|
||
|
Page({
|
||
|
|
||
|
/**
|
||
|
* 页面的初始数据
|
||
|
*/
|
||
|
data: {
|
||
|
IMG_NAME: app.IMG_NAME,
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面加载
|
||
|
*/
|
||
|
onLoad(options) {
|
||
|
let _this = this;
|
||
|
_this.setData({
|
||
|
userData: wx.getStorageSync('user'),
|
||
|
})
|
||
|
|
||
|
},
|
||
|
|
||
|
// 跳转房间
|
||
|
jumpRoom(){
|
||
|
wx.navigateTo({
|
||
|
url: '/pages/smartDevice/room/room',
|
||
|
})
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面初次渲染完成
|
||
|
*/
|
||
|
onReady() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面显示
|
||
|
*/
|
||
|
onShow() {
|
||
|
let _this = this;
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面隐藏
|
||
|
*/
|
||
|
onHide() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面卸载
|
||
|
*/
|
||
|
onUnload() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||
|
*/
|
||
|
onPullDownRefresh() {
|
||
|
console.log('onPullDownRefresh', '页面相关事件处理函数--监听用户下拉动作');
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面上拉触底事件的处理函数
|
||
|
*/
|
||
|
onReachBottom() {
|
||
|
console.log('onReachBottom', '页面上拉触底事件的处理函数');
|
||
|
let _this = this;
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 用户点击右上角分享
|
||
|
*/
|
||
|
onShareAppMessage(e) {
|
||
|
|
||
|
}
|
||
|
})
|