From cdb933b449e8573f33e1f04dd579ad13ac719867 Mon Sep 17 00:00:00 2001 From: TonyChyi Date: Fri, 27 Dec 2024 22:58:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E7=82=B9=E5=B0=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 31 +++++++++++++++ pages/connect-wifi/connect-wifi.js | 60 ++++-------------------------- 2 files changed, 38 insertions(+), 53 deletions(-) create mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..115cc02 --- /dev/null +++ b/.eslintrc.js @@ -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: {}, +} diff --git a/pages/connect-wifi/connect-wifi.js b/pages/connect-wifi/connect-wifi.js index f54904c..999be1c 100644 --- a/pages/connect-wifi/connect-wifi.js +++ b/pages/connect-wifi/connect-wifi.js @@ -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() { - - } }) \ No newline at end of file