cuiqian2004
2025-09-12 d87c256a957a6a5c3b40eaf9c52ec68f2fc22c97
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 {}
    },
}