|
@@ -7,6 +7,8 @@ const {
|
|
|
} = require('../../../utils/api.js');
|
|
|
|
|
|
import lexin_util from '../../../utils/lexin/util.js';
|
|
|
+import route_constant from '../../../utils/route_constant.js';
|
|
|
+import route_util from '../../../utils/route_util.js';
|
|
|
|
|
|
Page({
|
|
|
data: {
|
|
@@ -443,9 +445,8 @@ Page({
|
|
|
var clientType = that.data.clientType;
|
|
|
///唤醒的设置特殊,智能这样用
|
|
|
var deviceMac = that.data.deviceMac;
|
|
|
- wx.navigateTo({
|
|
|
- url: './../wakeList/wakeList?clientType=' + clientType + "&deviceMac=" + deviceMac,
|
|
|
- })
|
|
|
+ var param = '?clientType=' + clientType + "&deviceMac=" + deviceMac;
|
|
|
+ route_util.jumpParam(route_constant.wakeList, param);
|
|
|
},
|
|
|
|
|
|
gorepeat(e) {
|