cuiqian2004
8 天以前 30311cd24ee3b1567ffafac002494bb67feda657
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export default {
 
    openWifiSetting() {
        plus.runtime.launchApplication({
            action: "prefs:root=WIFI", // iOS系统WLAN连接界面的URL Scheme
            success: function() {
                console.log("跳转到WLAN连接界面成功");
            },
            fail: function(e) {
                console.error("跳转失败:", e);
            }
        });
    },
    getConnectionWifi() {
 
        return ""
    },
}