control.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. const {postData} = require('../api/intell')
  2. const {putDevice} = require('../api/device')
  3. function getlooplist(){
  4. var group = wx.getStorageSync('group')
  5. //获取分组下拉
  6. var groups = []//分组列表
  7. var device = []//设备列表
  8. for(let i = 0;i < group.length;i++){
  9. groups.push(group[i].groupName)
  10. }
  11. //改变分组下标
  12. if(wx.getStorageSync('groupName') != ''){
  13. for(let n = 0;n < groups.length;n++){
  14. if(groups[n] == wx.getStorageSync('groupName')){
  15. var groupsIndex = n//分组下标
  16. }
  17. }
  18. }
  19. for(let j = 0;j < group.length;j++){
  20. if(groups[groupsIndex] == group[j].groupName){
  21. if(group[j].devices != null && group[j].devices.length != 0){
  22. for(let p = 0;p < group[j].devices.length;p++){
  23. device.push(group[j].devices[p].deviceName)
  24. }
  25. if(wx.getStorageSync('deviceName') != ''){
  26. for(let m = 0;m < device.length;m++){
  27. if(device[m] == wx.getStorageSync('deviceName')){
  28. var deviceIndex = m//设备下标
  29. }
  30. }
  31. }
  32. //根据分组名和设备名获取key和id以及回路名称
  33. for(let d = 0;d < group.length;d++){
  34. if(groups[groupsIndex] == group[d].groupName){
  35. for(let g = 0;g < group[d].devices.length;g++){
  36. if(device[deviceIndex] == group[d].devices[g].deviceName){
  37. var loopnum = group[d].devices[g].circuits
  38. var deviceId = group[d].devices[g].deviceId
  39. var deviceKey = group[d].devices[g].deviceKey
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }
  46. }
  47. return [groups,groupsIndex,device,deviceIndex,loopnum,deviceId,deviceKey]
  48. }
  49. //回路开/关
  50. function Switch(deviceId,deviceKey,Rel){
  51. postData(deviceId,deviceKey,Rel).then(res => {
  52. if(res.data.errno == 10){
  53. wx.showModal({
  54. title:'错误',
  55. content:'设备处于离线状态',
  56. showCancel:false
  57. })
  58. }
  59. })
  60. }
  61. //回路开/关读取
  62. function switchReal(police,lamp,index){
  63. switch(police.length){
  64. case 1:
  65. police = '000' + police
  66. break;
  67. case 2:
  68. police = '00' + police
  69. break;
  70. case 3:
  71. police = '0' + police
  72. break;
  73. default:
  74. police = police
  75. break;
  76. }
  77. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  78. lamp[index] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  79. }
  80. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  81. lamp[index] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  82. }
  83. return lamp
  84. }
  85. //回路名称调整(未解决)
  86. function loopname(deviceid,groupid,loop,loops,slice,groupName,deviceName,group,content){
  87. if(content == ''){
  88. wx.showModal({
  89. title:'提示',
  90. content:'请输入名称',
  91. showCancel:false
  92. })
  93. }
  94. else if(content.length > 10){
  95. wx.showModal({
  96. title:'提示',
  97. content:'回路名称不能大于10个字符',
  98. showCancel:false
  99. })
  100. }
  101. else{
  102. loop[0] = content
  103. slice = loop.slice(0,loops)
  104. slice = slice.toString()
  105. putDevice({id:deviceid,groupId:groupid,circuits:slice}).then(ever => {
  106. if(ever.data.code == 200){
  107. for(let i = 0;i < group.length;i++){
  108. if(groupName == group[i].groupName){
  109. for(let j = 0;j < group[i].devices.length;j++){
  110. if(deviceName == group[i].devices[j].deviceName){
  111. group[i].devices[j].circuits = slice
  112. wx.setStorageSync('group', group)
  113. return loop
  114. }
  115. }
  116. }
  117. }
  118. }
  119. else{
  120. wx.showModal({
  121. title:'错误',
  122. content:ever.data.msg,
  123. showCancel:false
  124. })
  125. }
  126. })
  127. }
  128. }
  129. module.exports = {
  130. getlooplist:getlooplist,
  131. Switch:Switch,
  132. switchReal:switchReal,
  133. loopname:loopname,
  134. }