|
@@ -129,6 +129,54 @@ function loopname(deviceid,groupid,loop,loops,slice,groupName,deviceName,group,c
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+//分组下拉和设备下拉的获取(主页界面)
|
|
|
+function droplist(){
|
|
|
+ var group = wx.getStorageSync('group')
|
|
|
+ //获取分组下拉
|
|
|
+ var groups = []
|
|
|
+ for(let i = 0;i < group.length;i++){
|
|
|
+ groups.push(group[i].groupName)
|
|
|
+ }
|
|
|
+ //改变分组下标
|
|
|
+ if(wx.getStorageSync('groupName') != ''){
|
|
|
+ let GroupName = that.data.groupName
|
|
|
+ for(let n = 0;n < GroupName.length;n++){
|
|
|
+ if(GroupName[n] == wx.getStorageSync('groupName')){
|
|
|
+ var groupIndex = n
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else{wx.setStorageSync('groupName',that.data.groupName[that.data.groupIndex])}
|
|
|
+ //获取设备下拉
|
|
|
+ var device = []
|
|
|
+ var groupName = that.data.groupName
|
|
|
+ var groupIndex = that.data.groupIndex
|
|
|
+ for(let j = 0;j < group.length;j++){
|
|
|
+ if(groupName[groupIndex] == group[j].groupName){
|
|
|
+ if(group[j].devices != null && group[j].devices.length != 0){
|
|
|
+ for(let p = 0;p < group[j].devices.length;p++){
|
|
|
+ device.push(group[j].devices[p].deviceName)
|
|
|
+ }
|
|
|
+ that.setData({deviceName:device})
|
|
|
+ //改变设备下标
|
|
|
+ if(wx.getStorageSync('deviceName') != ''){
|
|
|
+ var DeviceName = that.data.deviceName
|
|
|
+ for(let m = 0;m < DeviceName.length;m++){
|
|
|
+ if(DeviceName[m] == wx.getStorageSync('deviceName')){
|
|
|
+ that.setData({
|
|
|
+ deviceIndex:m
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ wx.setStorageSync('deviceName', that.data.deviceName[that.data.deviceIndex])
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
module.exports = {
|
|
|
getlooplist:getlooplist,
|
|
|
Switch:Switch,
|