Browse Source

重构小程序

feat
JinxChen 2 years ago
parent
commit
06c0140fbd
3 changed files with 89 additions and 4 deletions
  1. +73
    -0
      miniprogram/pages/list/list.js
  2. +5
    -0
      miniprogram/pages/list/list.wxml
  3. +11
    -4
      miniprogram/pages/more/more.js

+ 73
- 0
miniprogram/pages/list/list.js View File

@@ -0,0 +1,73 @@
// pages/list/list.js
Page({

/**
* 页面的初始数据
*/
data: {
nowTime: new Date().toLocaleDateString(),
},

/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.startWifi({
success (res) {
console.log("成功", res.errMsg);
},
fail(res) {
console.log("失败", res.errMsg);
}
});
},

/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {

},

/**
* 生命周期函数--监听页面显示
*/
onShow: function () {

},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {

},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {

},

/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {

},

/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {

},

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

},
})

+ 5
- 0
miniprogram/pages/list/list.wxml View File

@@ -0,0 +1,5 @@
<view class="list-container">
<text>
现在时间是: {{nowTime}}
</text>
</view>

+ 11
- 4
miniprogram/pages/more/more.js View File

@@ -13,7 +13,15 @@ Page({
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function (options) { onLoad: function (options) {

wx.startWifi({
success (res) {
console.log("成功", res.errMsg);
},
fail(res) {
console.log("失败", res.errMsg);
}
});
}, },


/** /**
@@ -29,14 +37,13 @@ Page({
onShow: function () { onShow: function () {


}, },
/** /**
* 生命周期函数--监听页面隐藏 * 生命周期函数--监听页面隐藏
*/ */
onHide: function () { onHide: function () {


}, },

/** /**
* 生命周期函数--监听页面卸载 * 生命周期函数--监听页面卸载
*/ */
@@ -63,5 +70,5 @@ Page({
*/ */
onShareAppMessage: function () { onShareAppMessage: function () {


}
},
}) })

Loading…
Cancel
Save