|
@@ -22,11 +22,14 @@ Page({
|
|
|
},
|
|
|
isNotruter: false,
|
|
|
deviceList: [],
|
|
|
- bannerList:[],
|
|
|
+ bannerList: [],
|
|
|
isLoginWx: false,
|
|
|
selectIndex: -1,
|
|
|
}
|
|
|
},
|
|
|
+ changeRole() {
|
|
|
+ app.changeUserRight()
|
|
|
+ },
|
|
|
// 删除设备
|
|
|
deleteDeviceTap: function () {
|
|
|
|
|
@@ -36,17 +39,18 @@ Page({
|
|
|
|
|
|
},
|
|
|
|
|
|
- deviceItemTap: function() {
|
|
|
+ deviceItemTap: function () {
|
|
|
this.setData({
|
|
|
// selectIndex = index
|
|
|
- });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ changeDeviceTap: function () {
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
onLoad(options) {
|
|
|
-
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -60,15 +64,29 @@ Page({
|
|
|
* 生命周期函数--监听页面显示
|
|
|
*/
|
|
|
onShow() {
|
|
|
+ if (typeof this.getTabBar === 'function' &&
|
|
|
+ this.getTabBar()) {
|
|
|
+ this.getTabBar().setData({
|
|
|
+ selected: 0
|
|
|
+ })
|
|
|
+ }
|
|
|
+ app.eventBus.on('rightChange', data => {
|
|
|
+ if (data !== this.data.rightId) {
|
|
|
+ this.setData({
|
|
|
+ rightId: data
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
this.setData({
|
|
|
deviceList: [
|
|
|
- {"devName": "名称1","state": "online","pic": "url","power": 40,},
|
|
|
- {"devName": "名称2","state": "online","pic": "url","power": 50,},
|
|
|
- {"devName": "名称3","state": "online","pic": "url","power": 60,},
|
|
|
+ { "devName": "名称1", "state": "online", "pic": "url", "power": 40, },
|
|
|
+ { "devName": "名称2", "state": "online", "pic": "url", "power": 50, },
|
|
|
+ { "devName": "名称3", "state": "online", "pic": "url", "power": 60, },
|
|
|
],
|
|
|
selectIndex: 0,
|
|
|
isLoginWx: true,
|
|
|
- bannerList:["https://img1.baidu.com/it/u=2003442481,2528062378&fm=253&fmt=auto&app=138&f=JPG?w=499&h=182","https://hbimg.huabanimg.com/0ff93215a6d8d1c5f80117fdbfa24936dbd9097026ad99-CNduY8_fw658","https://img.zcool.cn/community/0177ed5f365bdaa801215aa0a0c1c3.jpg@1280w_1l_2o_100sh.jpg"],
|
|
|
+ bannerList: ["https://img1.baidu.com/it/u=2003442481,2528062378&fm=253&fmt=auto&app=138&f=JPG?w=499&h=182", "https://hbimg.huabanimg.com/0ff93215a6d8d1c5f80117fdbfa24936dbd9097026ad99-CNduY8_fw658", "https://img.zcool.cn/community/0177ed5f365bdaa801215aa0a0c1c3.jpg@1280w_1l_2o_100sh.jpg"],
|
|
|
});
|
|
|
},
|
|
|
|