|
@@ -93,7 +93,8 @@ Page({
|
|
|
choice: [],
|
|
|
lightlist: [], //新设备回路开启条件,
|
|
|
popup: false, //开启条件弹窗
|
|
|
- newChange: 0, //新设备回路固定经纬模式切换
|
|
|
+ openModal:'手动',
|
|
|
+ shutModal:'手动',
|
|
|
beginTime:'',
|
|
|
closeTimes:''
|
|
|
},
|
|
@@ -1678,37 +1679,18 @@ Page({
|
|
|
}
|
|
|
},
|
|
|
//新设备模式切换
|
|
|
- newChange: function(e) {
|
|
|
+ openModal(){
|
|
|
var that = this
|
|
|
- var beginTime = that.data.beginTime
|
|
|
- var closeTimes = that.data.closeTimes
|
|
|
- if (that.data.newChange == 0) {
|
|
|
- wx.showModal({
|
|
|
- title: '切换为经纬模式',
|
|
|
- content: '经纬时间:开启时间:' + beginTime + ',关闭时间:' + closeTimes,
|
|
|
- success(res) {
|
|
|
- if (res.confirm) {
|
|
|
- that.setData({
|
|
|
- newChange: 1
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- wx.showModal({
|
|
|
- title: '切换为手动模式',
|
|
|
- content: '经纬时间:开启时间:' + beginTime + ',关闭时间:' + closeTimes,
|
|
|
- success(res) {
|
|
|
- if (res.confirm) {
|
|
|
- that.setData({
|
|
|
- newChange: 0
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- },
|
|
|
+ var openModal = that.data.openModal
|
|
|
+ openModal = openModal == '手动' ? '经纬' : '手动'
|
|
|
+ that.setData({openModal:openModal})
|
|
|
+ },
|
|
|
+ shutModal(){
|
|
|
+ var that = this
|
|
|
+ var shutModal = that.data.shutModal
|
|
|
+ shutModal = shutModal == '手动' ? '经纬' : '手动'
|
|
|
+ that.setData({shutModal:shutModal})
|
|
|
+ },
|
|
|
//时间调控
|
|
|
//时控开关选择器(1-4旧设备,5-6新设备)
|
|
|
Controltime1: function() {
|
|
@@ -1787,29 +1769,6 @@ Page({
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
- Controltime5: function() {
|
|
|
- let newSwitch = this.data.newSwitch
|
|
|
- let newcolor = this.data.newcolor
|
|
|
- let newfont = this.data.newfont
|
|
|
- let newSwitchstate = this.data.newSwitchstate
|
|
|
- newSwitch[0] = !newSwitch[0]
|
|
|
- if (newSwitch[0] == true) {
|
|
|
- newcolor[0] = "blue"
|
|
|
- newfont[0] = "white"
|
|
|
- newSwitchstate[0] = "time"
|
|
|
- } else {
|
|
|
- newcolor[0] = "#888888"
|
|
|
- newfont[0] = "#cccccc"
|
|
|
- newSwitchstate[0] = ""
|
|
|
- }
|
|
|
- this.setData({
|
|
|
- newSwitch: newSwitch,
|
|
|
- newcolor: newcolor,
|
|
|
- newfont,
|
|
|
- newfont,
|
|
|
- newSwitchstate: newSwitchstate
|
|
|
- })
|
|
|
- },
|
|
|
Controltime6: function() {
|
|
|
let newSwitch = this.data.newSwitch
|
|
|
let newcolor = this.data.newcolor
|