control.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. const {postData} = require('../api/intell')
  2. const {putDevice,loopSwitch,loopSwitchstate} = 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 newSwitch(swit){
  87. loopSwitch(swit).then(res =>{
  88. if(res.data.code != 0){
  89. wx.showModal({
  90. title:'错误',
  91. content:res.data.msg,
  92. showCancel:false
  93. })
  94. }
  95. })
  96. }
  97. //回路开/关读取(新设备)
  98. function newswitchReal(Device,relayid){
  99. loopSwitchstate(Device,relayid).then(res=>{
  100. if(res.data.code == 0){
  101. var relay = res.data.data
  102. if(relay[0].status == 1){
  103. let ever = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  104. console.log(ever)
  105. return ever
  106. }
  107. else{
  108. let ever = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  109. return ever
  110. }
  111. }
  112. else{
  113. wx.showModal({
  114. title:'错误',
  115. content:res.data.msg,
  116. showCancel:false
  117. })
  118. }
  119. })
  120. }
  121. //回路名称调整(未解决)
  122. function loopname(deviceid,groupid,loop,loops,slice,groupName,deviceName,group,content){
  123. if(content == ''){
  124. wx.showModal({
  125. title:'提示',
  126. content:'请输入名称',
  127. showCancel:false
  128. })
  129. }
  130. else if(content.length > 10){
  131. wx.showModal({
  132. title:'提示',
  133. content:'回路名称不能大于10个字符',
  134. showCancel:false
  135. })
  136. }
  137. else{
  138. loop[0] = content
  139. slice = loop.slice(0,loops)
  140. slice = slice.toString()
  141. putDevice({id:deviceid,groupId:groupid,circuits:slice}).then(ever => {
  142. if(ever.data.code == 200){
  143. for(let i = 0;i < group.length;i++){
  144. if(groupName == group[i].groupName){
  145. for(let j = 0;j < group[i].devices.length;j++){
  146. if(deviceName == group[i].devices[j].deviceName){
  147. group[i].devices[j].circuits = slice
  148. wx.setStorageSync('group', group)
  149. return loop
  150. }
  151. }
  152. }
  153. }
  154. }
  155. else{
  156. wx.showModal({
  157. title:'错误',
  158. content:ever.data.msg,
  159. showCancel:false
  160. })
  161. }
  162. })
  163. }
  164. }
  165. //分组下拉和设备下拉的获取(主页界面)
  166. function droplist(){
  167. var group = wx.getStorageSync('group')
  168. //获取分组下拉
  169. var groups = []
  170. for(let i = 0;i < group.length;i++){
  171. groups.push(group[i].groupName)
  172. }
  173. //改变分组下标
  174. if(wx.getStorageSync('groupName') != ''){
  175. let GroupName = that.data.groupName
  176. for(let n = 0;n < GroupName.length;n++){
  177. if(GroupName[n] == wx.getStorageSync('groupName')){
  178. var groupIndex = n
  179. }
  180. }
  181. }
  182. else{wx.setStorageSync('groupName',that.data.groupName[that.data.groupIndex])}
  183. //获取设备下拉
  184. var device = []
  185. var groupName = that.data.groupName
  186. var groupIndex = that.data.groupIndex
  187. for(let j = 0;j < group.length;j++){
  188. if(groupName[groupIndex] == group[j].groupName){
  189. if(group[j].devices != null && group[j].devices.length != 0){
  190. for(let p = 0;p < group[j].devices.length;p++){
  191. device.push(group[j].devices[p].deviceName)
  192. }
  193. that.setData({deviceName:device})
  194. //改变设备下标
  195. if(wx.getStorageSync('deviceName') != ''){
  196. var DeviceName = that.data.deviceName
  197. for(let m = 0;m < DeviceName.length;m++){
  198. if(DeviceName[m] == wx.getStorageSync('deviceName')){
  199. that.setData({
  200. deviceIndex:m
  201. })
  202. }
  203. }
  204. }
  205. else{
  206. wx.setStorageSync('deviceName', that.data.deviceName[that.data.deviceIndex])
  207. }
  208. }
  209. }
  210. }
  211. }
  212. //刷新主页界面的显示
  213. function Refresh(){
  214. //重置状态
  215. let loopName = []//回路名称
  216. let loopIcon = []//回路图标
  217. let switchState = []//开关状态
  218. let size = []//字体大小
  219. let fontColor = []//字体颜色
  220. for(let p = 0;p < 12;p++){
  221. loopName.push('回路' + (p+1))
  222. loopIcon.push('')
  223. switchState.push('https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png')
  224. size.push('calc(100vw * 16/375)')
  225. fontColor.push('#d5dbdf')
  226. }
  227. let combination = [loopName,loopIcon,switchState,size,fontColor]
  228. return combination
  229. }
  230. module.exports = {
  231. getlooplist:getlooplist,
  232. Switch:Switch,
  233. switchReal:switchReal,
  234. loopname:loopname,
  235. Refresh:Refresh,
  236. newSwitch:newSwitch,
  237. newswitchReal:newswitchReal
  238. }