loop.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. const {getloop,getDevice} = require ('../api/device')
  2. // 分组下拉
  3. function Groupdrop() {
  4. var group = wx.getStorageSync('group')
  5. var groups = []
  6. for (let i = 0; i < group.length; i++) {
  7. groups.push(group[i].groupName)
  8. }
  9. //改变分组下标
  10. if (wx.getStorageSync('groupName') != '') {
  11. let GroupName = groups
  12. for (let n = 0; n < GroupName.length; n++) {
  13. if (GroupName[n] == wx.getStorageSync('groupName')) {
  14. return {n,groups}
  15. }
  16. }
  17. } else {
  18. wx.setStorageSync('groupName', groups[0])
  19. return {
  20. groups
  21. }
  22. }
  23. }
  24. //设备下拉
  25. function Devicedrop(groupName, groupIndex) {
  26. var group = wx.getStorageSync('group')
  27. var device = []
  28. for (let j = 0; j < group.length; j++) {
  29. if (groupName[groupIndex] == group[j].groupName) {
  30. if (group[j].devices != null && group[j].devices.length != 0) {
  31. for (let p = 0; p < group[j].devices.length; p++) {
  32. device.push(group[j].devices[p].deviceName)
  33. }
  34. if (wx.getStorageSync('deviceName') != '') {
  35. for (let m = 0; m < device.length; m++) {
  36. if (device[m] == wx.getStorageSync('deviceName')) {
  37. return {m,device}
  38. }
  39. }
  40. } else {
  41. wx.setStorageSync('deviceName', device[0])
  42. return {device}
  43. }
  44. } else {
  45. return '离线'
  46. }
  47. }
  48. }
  49. }
  50. //设备id,key
  51. function deviceMessage(groupNames, deviceNames) {
  52. var group = wx.getStorageSync('group')
  53. for (let d = 0; d < group.length; d++) {
  54. if (groupNames == group[d].groupName) {
  55. var id = group[d].id
  56. for (let g = 0; g < group[d].devices.length; g++) {
  57. if (deviceNames == group[d].devices[g].deviceName) {
  58. var Device = group[d].devices[g].id
  59. //旧设备
  60. if (group[d].devices[g].module == 0) {
  61. var loopnum = group[d].devices[g].circuits
  62. var deviceId = group[d].devices[g].deviceId
  63. var deviceKey = group[d].devices[g].deviceKey
  64. var modules = group[d].devices[g].module
  65. return {loopnum, deviceId, deviceKey, modules}
  66. //新设备
  67. } else {
  68. var loopNum = group[d].devices[g].circuits
  69. var loopnum = loopNum.split(',')
  70. var modules = group[d].devices[g].module
  71. return {id,Device,loopnum,modules}
  72. }
  73. }
  74. }
  75. }
  76. }
  77. }
  78. //旧设备信息
  79. function deviceinfo(data,loopnum,arr,brr,time,state,state1,
  80. fixed1,fixed2,fixed3,fixed4,address,
  81. radio1,radio2,radio3,index,indexs) {
  82. //以下为回路
  83. for (let i = 1; i < data.length; i++) {
  84. //回路数量
  85. if (data[i].id == "RelayCount") {
  86. var num = data[i].current_value
  87. num = parseInt(num)
  88. loopnum = loopnum.split(',')
  89. var num1 = []
  90. for (let a = 0; a < num; a++) {
  91. num1.push(loopnum[a])
  92. }
  93. num1.push('所有回路')
  94. var crr = num1
  95. }
  96. //时控一开时间
  97. else if (data[i].id == "R1_DayOpenTime1") {
  98. var timeopen1 = data[i].current_value
  99. }
  100. //时控一关时间
  101. else if (data[i].id == "R1_DayCloseTime1") {
  102. var timeshut1 = data[i].current_value
  103. }
  104. //时控二开时间
  105. else if (data[i].id == "R1_DayOpenTime2") {
  106. var timeopen2 = data[i].current_value
  107. }
  108. //时控二关时间
  109. else if (data[i].id == "R1_DayCloseTime2") {
  110. var timeshut2 = data[i].current_value
  111. }
  112. //日期调控
  113. else if (data[i].id == "R1_Week") {
  114. var weeks = data[i].current_value
  115. var recorddate = weeks
  116. weeks = parseInt(weeks)
  117. weeks = weeks.toString(2)
  118. weeks = weeks + ''
  119. }
  120. //功能1
  121. else if (data[i].id == "R1_FunctionStatus1") {
  122. var Function1 = data[i].current_value
  123. var par = parseInt(Function1)
  124. par = par.toString(2)
  125. par = par + ''
  126. switch (par.length) {
  127. case 1:
  128. par = '00000' + par
  129. break;
  130. case 2:
  131. par = '0000' + par
  132. break;
  133. case 3:
  134. par = '000' + par
  135. break;
  136. case 4:
  137. par = '00' + par
  138. break;
  139. case 5:
  140. par = '0' + par
  141. break;
  142. default:
  143. par = par
  144. }
  145. }
  146. //功能二
  147. else if (data[i].id == "R1_FunctionStatus2") {
  148. var Function2 = data[i].current_value
  149. var qur = parseInt(Function2)
  150. qur = qur.toString(2)
  151. qur = qur + ''
  152. switch (qur.length) {
  153. case 1:
  154. qur = '000' + qur
  155. break;
  156. case 2:
  157. qur = '00' + qur
  158. break;
  159. case 3:
  160. qur = '0' + qur
  161. break;
  162. case 4:
  163. qur = qur
  164. break;
  165. }
  166. }
  167. //报警
  168. else if (data[i].id == "R1_RelayStatus") {
  169. var police = data[i].current_value
  170. }
  171. //光控开
  172. else if (data[i].id == "R1_LcOn") {
  173. var Lightcontrolopen = data[i].current_value
  174. for (let i = 0; i < 100; i++) {
  175. arr[i] = i
  176. }
  177. Lightcontrolopen = parseInt(Lightcontrolopen)
  178. var index = Lightcontrolopen
  179. }
  180. //光控关
  181. else if (data[i].id == "R1_LcOff") {
  182. var Lightcontrolshut = data[i].current_value
  183. for (let j = 0; j < 100; j++) {
  184. brr[j] = j
  185. }
  186. Lightcontrolshut = parseInt(Lightcontrolshut)
  187. var indexs = Lightcontrolshut
  188. }
  189. }
  190. //时控一开时间
  191. var timeOpen1
  192. switch (timeopen1.length) {
  193. case 1:
  194. timeOpen1 = '00' + ':' + '0' + timeopen1.substring(0, 1)
  195. break;
  196. case 2:
  197. timeOpen1 = '00' + ':' + timeopen1.substring(0, 2)
  198. break;
  199. case 3:
  200. var timeOpen1 = '0' + timeopen1.substring(0, 1) + ':' + timeopen1.substring(1, 3)
  201. break;
  202. case 4:
  203. var timeOpen1 = timeopen1.substring(0, 2) + ':' + timeopen1.substring(2, 4)
  204. break;
  205. }
  206. //时控一关时间
  207. var timeShut1
  208. switch (timeshut1.length) {
  209. case 1:
  210. timeShut1 = '00' + ':' + '0' + timeshut1.substring(0, 1)
  211. break;
  212. case 2:
  213. timeShut1 = '00' + ':' + timeshut1.substring(0, 2)
  214. break;
  215. case 3:
  216. var timeShut1 = '0' + timeshut1.substring(0, 1) + ':' + timeshut1.substring(1, 3)
  217. break;
  218. case 4:
  219. var timeShut1 = timeshut1.substring(0, 2) + ':' + timeshut1.substring(2, 4)
  220. break;
  221. }
  222. //时控二开时间
  223. var timeOpen2
  224. switch (timeopen2.length) {
  225. case 1:
  226. timeOpen2 = '00' + ':' + '0' + timeopen2.substring(0, 1)
  227. break;
  228. case 2:
  229. timeOpen2 = '00' + ':' + timeopen2.substring(0, 2)
  230. break;
  231. case 3:
  232. var timeOpen2 = '0' + timeopen2.substring(0, 1) + ':' + timeopen2.substring(1, 3)
  233. break;
  234. case 4:
  235. var timeOpen2 = timeopen2.substring(0, 2) + ':' + timeopen2.substring(2, 4)
  236. break;
  237. }
  238. //时控二关时间
  239. var timeShut2
  240. switch (timeshut2.length) {
  241. case 1:
  242. timeShut2 = '00' + ':' + '0' + timeshut2.substring(0, 1)
  243. break;
  244. case 2:
  245. timeShut2 = '00' + ':' + timeshut2.substring(0, 2)
  246. break;
  247. case 3:
  248. var timeShut2 = '0' + timeshut2.substring(0, 1) + ':' + timeshut2.substring(1, 3)
  249. break;
  250. case 4:
  251. var timeShut2 = timeshut2.substring(0, 2) + ':' + timeshut2.substring(2, 4)
  252. break;
  253. }
  254. //功能1
  255. for (var i = 0; i < par.length; i++) {
  256. switch (par.substring(i, i + 1)) {
  257. case "0":
  258. switch (i) {
  259. case 0:
  260. state[3] = false
  261. break;
  262. case 1:
  263. state[2] = false
  264. break;
  265. case 2:
  266. fixed2 = "固定"
  267. break;
  268. case 3:
  269. fixed1 = "固定"
  270. break;
  271. case 4:
  272. state[1] = false
  273. break;
  274. case 5:
  275. state[0] = false
  276. break;
  277. }
  278. break;
  279. case "1":
  280. switch (i) {
  281. case 0:
  282. state[3] = true
  283. break;
  284. case 1:
  285. state[2] = true
  286. break;
  287. case 2:
  288. fixed2 = "经纬"
  289. break;
  290. case 3:
  291. fixed1 = "经纬"
  292. break;
  293. case 4:
  294. state[1] = true
  295. break;
  296. case 5:
  297. state[0] = true
  298. break;
  299. }
  300. break;
  301. }
  302. }
  303. //功能2
  304. for (let j = 0; j < qur.length; j++) {
  305. switch (qur.substring(j, j + 1)) {
  306. case "0":
  307. switch (j) {
  308. case 0:
  309. fixed4 = "固定"
  310. break;
  311. case 1:
  312. fixed3 = "固定"
  313. break;
  314. case 2:
  315. state1[1] = false
  316. break;
  317. case 3:
  318. state1[0] = false
  319. break;
  320. }
  321. break;
  322. case "1":
  323. switch (j) {
  324. case 0:
  325. fixed4 = "经纬"
  326. break;
  327. case 1:
  328. fixed3 = "经纬"
  329. break;
  330. case 2:
  331. state1[1] = true
  332. break;
  333. case 3:
  334. state1[0] = true
  335. break;
  336. }
  337. break;
  338. }
  339. }
  340. //日期调控
  341. if (weeks == '0') {
  342. for (let x = 0; x < weeks.length; x++) {
  343. address[x] = "/image/false.png"
  344. }
  345. } else {
  346. for (let i = 0; i < weeks.length; i++) {
  347. switch (weeks.substring(i, i + 1)) {
  348. case '0':
  349. address[weeks.length - i - 1] = "/image/false.png"
  350. break;
  351. case '1':
  352. address[weeks.length - i - 1] = "/image/true.png"
  353. break;
  354. }
  355. }
  356. }
  357. //报警状态
  358. police = parseInt(police)
  359. police = police.toString(2)
  360. switch (police.length) {
  361. case 1:
  362. police = '000' + police
  363. break;
  364. case 2:
  365. police = '00' + police
  366. break;
  367. case 3:
  368. police = '0' + police
  369. break;
  370. default:
  371. police = police
  372. break;
  373. }
  374. if (police.substring(1, 2) == '0' && police.substring(0, 1) == '0') {
  375. radio1 = true
  376. } else if (police.substring(1, 2) == '1' && police.substring(0, 1) == '0') {
  377. radio2 = true
  378. } else if (police.substring(1, 2) == '0' && police.substring(0, 1) == '1') {
  379. radio3 = true
  380. }
  381. time[0] = timeOpen1
  382. time[1] = timeShut1
  383. time[2] = timeOpen2
  384. time[3] = timeShut2
  385. return {crr,recorddate,arr,brr,time,state,state1,
  386. fixed1,fixed2,fixed3,fixed4,address,
  387. radio1,radio2,radio3,index,indexs}
  388. }
  389. //新设备信息
  390. function newDeviceinfo(Device,Group){
  391. getDevice(Device,Group).then(res => {
  392. })
  393. }
  394. //时间开关选择器(新设备)
  395. module.exports = {
  396. Groupdrop: Groupdrop,
  397. Devicedrop: Devicedrop,
  398. deviceMessage: deviceMessage,
  399. deviceinfo:deviceinfo,
  400. newDeviceinfo:newDeviceinfo
  401. }