loop.js 10 KB

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