|
@@ -621,7 +621,8 @@ Page({
|
|
|
var deviceList = that.getDeviceList();
|
|
|
let curDevice = deviceList[index]
|
|
|
if (index === deviceListSelect && device.state === "online") {
|
|
|
- routeUtil.jumpParam('/pages/deviceDetail/detail', JSON.stringify(curDevice))
|
|
|
+ var param = "?param=" + JSON.stringify(curDevice);
|
|
|
+ routeUtil.jumpParam('/pages/deviceDetail/detail', param);
|
|
|
} else if (device.state === "offline") {
|
|
|
|
|
|
var deviceListSelect = that.getDeviceListSelect();
|
|
@@ -1016,7 +1017,8 @@ Page({
|
|
|
}
|
|
|
// 外链
|
|
|
else if (item.forwardType == 1) {
|
|
|
- routeUtil.jumpParam(routePath.webview, item.forwardUrl);
|
|
|
+ var param = "?param=" + item.forwardUrl;
|
|
|
+ routeUtil.jumpParam(routePath.webview, param);
|
|
|
} else {
|
|
|
|
|
|
}
|