// index/PageA.js
const app = getApp()
var timerPageA; // 计时器
var intPageATime = 0
Page({
/**
* 页面的初始数据
*/
data: {
},
// A页计时器
countTime() {
let that = this
// 读取A页计时数值
wx.getStorage({
key: 'timerPageA',
success(res) {
intPageATime = res.data
}
})
// 计时过程
timerPageA = setTimeout(function () {
console.log('A页计时器 1', intPageATime);
intPageATime = intPageATime 1
wx.setStorage({
key: "timerPageA",
data: intPageATime
})
that.countTime();
}, 1000);
},
// 计时器暂停
pauseBtn: function () {
console.log('A页计时器暂停');
clearTimeout(timerPageA);
},
/**
* 生命周期函数--监听页面加载
*/
onl oad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.countTime()
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
this.pauseBtn()
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
this.pauseBtn()
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})