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