Explorar el Código

重构小程序

feat
JinxChen hace 2 años
padre
commit
06c0140fbd
Se han modificado 3 ficheros con 89 adiciones y 4 borrados
  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 Ver fichero

@@ -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 Ver fichero

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

+ 11
- 4
miniprogram/pages/more/more.js Ver fichero

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

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

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

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

},

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

}
},
})

Cargando…
Cancelar
Guardar