一点小调整

This commit is contained in:
TonyChyi 2024-12-27 22:58:25 +08:00
parent 0de9992474
commit cdb933b449
2 changed files with 38 additions and 53 deletions

31
.eslintrc.js Normal file
View File

@ -0,0 +1,31 @@
/*
* Eslint config file
* Documentation: https://eslint.org/docs/user-guide/configuring/
* Install the Eslint extension before using this feature.
*/
module.exports = {
env: {
es6: true,
browser: true,
node: true,
},
ecmaFeatures: {
modules: true,
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
globals: {
wx: true,
App: true,
Page: true,
getCurrentPages: true,
getApp: true,
Component: true,
requirePlugin: true,
requireMiniProgram: true,
},
// extends: 'eslint:recommended',
rules: {},
}

View File

@ -1,13 +1,12 @@
// pages/connect-wifi/connect-wifi.js
Page({
/**
* 页面的初始数据
*/
data: {
wifiInfo: {
SSID: 'test',
password: ''
password: 'test'
},
},
@ -15,8 +14,12 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad(options) {
const scene = decodeURIComponent(options.scene);
this.data.wifiInfo = JSON.parse(scene)
try {
const scene = decodeURIComponent(options.scene);
this.data.wifiInfo = JSON.parse(scene)
} catch (e) {
console.log(e)
}
this.connectWifi(this.data.wifiInfo)
},
@ -32,53 +35,4 @@ Page({
fail: (err)=> {}
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})