|
-
- Page({
-
-
-
- data: {
- wlanList: [
- ],
- isConnectWlan: null,
- connectWlanBssid: '',
- },
-
-
-
- onLoad: function (options) {
- this.onStartWifi();
-
- },
-
-
-
- onReady: function () {
-
- },
-
-
-
- onShow: function () {
-
- },
-
-
-
- onHide: function () {
-
- },
-
-
-
- onUnload: function () {
-
- },
-
-
-
- onPullDownRefresh: function () {
-
- },
-
-
-
- onReachBottom: function () {
-
- },
-
-
-
- onShareAppMessage: function () {
-
- },
- navigateTo() {
- wx.navigateTo({
- url: '/pages/lifecyle/lifecyle'
- })
- },
- switchTab() {
- wx.switchTab({
- url: "/pages/list/list",
- })
- },
-
- onStartWifi() {
- let that = this;
- wx.startWifi({
- success(res) {
- console.log("成功", res.errMsg);
- that.getWifiList();
- },
- fail(res) {
- console.log("失败", res.errMsg);
- wx.showModal({
- title: '温馨提示',
- content: `当前用户未打开WIFI和GPS`,
- showCancel: false,
- success(res) {
- if (res.confirm) {
- console.log('用户点击确定');
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- })
- }
- });
- },
-
- getConnectedWifi: function () {
- let that = this;
- wx.getConnectedWifi({
- success(res) {
- console.log(res);
- if(res) {
-
- that.setData({
- isConnectWlan: true,
- connectWlanBssid: res.wifi.BSSID,
- })
- }
- },
- fail(res) {
- console.log(res.errMsg);
- that.setData({
- isConnectWlan: false
- })
- }
- })
- },
-
- onRefresh() {
- this.getWifiList();
- },
-
- onHelp() {
- wx.showModal({
- title: '温馨提示',
- content: `请您前往手机-设置-WLAN,打开WLAN开关并且打开手机的GPS`,
- showCancel: false,
- })
- },
-
- onSave(value) {
- let that = this;
- const currentWlanInfo = value.currentTarget.dataset.name;
- console.log("当前点击的WLAN信息", currentWlanInfo);
-
- },
-
- getWifiList() {
- let that = this;
-
- that.getConnectedWifi();
- wx.showLoading({
- title: '获取中WLAN...'
- });
- wx.getWifiList({
- success(res) {
- console.log("getWifiList", res);
- wx.hideLoading();
- wx.showToast({
- title: '获取成功',
- icon: 'success'
- });
- wx.onGetWifiList((result) => {
-
- let wifiList = result.wifiList.filter(item => {
- return item.SSID !== '';
- });
-
- if(that.data.connectWlanBssid !== '') {
-
-
- const index = wifiList.findIndex(v => v.BSSID === that.data.connectWlanBssid);
-
- const moveObj = wifiList.splice(index, 1);
-
- wifiList.splice(0, 0, ...moveObj);
- that.setData({
- wlanList: wifiList
- })
- } else {
- that.setData({
- wlanList: wifiList
- })
- }
- });
- },
- fail(res) {
- console.log(res.errMsg);
- wx.hideLoading();
- wx.showModal({
- title: '温馨提示',
- content: '当前用户未打开WIFI和GPS',
- showCancel: false,
- })
- },
- });
- }
- })
|