|
@@ -79,14 +79,16 @@ Page({
|
|
|
play: 0, //新老设备的页面切换
|
|
|
//新设备数据
|
|
|
timeValue: ['00:00', '00:00', '00:00', '00:00', '00:00', '00:00'],
|
|
|
- weather: ['晴天', '多云', '阴天', '大阴天'],
|
|
|
- wIndex: 0,
|
|
|
newcolor: ["#888888", "#888888", "#888888"],
|
|
|
newfont: ["#cccccc", "#cccccc", "#cccccc"],
|
|
|
newSwitch: [false, false, false],
|
|
|
- newSwitchstate: ["", "", "",""],
|
|
|
- equipment: 0, //记录当前设备的id
|
|
|
+ newSwitchstate: ["", "", ""],
|
|
|
+ equipment: 0, //记录当前设备的序号(服务器传的id)
|
|
|
subset:0,//记录当前分组的id
|
|
|
+ ID:0,//记录设备的ID
|
|
|
+ // 启动条件(多选框)
|
|
|
+ disabled:false,
|
|
|
+ choice:[false,false,false,false]
|
|
|
},
|
|
|
//分组下拉
|
|
|
changegroup: function (e) {
|
|
@@ -120,7 +122,8 @@ Page({
|
|
|
var Message = enloop.deviceMessage(groupNames, deviceNames)
|
|
|
that.setData({
|
|
|
equipment: Message.Device,
|
|
|
- subset:Message.id
|
|
|
+ subset:Message.id,
|
|
|
+ ID:Message.ID
|
|
|
}) //记录当前的设备id和分组id
|
|
|
if (Message.modules == 0) {
|
|
|
that.setData({
|
|
@@ -284,7 +287,7 @@ Page({
|
|
|
status: '离线'
|
|
|
})
|
|
|
}
|
|
|
- getloop(Message.Device).then(suc => {
|
|
|
+ getloop(Message.ID).then(suc => {
|
|
|
if (suc.data.code == 0) {
|
|
|
var suc = suc.data.data
|
|
|
var index = that.data.indexes
|
|
@@ -294,15 +297,26 @@ Page({
|
|
|
var newSwitch = that.data.newSwitch
|
|
|
var timeValue = that.data.timeValue
|
|
|
var newSwitchstate = that.data.newSwitchstate
|
|
|
- var weather = that.data.weather
|
|
|
- //光控开启条件(天气)
|
|
|
- for (let q = 0; q < weather.length; q++) {
|
|
|
- if (Suc.lightControlCondition == weather[q]) {
|
|
|
- that.setData({
|
|
|
- wIndex: q
|
|
|
- })
|
|
|
- }
|
|
|
+ var choice = that.data.choice
|
|
|
+ //光控启动条件
|
|
|
+ var light = Suc.lightControlCondition.split(',')
|
|
|
+ for(let i = 0;i < light.length; i++){
|
|
|
+ switch(light[i]){
|
|
|
+ case '晴天':
|
|
|
+ choice[0] = true
|
|
|
+ break;
|
|
|
+ case '多云':
|
|
|
+ choice[1] = true
|
|
|
+ break;
|
|
|
+ case '阴天':
|
|
|
+ choice[2] = true
|
|
|
+ break;
|
|
|
+ case '大阴天':
|
|
|
+ choice[3] = true
|
|
|
+ break;
|
|
|
}
|
|
|
+ }
|
|
|
+ that.setData({choice:choice})
|
|
|
//时控1
|
|
|
if (Suc.timeCondition1Switch == 1) {
|
|
|
newSwitch[0] = true
|
|
@@ -594,7 +608,7 @@ Page({
|
|
|
status: '离线'
|
|
|
})
|
|
|
}
|
|
|
- getloop(Message.Device).then(suc => {
|
|
|
+ getloop(Message.ID).then(suc => {
|
|
|
if (suc.data.code == 0) {
|
|
|
var suc = suc.data.data
|
|
|
var index = that.data.indexes
|
|
@@ -604,15 +618,26 @@ Page({
|
|
|
var newSwitch = that.data.newSwitch
|
|
|
var timeValue = that.data.timeValue
|
|
|
var newSwitchstate = that.data.newSwitchstate
|
|
|
- var weather = that.data.weather
|
|
|
- //光控开启条件(天气)
|
|
|
- for (let q = 0; q < weather.length; q++) {
|
|
|
- if (Suc.lightControlCondition == weather[q]) {
|
|
|
- that.setData({
|
|
|
- wIndex: q
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
+ var choice = that.data.choice
|
|
|
+ //光控启动条件
|
|
|
+ var light = Suc.lightControlCondition.split(',')
|
|
|
+ for(let i = 0;i < light.length; i++){
|
|
|
+ switch(light[i]){
|
|
|
+ case '晴天':
|
|
|
+ choice[0] = true
|
|
|
+ break;
|
|
|
+ case '多云':
|
|
|
+ choice[1] = true
|
|
|
+ break;
|
|
|
+ case '阴天':
|
|
|
+ choice[2] = true
|
|
|
+ break;
|
|
|
+ case '大阴天':
|
|
|
+ choice[3] = true
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.setData({choice:choice})
|
|
|
//时控1
|
|
|
if (Suc.timeCondition1Switch == 1) {
|
|
|
newSwitch[0] = true
|
|
@@ -1214,7 +1239,7 @@ Page({
|
|
|
}
|
|
|
//新设备
|
|
|
else{
|
|
|
- var Equip = that.data.equipment//设备id
|
|
|
+ var Equip = that.data.ID//设备id
|
|
|
getloop(Equip).then(suc => {
|
|
|
if (suc.data.code == 0) {
|
|
|
var suc = suc.data.data
|
|
@@ -1225,15 +1250,26 @@ Page({
|
|
|
var newSwitch = that.data.newSwitch
|
|
|
var timeValue = that.data.timeValue
|
|
|
var newSwitchstate = that.data.newSwitchstate
|
|
|
- var weather = that.data.weather
|
|
|
- //光控开启条件(天气)
|
|
|
- for (let q = 0; q < weather.length; q++) {
|
|
|
- if (Suc.lightControlCondition == weather[q]) {
|
|
|
- that.setData({
|
|
|
- wIndex: q
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
+ var choice = that.data.choice
|
|
|
+ //光控启动条件
|
|
|
+ var light = Suc.lightControlCondition.split(',')
|
|
|
+ for(let i = 0;i < light.length; i++){
|
|
|
+ switch(light[i]){
|
|
|
+ case '晴天':
|
|
|
+ choice[0] = true
|
|
|
+ break;
|
|
|
+ case '多云':
|
|
|
+ choice[1] = true
|
|
|
+ break;
|
|
|
+ case '阴天':
|
|
|
+ choice[2] = true
|
|
|
+ break;
|
|
|
+ case '大阴天':
|
|
|
+ choice[3] = true
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.setData({choice:choice})
|
|
|
//时控1
|
|
|
if (Suc.timeCondition1Switch == 1) {
|
|
|
newSwitch[0] = true
|
|
@@ -1445,8 +1481,7 @@ Page({
|
|
|
this.setData({
|
|
|
newSwitch: newSwitch,
|
|
|
newcolor: newcolor,
|
|
|
- newfont,
|
|
|
- newfont,
|
|
|
+ newfont:newfont,
|
|
|
newSwitchstate: newSwitchstate
|
|
|
})
|
|
|
},
|
|
@@ -1455,24 +1490,27 @@ Page({
|
|
|
let newcolor = this.data.newcolor
|
|
|
let newfont = this.data.newfont
|
|
|
let newSwitchstate = this.data.newSwitchstate
|
|
|
+ let disabled = this.data.disabled
|
|
|
newSwitch[2] = !newSwitch[2]
|
|
|
if (newSwitch[2] == true) {
|
|
|
newcolor[2] = "blue"
|
|
|
newfont[2] = "white"
|
|
|
newSwitchstate[2] = "time"
|
|
|
newSwitchstate[3] = "selector"
|
|
|
+ disabled = false
|
|
|
} else {
|
|
|
newcolor[2] = "#888888"
|
|
|
newfont[2] = "#cccccc"
|
|
|
newSwitchstate[2] = ""
|
|
|
newSwitchstate[3] = ""
|
|
|
+ disabled = true
|
|
|
}
|
|
|
this.setData({
|
|
|
newSwitch: newSwitch,
|
|
|
newcolor: newcolor,
|
|
|
- newfont,
|
|
|
- newfont,
|
|
|
- newSwitchstate: newSwitchstate
|
|
|
+ newfont:newfont,
|
|
|
+ newSwitchstate: newSwitchstate,
|
|
|
+ disabled:disabled
|
|
|
})
|
|
|
},
|
|
|
//固定与经纬的切换
|
|
@@ -1595,11 +1633,6 @@ Page({
|
|
|
timeValue: time
|
|
|
})
|
|
|
},
|
|
|
- bindweatherChange11:function(e){
|
|
|
- this.setData({
|
|
|
- wIndex: e.detail.value
|
|
|
- })
|
|
|
- },
|
|
|
//日期调控(图片切换)
|
|
|
setbuty0: function () {
|
|
|
var that = this
|
|
@@ -2024,7 +2057,7 @@ Page({
|
|
|
status: '离线'
|
|
|
})
|
|
|
}
|
|
|
- getloop(message.Device).then(suc => {
|
|
|
+ getloop(message.ID).then(suc => {
|
|
|
if (suc.data.code == 0) {
|
|
|
var suc = suc.data.data
|
|
|
var index = that.data.indexes
|
|
@@ -2034,15 +2067,26 @@ Page({
|
|
|
var newSwitch = that.data.newSwitch
|
|
|
var timeValue = that.data.timeValue
|
|
|
var newSwitchstate = that.data.newSwitchstate
|
|
|
- var weather = that.data.weather
|
|
|
- //光控开启条件(天气)
|
|
|
- for (let q = 0; q < weather.length; q++) {
|
|
|
- if (Suc.lightControlCondition == weather[q]) {
|
|
|
- that.setData({
|
|
|
- wIndex: q
|
|
|
- })
|
|
|
+ var choice = that.data.choice
|
|
|
+ //光控启动条件
|
|
|
+ var light = Suc.lightControlCondition.split(',')
|
|
|
+ for(let i = 0;i < light.length; i++){
|
|
|
+ switch(light[i]){
|
|
|
+ case '晴天':
|
|
|
+ choice[0] = true
|
|
|
+ break;
|
|
|
+ case '多云':
|
|
|
+ choice[1] = true
|
|
|
+ break;
|
|
|
+ case '阴天':
|
|
|
+ choice[2] = true
|
|
|
+ break;
|
|
|
+ case '大阴天':
|
|
|
+ choice[3] = true
|
|
|
+ break;
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
+ that.setData({choice:choice})
|
|
|
//时控1
|
|
|
if (Suc.timeCondition1Switch == 1) {
|
|
|
newSwitch[0] = true
|
|
@@ -2149,6 +2193,47 @@ Page({
|
|
|
that.setData({deviceName:[],groupName:[]})
|
|
|
}
|
|
|
},
|
|
|
+ //新设备多选框
|
|
|
+ point1:function(){
|
|
|
+ var choice = this.data.choice
|
|
|
+ if(choice[0] == true){
|
|
|
+ choice[0] = false
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ choice[0] = true
|
|
|
+ }
|
|
|
+ this.setData({choice:choice})
|
|
|
+ },
|
|
|
+ point2:function(){
|
|
|
+ var choice = this.data.choice
|
|
|
+ if(choice[1] == true){
|
|
|
+ choice[1] = false
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ choice[1] = true
|
|
|
+ }
|
|
|
+ this.setData({choice:choice})
|
|
|
+ },
|
|
|
+ point3:function(){
|
|
|
+ var choice = this.data.choice
|
|
|
+ if(choice[2] == true){
|
|
|
+ choice[2] = false
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ choice[2] = true
|
|
|
+ }
|
|
|
+ this.setData({choice:choice})
|
|
|
+ },
|
|
|
+ point4:function(){
|
|
|
+ var choice = this.data.choice
|
|
|
+ if(choice[3] == true){
|
|
|
+ choice[3] = false
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ choice[3] = true
|
|
|
+ }
|
|
|
+ this.setData({choice:choice})
|
|
|
+ },
|
|
|
//存储数据
|
|
|
Storedata: function () {
|
|
|
wx.showToast({
|
|
@@ -2559,7 +2644,8 @@ Page({
|
|
|
var crrs = that.data.crr //回路名称集合
|
|
|
var Crrindex = that.data.indexes //回路下标
|
|
|
Crrindex = Crrindex + 1
|
|
|
- var equipment = that.data.equipment //设备id
|
|
|
+ var ID = that.data.ID
|
|
|
+ ID = parseInt(ID)
|
|
|
var newSwitch = that.data.newSwitch //设备开关
|
|
|
for(let x = 0;x < newSwitch.length; x++){
|
|
|
if(newSwitch[x] == true){
|
|
@@ -2570,10 +2656,25 @@ Page({
|
|
|
}
|
|
|
}
|
|
|
//开启条件(天气)
|
|
|
- var weather = that.data.weather
|
|
|
- var wIndex = that.data.wIndex
|
|
|
+ var choice = that.data.choice
|
|
|
+ var Choice = ''
|
|
|
+ if(choice[0] == true){
|
|
|
+ Choice += '晴天,'
|
|
|
+ }
|
|
|
+ if(choice[1] == true){
|
|
|
+ Choice += '多云,'
|
|
|
+ }
|
|
|
+ if(choice[2] == true){
|
|
|
+ Choice += '阴天,'
|
|
|
+ }
|
|
|
+ if(choice[3] == true){
|
|
|
+ Choice += '大阴天,'
|
|
|
+ }
|
|
|
+ if(Choice.length > 0){
|
|
|
+ Choice = Choice.slice(0,Choice.length-1)
|
|
|
+ }
|
|
|
var postobject = {
|
|
|
- "deviceId": equipment,
|
|
|
+ "deviceId": ID,
|
|
|
"relays": [{
|
|
|
"relayId": Crrindex,
|
|
|
"name": crrs[Crrindex - 1],
|
|
@@ -2586,7 +2687,7 @@ Page({
|
|
|
"lightControlSwitch": newSwitch[2],
|
|
|
"lightControlStart": timeValues[4],
|
|
|
"lightControlEnd": timeValues[5],
|
|
|
- "lightControlCondition": weather[wIndex],
|
|
|
+ "lightControlCondition": Choice,
|
|
|
"status": null
|
|
|
}]
|
|
|
}
|
|
@@ -2695,7 +2796,8 @@ Page({
|
|
|
var message = enloop.deviceMessage(currentGroup, currentDevice)
|
|
|
that.setData({
|
|
|
equipment: message.Device,
|
|
|
- subset:message.id
|
|
|
+ subset:message.id,
|
|
|
+ ID:message.ID
|
|
|
}) //记录当前的设备id和分组id
|
|
|
//旧设备
|
|
|
if (message.modules == 0) {
|
|
@@ -2850,7 +2952,6 @@ Page({
|
|
|
})
|
|
|
//新设备在线状态
|
|
|
getDevice(message.Device, message.id).then(nrg => {
|
|
|
- console.log([message.Device,message.id])
|
|
|
if (nrg.data.code == 0) {
|
|
|
var nrg = nrg.data.data
|
|
|
if (nrg[0].status == 1) {
|
|
@@ -2862,7 +2963,7 @@ Page({
|
|
|
status: '离线'
|
|
|
})
|
|
|
}
|
|
|
- getloop(message.Device).then(suc => {
|
|
|
+ getloop(message.ID).then(suc => {
|
|
|
if (suc.data.code == 0) {
|
|
|
var suc = suc.data.data
|
|
|
var index = that.data.indexes
|
|
@@ -2872,15 +2973,26 @@ Page({
|
|
|
var newSwitch = that.data.newSwitch
|
|
|
var timeValue = that.data.timeValue
|
|
|
var newSwitchstate = that.data.newSwitchstate
|
|
|
- var weather = that.data.weather
|
|
|
- //光控开启条件(天气)
|
|
|
- for (let q = 0; q < weather.length; q++) {
|
|
|
- if (Suc.lightControlCondition == weather[q]) {
|
|
|
- that.setData({
|
|
|
- wIndex: q
|
|
|
- })
|
|
|
+ var choice = that.data.choice
|
|
|
+ //光控启动条件
|
|
|
+ var light = Suc.lightControlCondition.split(',')
|
|
|
+ for(let i = 0;i < light.length; i++){
|
|
|
+ switch(light[i]){
|
|
|
+ case '晴天':
|
|
|
+ choice[0] = true
|
|
|
+ break;
|
|
|
+ case '多云':
|
|
|
+ choice[1] = true
|
|
|
+ break;
|
|
|
+ case '阴天':
|
|
|
+ choice[2] = true
|
|
|
+ break;
|
|
|
+ case '大阴天':
|
|
|
+ choice[3] = true
|
|
|
+ break;
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
+ that.setData({choice:choice})
|
|
|
//时控1
|
|
|
if (Suc.timeCondition1Switch == 1) {
|
|
|
newSwitch[0] = true
|
|
@@ -2928,6 +3040,7 @@ Page({
|
|
|
var newfonts = that.data.newfont
|
|
|
var newcolors = that.data.newcolor
|
|
|
var newSwitchstates = that.data.newSwitchstate
|
|
|
+ var disableds = that.data.disabled
|
|
|
if (newSwitchs[0] == true) {
|
|
|
newfonts[0] = "white"
|
|
|
newcolors[0] = "blue"
|
|
@@ -2950,16 +3063,19 @@ Page({
|
|
|
newfonts[2] = "white"
|
|
|
newcolors[2] = "blue"
|
|
|
newSwitchstates[2] = "time"
|
|
|
+ disableds = false
|
|
|
} else {
|
|
|
newfonts[2] = "#cccccc"
|
|
|
newcolors[2] = "#888888"
|
|
|
newSwitchstates[2] = ""
|
|
|
+ disableds = true
|
|
|
}
|
|
|
that.setData({
|
|
|
newcolor: newcolors,
|
|
|
newfont: newfonts,
|
|
|
newSwitch: newSwitchs,
|
|
|
- newSwitchstate: newSwitchstates
|
|
|
+ newSwitchstate: newSwitchstates,
|
|
|
+ disabled:disableds
|
|
|
})
|
|
|
}
|
|
|
}
|