123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925 |
- // pages/control/control.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- statu:false,
- status:"离线",
- Title:"",
- quantity:"",//回路数量
- Color:[],//字体颜色
- Size:["calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)",
- "calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)",
- "calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)"],//字体大小
- lamp:[],//灯泡图标
- address:["","","","","","","","","","","",""],//修改回路名称图标
- loop:["回路1","回路2","回路3","回路4","回路5","回路6","回路7","回路8",
- "回路9","回路10","回路11","回路12"],//回路名称
- loops:"",//用于记录回路数量
- Loop:[],//用于向回路界面传递回路名称
- Modecontrol:"",
- groupName:[],
- deviceName:[],
- groupIndex:0,
- deviceIndex:0,
- deviceId:'',
- deviceKey:''
- },
- //回路开
- Open(e){
- var that = this
- var lamp = wx.getStorageSync('lamp')
- if(e.target.dataset.open == 1){
- lamp[0] = "/image/lamp1.png"
- wx.setStorageSync('lamp', lamp)
- that.setData({lamp:wx.getStorageSync('lamp')})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R1_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 2 && that.data.loops == "2") {
- lamp[1] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R2_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 3 && that.data.loops == "3") {
- lamp[2] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R3_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 4 && that.data.loops == "4") {
- lamp[3] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R4_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 5 && that.data.loops == "5") {
- lamp[4] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R5_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 6 && that.data.loops == "6") {
- lamp[5] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R6_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 7 && that.data.loops == "7") {
- lamp[6] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R7_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 8 && that.data.loops == "8") {
- lamp[7] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R8_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 9 && that.data.loops == "9") {
- lamp[8] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R9_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 10 && that.data.loops == "10") {
- lamp[9] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R10_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 11 && that.data.loops == "11") {
- lamp[10] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R11_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.open == 12 && that.data.loops == "12") {
- lamp[11] = "/image/lamp1.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R12_RelayStatus':13
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- },
- //回路关
- Shut(e){
- var that = this
- var lamp = that.data.lamp
- if(e.target.dataset.shut == 1){
- lamp[0] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R1_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 2 && that.data.loops == "2") {
- lamp[1] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R2_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 3 && that.data.loops == "3") {
- lamp[2] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R3_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 4 && that.data.loops == "4") {
- lamp[3] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R4_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 5 && that.data.loops == "5") {
- lamp[4] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R5_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 6 && that.data.loops == "6") {
- lamp[5] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R6_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 7 && that.data.loops == "7") {
- lamp[6] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R7_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 8 && that.data.loops == "8") {
- lamp[7] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R8_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 9 && that.data.loops == "9") {
- lamp[8] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R9_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 10 && that.data.loops == "10") {
- lamp[9] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R10_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 11 && that.data.loops == "11") {
- lamp[10] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R11_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- else if (e.target.dataset.shut == 12 && that.data.loops == "12") {
- lamp[11] = "/image/lamp.png"
- that.setData({lamp:lamp})
- wx.request({
- url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
- method:'POST',
- header:{"api-key": that.data.deviceKey},
- data:{
- 'R12_RelayStatus':12
- },
- success:res =>{
- console.log(res)
- }
- })
- }
- },
- //回路名称调整
- loopname(e){
- var address = this.data.address
- if (e.target.dataset.loopname == 1) {
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 2 && address[1] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 3 && address[2] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 4 && address[3] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 5 && address[4] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 6 && address[5] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 7 && address[6] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 8 && address[7] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 9 && address[8] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 10 && address[9] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 11 && address[10] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- else if(e.target.dataset.loopname == 12 && address[11] != ""){
- wx.showModal({
- title:'修改回路名称',
- editable:true,
- placeholderText:'请输入名称',
- success(res){
- if (res.confirm) {
- console.log(res.content)
- }
- }
- })
- }
- },
- //全开
- Fullopen:function(){
- var lamp = this.data.lamp
- for(let i = 0;i < this.data.loops; i++){
- lamp[i] = "/image/lamp1.png"
- this.setData({
- lamp:lamp
- })
- }
- },
- //全关
- Allclosed:function(){
- var lamp = this.data.lamp
- for(let i = 0;i < this.data.loops; i++){
- lamp[i] = "/image/lamp.png"
- this.setData({
- lamp:lamp
- })
- }
- },
- //分组下拉
- changegroup:function(e){
- var that = this
- that.setData({
- groupIndex:e.detail.value
- })
- var groupName = that.data.groupName[that.data.groupIndex]//选择的分组名称
- var group = wx.getStorageSync('group')
- var deviceName = that.data.deviceName
- var deviceName = []
- for(let i = 0;i < group.length;i++){
- if(group[i].name == groupName){
- if(group[i].device.length != 0){
- for(let j = 0;j < group[i].device.length;j++){
- deviceName.push(group[i].device[j].deviceName)
- }
- }
- }
- }
- this.setData({
- deviceName:deviceName
- })
- //重新获取分组名和设备名
- if(that.data.deviceName.length != 0){
- var groupNames = that.data.groupName[that.data.groupIndex]
- var deviceNames = that.data.deviceName[that.data.deviceIndex]
- for(let d = 0;d < group.length;d++){
- if(groupNames == group[d].name){
- for(let g = 0;g < group[d].device.length;g++){
- if(deviceNames == group[d].device[g].deviceName){
- var deviceId = group[d].device[g].deviceId
- var deviceKey = group[d].device[g].deviceKey
- }
- }
- }
- }
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId,
- method:'GET',
- header:{"api-key": deviceKey},
- success:(res) =>{
- if (res.data.data.online == true) {
- that.setData({
- status:"在线"
- })
- }
- else{
- that.setData({
- status:"离线"
- })
- }
- }
- })
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
- header:{"api-key": deviceKey},
- method:'GET',
- success:(res) => {
- let {data} = res.data
- for(let i = 0;i < data.length;i++){
- if (data[i].id == "RelayCount") {
- var quantity = data[i].current_value
- }
- else if(data[i].id == "ManualStatus"){
- if(data[i].current_value == 0){
- that.setData({
- Modecontrol:"自动"
- })
- }
- else{
- that.setData({
- Modecontrol:"手动"
- })
- }
- }
- }
- for (let i = 0;i < quantity; i++) {
- var Loop = that.data.Loop
- var color = that.data.Color
- var size = that.data.Size
- var Address = that.data.address
- Loop[i] = that.data.loop[i]
- color[i] = "black"
- size[i] = "calc(100vw * 16/375)",
- Address[i] = "/image/modify.png"
- that.setData({
- Color:color,
- Size:size,
- address:Address,
- loops:quantity,
- Loop:Loop
- })
- }
- // let setloop = that.data.Loop
- // getApp().globalData.setloop = setloop
- // wx.switchTab({
- // url:'/pages/loop/loop',
- // })
- }
- })
- }
- },
- //设备下拉
- changedevice:function(e){
- var that = this
- that.setData({
- deviceIndex:e.detail.value
- })
- var group = wx.getStorageSync('group')
- var groupName = that.data.groupName[that.data.groupIndex]
- var deviceName = that.data.deviceName[that.data.deviceIndex]
- for (let index = 0; index < group.length; index++) {
- if(groupName == group[index].name){
- for(let t = 0;t < group[index].device.length;t++){
- if(deviceName == group[index].device[t].deviceName){
- var deviceId = group[index].device[t].deviceId
- var deviceKey = group[index].device[t].deviceKey
- }
- }
- }
- }
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId,
- method:'GET',
- header:{"api-key": deviceKey},
- success:(res) =>{
- if (res.data.data.online == true) {
- that.setData({
- status:"在线"
- })
- }
- else{
- that.setData({
- status:"离线"
- })
- }
- }
- })
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
- header:{"api-key": deviceKey},
- method:'GET',
- success:(res) => {
- let {data} = res.data
- for(let i = 0;i < data.length;i++){
- if (data[i].id == "RelayCount") {
- var quantity = data[i].current_value
- }
- else if(data[i].id == "ManualStatus"){
- if(data[i].current_value == 0){
- that.setData({
- Modecontrol:"自动"
- })
- }
- else{
- that.setData({
- Modecontrol:"手动"
- })
- }
- }
- }
- for (let i = 0;i < quantity; i++) {
- var Loop = that.data.Loop
- var color = that.data.Color
- var size = that.data.Size
- var Address = that.data.address
- Loop[i] = that.data.loop[i]
- color[i] = "black"
- size[i] = "calc(100vw * 16/375)",
- Address[i] = "/image/modify.png"
- that.setData({
- Color:color,
- Size:size,
- address:Address,
- loops:quantity,
- Loop:Loop
- })
- }
- // let setloop = that.data.Loop
- // getApp().globalData.setloop = setloop
- // wx.switchTab({
- // url:'/pages/loop/loop',
- // })
- }
- })
- },
- //修改回路名称
-
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- var that = this
- if(wx.getStorageSync('lamp') == ''){
- wx.setStorageSync('lamp', [])
- var lamp = wx.getStorageSync('lamp')
- for(let h = 0;h < 12;h++){
- lamp.push("/image/lamp.png")
- }
- }
- wx.setStorageSync('lamp',lamp)
- that.setData({
- lamp:wx.getStorageSync('lamp')
- })
- if(that.data.groupName.length == 0){
- var group = wx.getStorageSync('group')
- var groups = []
- var device = []
- for(let i = 0;i < group.length;i++){
- groups.push(group[i].name)
- }
- that.setData({
- groupName:groups
- })
- var groupName = that.data.groupName
- var groupIndex = that.data.groupIndex
- for(let j = 0;j < group.length;j++){
- if(groupName[groupIndex] == group[j].name){
- for(let p = 0;p < group[j].device.length;p++){
- device.push(group[j].device[p].deviceName)
- }
- }
- }
- that.setData({
- deviceName:device
- })
- var groupNames = that.data.groupName[that.data.groupIndex]
- var deviceNames = that.data.deviceName[that.data.deviceIndex]
- for(let d = 0;d < group.length;d++){
- if(groupNames == group[d].name){
- for(let g = 0;g < group[d].device.length;g++){
- if(deviceNames == group[d].device[g].deviceName){
- var deviceId = group[d].device[g].deviceId
- var deviceKey = group[d].device[g].deviceKey
- }
- }
- }
- }
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId,
- method:'GET',
- header:{"api-key": deviceKey},
- success:(res) =>{
- if (res.data.data.online == true) {
- that.setData({
- status:"在线"
- })
- }
- else{
- that.setData({
- status:"离线"
- })
- }
- }
- })
- for(let i=0;i < 12;i++){this.data.Color[i] = "#cccccc"}
- wx.request({
- url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
- header:{"api-key": deviceKey},
- method:'GET',
- success:(res) => {
- let {data} = res.data
- for(let i = 0;i < data.length;i++){
- if (data[i].id == "RelayCount") {
- var quantity = data[i].current_value
- }
- else if(data[i].id == "ManualStatus"){
- if(data[i].current_value == 0){
- that.setData({
- Modecontrol:"自动"
- })
- }
- else{
- that.setData({
- Modecontrol:"手动"
- })
- }
- }
- }
- for (let i = 0;i < quantity; i++) {
- var Loop = that.data.Loop
- var color = that.data.Color
- var size = that.data.Size
- var Address = that.data.address
- Loop[i] = that.data.loop[i]
- color[i] = "black"
- size[i] = "calc(100vw * 16/375)",
- Address[i] = "/image/modify.png"
- that.setData({
- Color:color,
- Size:size,
- address:Address,
- loops:quantity,
- Loop:Loop
- })
- }
- // let setloop = that.data.Loop
- // getApp().globalData.setloop = setloop
- // wx.switchTab({
- // url:'/pages/loop/loop',
- // })
- }
- })
- }
- that.setData({
- deviceId:deviceId,
- deviceKey:deviceKey
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- }
- })
|