|
@@ -1,5 +1,5 @@
|
|
|
-import routeUtil from '../../utils/routeUtil'
|
|
|
-import routePath from '../../utils/routePath.js'
|
|
|
+import routeUtil from '../../../utils/routeUtil'
|
|
|
+import routePath from '../../../utils/routePath.js'
|
|
|
Page({
|
|
|
|
|
|
data: {
|
|
@@ -13,17 +13,17 @@ Page({
|
|
|
model: "",
|
|
|
connectDevice: {},
|
|
|
typeList: [{
|
|
|
- "icon": "../../images/device/mode_2.png",
|
|
|
+ "icon": "../../../images/device/mode_2.png",
|
|
|
"text": "WiFi模式",
|
|
|
"type": 2,
|
|
|
},
|
|
|
{
|
|
|
- "icon": "../../images/device/mode_1.png",
|
|
|
+ "icon": "../../../images/device/mode_1.png",
|
|
|
"text": "蓝牙模式",
|
|
|
"type": 1,
|
|
|
},
|
|
|
{
|
|
|
- "icon": "../../images/device/mode_4.png",
|
|
|
+ "icon": "../../../images/device/mode_4.png",
|
|
|
"text": "4G模式",
|
|
|
"type": 4,
|
|
|
},
|
|
@@ -119,7 +119,7 @@ Page({
|
|
|
let _typeList = device.typeList
|
|
|
.filter(e => (isWifi && e.type == 2) || isS2)
|
|
|
.map(e => ({
|
|
|
- icon: "../../images/device/mode_" + e.type + ".png",
|
|
|
+ icon: "../../../images/device/mode_" + e.type + ".png",
|
|
|
text: _this.getModeName(e),
|
|
|
type: e.type
|
|
|
}));
|