control.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  1. // pages/control/control.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. statu:false,
  8. status:"离线",
  9. Title:"",
  10. quantity:"",//回路数量
  11. Color:[],//字体颜色
  12. Size:["calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)",
  13. "calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)",
  14. "calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)","calc(100vw * 12/375)"],//字体大小
  15. lamp:[],//灯泡图标
  16. address:["","","","","","","","","","","",""],//修改回路名称图标
  17. loop:["回路1","回路2","回路3","回路4","回路5","回路6","回路7","回路8",
  18. "回路9","回路10","回路11","回路12"],//回路名称
  19. loops:"",//用于记录回路数量
  20. Loop:[],//用于向回路界面传递回路名称
  21. Modecontrol:"",
  22. groupName:[],
  23. deviceName:[],
  24. groupIndex:0,
  25. deviceIndex:0,
  26. deviceId:'',
  27. deviceKey:''
  28. },
  29. //回路开
  30. Open(e){
  31. var that = this
  32. var lamp = wx.getStorageSync('lamp')
  33. if(e.target.dataset.open == 1){
  34. lamp[0] = "/image/lamp1.png"
  35. wx.setStorageSync('lamp', lamp)
  36. that.setData({lamp:wx.getStorageSync('lamp')})
  37. wx.request({
  38. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  39. method:'POST',
  40. header:{"api-key": that.data.deviceKey},
  41. data:{
  42. 'R1_RelayStatus':13
  43. },
  44. success:res =>{
  45. console.log(res)
  46. }
  47. })
  48. }
  49. else if (e.target.dataset.open == 2 && that.data.loops == "2") {
  50. lamp[1] = "/image/lamp1.png"
  51. that.setData({lamp:lamp})
  52. wx.request({
  53. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  54. method:'POST',
  55. header:{"api-key": that.data.deviceKey},
  56. data:{
  57. 'R2_RelayStatus':13
  58. },
  59. success:res =>{
  60. console.log(res)
  61. }
  62. })
  63. }
  64. else if (e.target.dataset.open == 3 && that.data.loops == "3") {
  65. lamp[2] = "/image/lamp1.png"
  66. that.setData({lamp:lamp})
  67. wx.request({
  68. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  69. method:'POST',
  70. header:{"api-key": that.data.deviceKey},
  71. data:{
  72. 'R3_RelayStatus':13
  73. },
  74. success:res =>{
  75. console.log(res)
  76. }
  77. })
  78. }
  79. else if (e.target.dataset.open == 4 && that.data.loops == "4") {
  80. lamp[3] = "/image/lamp1.png"
  81. that.setData({lamp:lamp})
  82. wx.request({
  83. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  84. method:'POST',
  85. header:{"api-key": that.data.deviceKey},
  86. data:{
  87. 'R4_RelayStatus':13
  88. },
  89. success:res =>{
  90. console.log(res)
  91. }
  92. })
  93. }
  94. else if (e.target.dataset.open == 5 && that.data.loops == "5") {
  95. lamp[4] = "/image/lamp1.png"
  96. that.setData({lamp:lamp})
  97. wx.request({
  98. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  99. method:'POST',
  100. header:{"api-key": that.data.deviceKey},
  101. data:{
  102. 'R5_RelayStatus':13
  103. },
  104. success:res =>{
  105. console.log(res)
  106. }
  107. })
  108. }
  109. else if (e.target.dataset.open == 6 && that.data.loops == "6") {
  110. lamp[5] = "/image/lamp1.png"
  111. that.setData({lamp:lamp})
  112. wx.request({
  113. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  114. method:'POST',
  115. header:{"api-key": that.data.deviceKey},
  116. data:{
  117. 'R6_RelayStatus':13
  118. },
  119. success:res =>{
  120. console.log(res)
  121. }
  122. })
  123. }
  124. else if (e.target.dataset.open == 7 && that.data.loops == "7") {
  125. lamp[6] = "/image/lamp1.png"
  126. that.setData({lamp:lamp})
  127. wx.request({
  128. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  129. method:'POST',
  130. header:{"api-key": that.data.deviceKey},
  131. data:{
  132. 'R7_RelayStatus':13
  133. },
  134. success:res =>{
  135. console.log(res)
  136. }
  137. })
  138. }
  139. else if (e.target.dataset.open == 8 && that.data.loops == "8") {
  140. lamp[7] = "/image/lamp1.png"
  141. that.setData({lamp:lamp})
  142. wx.request({
  143. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  144. method:'POST',
  145. header:{"api-key": that.data.deviceKey},
  146. data:{
  147. 'R8_RelayStatus':13
  148. },
  149. success:res =>{
  150. console.log(res)
  151. }
  152. })
  153. }
  154. else if (e.target.dataset.open == 9 && that.data.loops == "9") {
  155. lamp[8] = "/image/lamp1.png"
  156. that.setData({lamp:lamp})
  157. wx.request({
  158. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  159. method:'POST',
  160. header:{"api-key": that.data.deviceKey},
  161. data:{
  162. 'R9_RelayStatus':13
  163. },
  164. success:res =>{
  165. console.log(res)
  166. }
  167. })
  168. }
  169. else if (e.target.dataset.open == 10 && that.data.loops == "10") {
  170. lamp[9] = "/image/lamp1.png"
  171. that.setData({lamp:lamp})
  172. wx.request({
  173. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  174. method:'POST',
  175. header:{"api-key": that.data.deviceKey},
  176. data:{
  177. 'R10_RelayStatus':13
  178. },
  179. success:res =>{
  180. console.log(res)
  181. }
  182. })
  183. }
  184. else if (e.target.dataset.open == 11 && that.data.loops == "11") {
  185. lamp[10] = "/image/lamp1.png"
  186. that.setData({lamp:lamp})
  187. wx.request({
  188. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  189. method:'POST',
  190. header:{"api-key": that.data.deviceKey},
  191. data:{
  192. 'R11_RelayStatus':13
  193. },
  194. success:res =>{
  195. console.log(res)
  196. }
  197. })
  198. }
  199. else if (e.target.dataset.open == 12 && that.data.loops == "12") {
  200. lamp[11] = "/image/lamp1.png"
  201. that.setData({lamp:lamp})
  202. wx.request({
  203. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  204. method:'POST',
  205. header:{"api-key": that.data.deviceKey},
  206. data:{
  207. 'R12_RelayStatus':13
  208. },
  209. success:res =>{
  210. console.log(res)
  211. }
  212. })
  213. }
  214. },
  215. //回路关
  216. Shut(e){
  217. var that = this
  218. var lamp = that.data.lamp
  219. if(e.target.dataset.shut == 1){
  220. lamp[0] = "/image/lamp.png"
  221. that.setData({lamp:lamp})
  222. wx.request({
  223. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  224. method:'POST',
  225. header:{"api-key": that.data.deviceKey},
  226. data:{
  227. 'R1_RelayStatus':12
  228. },
  229. success:res =>{
  230. console.log(res)
  231. }
  232. })
  233. }
  234. else if (e.target.dataset.shut == 2 && that.data.loops == "2") {
  235. lamp[1] = "/image/lamp.png"
  236. that.setData({lamp:lamp})
  237. wx.request({
  238. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  239. method:'POST',
  240. header:{"api-key": that.data.deviceKey},
  241. data:{
  242. 'R2_RelayStatus':12
  243. },
  244. success:res =>{
  245. console.log(res)
  246. }
  247. })
  248. }
  249. else if (e.target.dataset.shut == 3 && that.data.loops == "3") {
  250. lamp[2] = "/image/lamp.png"
  251. that.setData({lamp:lamp})
  252. wx.request({
  253. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  254. method:'POST',
  255. header:{"api-key": that.data.deviceKey},
  256. data:{
  257. 'R3_RelayStatus':12
  258. },
  259. success:res =>{
  260. console.log(res)
  261. }
  262. })
  263. }
  264. else if (e.target.dataset.shut == 4 && that.data.loops == "4") {
  265. lamp[3] = "/image/lamp.png"
  266. that.setData({lamp:lamp})
  267. wx.request({
  268. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  269. method:'POST',
  270. header:{"api-key": that.data.deviceKey},
  271. data:{
  272. 'R4_RelayStatus':12
  273. },
  274. success:res =>{
  275. console.log(res)
  276. }
  277. })
  278. }
  279. else if (e.target.dataset.shut == 5 && that.data.loops == "5") {
  280. lamp[4] = "/image/lamp.png"
  281. that.setData({lamp:lamp})
  282. wx.request({
  283. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  284. method:'POST',
  285. header:{"api-key": that.data.deviceKey},
  286. data:{
  287. 'R5_RelayStatus':12
  288. },
  289. success:res =>{
  290. console.log(res)
  291. }
  292. })
  293. }
  294. else if (e.target.dataset.shut == 6 && that.data.loops == "6") {
  295. lamp[5] = "/image/lamp.png"
  296. that.setData({lamp:lamp})
  297. wx.request({
  298. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  299. method:'POST',
  300. header:{"api-key": that.data.deviceKey},
  301. data:{
  302. 'R6_RelayStatus':12
  303. },
  304. success:res =>{
  305. console.log(res)
  306. }
  307. })
  308. }
  309. else if (e.target.dataset.shut == 7 && that.data.loops == "7") {
  310. lamp[6] = "/image/lamp.png"
  311. that.setData({lamp:lamp})
  312. wx.request({
  313. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  314. method:'POST',
  315. header:{"api-key": that.data.deviceKey},
  316. data:{
  317. 'R7_RelayStatus':12
  318. },
  319. success:res =>{
  320. console.log(res)
  321. }
  322. })
  323. }
  324. else if (e.target.dataset.shut == 8 && that.data.loops == "8") {
  325. lamp[7] = "/image/lamp.png"
  326. that.setData({lamp:lamp})
  327. wx.request({
  328. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  329. method:'POST',
  330. header:{"api-key": that.data.deviceKey},
  331. data:{
  332. 'R8_RelayStatus':12
  333. },
  334. success:res =>{
  335. console.log(res)
  336. }
  337. })
  338. }
  339. else if (e.target.dataset.shut == 9 && that.data.loops == "9") {
  340. lamp[8] = "/image/lamp.png"
  341. that.setData({lamp:lamp})
  342. wx.request({
  343. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  344. method:'POST',
  345. header:{"api-key": that.data.deviceKey},
  346. data:{
  347. 'R9_RelayStatus':12
  348. },
  349. success:res =>{
  350. console.log(res)
  351. }
  352. })
  353. }
  354. else if (e.target.dataset.shut == 10 && that.data.loops == "10") {
  355. lamp[9] = "/image/lamp.png"
  356. that.setData({lamp:lamp})
  357. wx.request({
  358. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  359. method:'POST',
  360. header:{"api-key": that.data.deviceKey},
  361. data:{
  362. 'R10_RelayStatus':12
  363. },
  364. success:res =>{
  365. console.log(res)
  366. }
  367. })
  368. }
  369. else if (e.target.dataset.shut == 11 && that.data.loops == "11") {
  370. lamp[10] = "/image/lamp.png"
  371. that.setData({lamp:lamp})
  372. wx.request({
  373. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  374. method:'POST',
  375. header:{"api-key": that.data.deviceKey},
  376. data:{
  377. 'R11_RelayStatus':12
  378. },
  379. success:res =>{
  380. console.log(res)
  381. }
  382. })
  383. }
  384. else if (e.target.dataset.shut == 12 && that.data.loops == "12") {
  385. lamp[11] = "/image/lamp.png"
  386. that.setData({lamp:lamp})
  387. wx.request({
  388. url: 'https://api.heclouds.com/cmds?device_id=' + that.data.deviceId,
  389. method:'POST',
  390. header:{"api-key": that.data.deviceKey},
  391. data:{
  392. 'R12_RelayStatus':12
  393. },
  394. success:res =>{
  395. console.log(res)
  396. }
  397. })
  398. }
  399. },
  400. //回路名称调整
  401. loopname(e){
  402. var address = this.data.address
  403. if (e.target.dataset.loopname == 1) {
  404. wx.showModal({
  405. title:'修改回路名称',
  406. editable:true,
  407. placeholderText:'请输入名称',
  408. success(res){
  409. if (res.confirm) {
  410. console.log(res.content)
  411. }
  412. }
  413. })
  414. }
  415. else if(e.target.dataset.loopname == 2 && address[1] != ""){
  416. wx.showModal({
  417. title:'修改回路名称',
  418. editable:true,
  419. placeholderText:'请输入名称',
  420. success(res){
  421. if (res.confirm) {
  422. console.log(res.content)
  423. }
  424. }
  425. })
  426. }
  427. else if(e.target.dataset.loopname == 3 && address[2] != ""){
  428. wx.showModal({
  429. title:'修改回路名称',
  430. editable:true,
  431. placeholderText:'请输入名称',
  432. success(res){
  433. if (res.confirm) {
  434. console.log(res.content)
  435. }
  436. }
  437. })
  438. }
  439. else if(e.target.dataset.loopname == 4 && address[3] != ""){
  440. wx.showModal({
  441. title:'修改回路名称',
  442. editable:true,
  443. placeholderText:'请输入名称',
  444. success(res){
  445. if (res.confirm) {
  446. console.log(res.content)
  447. }
  448. }
  449. })
  450. }
  451. else if(e.target.dataset.loopname == 5 && address[4] != ""){
  452. wx.showModal({
  453. title:'修改回路名称',
  454. editable:true,
  455. placeholderText:'请输入名称',
  456. success(res){
  457. if (res.confirm) {
  458. console.log(res.content)
  459. }
  460. }
  461. })
  462. }
  463. else if(e.target.dataset.loopname == 6 && address[5] != ""){
  464. wx.showModal({
  465. title:'修改回路名称',
  466. editable:true,
  467. placeholderText:'请输入名称',
  468. success(res){
  469. if (res.confirm) {
  470. console.log(res.content)
  471. }
  472. }
  473. })
  474. }
  475. else if(e.target.dataset.loopname == 7 && address[6] != ""){
  476. wx.showModal({
  477. title:'修改回路名称',
  478. editable:true,
  479. placeholderText:'请输入名称',
  480. success(res){
  481. if (res.confirm) {
  482. console.log(res.content)
  483. }
  484. }
  485. })
  486. }
  487. else if(e.target.dataset.loopname == 8 && address[7] != ""){
  488. wx.showModal({
  489. title:'修改回路名称',
  490. editable:true,
  491. placeholderText:'请输入名称',
  492. success(res){
  493. if (res.confirm) {
  494. console.log(res.content)
  495. }
  496. }
  497. })
  498. }
  499. else if(e.target.dataset.loopname == 9 && address[8] != ""){
  500. wx.showModal({
  501. title:'修改回路名称',
  502. editable:true,
  503. placeholderText:'请输入名称',
  504. success(res){
  505. if (res.confirm) {
  506. console.log(res.content)
  507. }
  508. }
  509. })
  510. }
  511. else if(e.target.dataset.loopname == 10 && address[9] != ""){
  512. wx.showModal({
  513. title:'修改回路名称',
  514. editable:true,
  515. placeholderText:'请输入名称',
  516. success(res){
  517. if (res.confirm) {
  518. console.log(res.content)
  519. }
  520. }
  521. })
  522. }
  523. else if(e.target.dataset.loopname == 11 && address[10] != ""){
  524. wx.showModal({
  525. title:'修改回路名称',
  526. editable:true,
  527. placeholderText:'请输入名称',
  528. success(res){
  529. if (res.confirm) {
  530. console.log(res.content)
  531. }
  532. }
  533. })
  534. }
  535. else if(e.target.dataset.loopname == 12 && address[11] != ""){
  536. wx.showModal({
  537. title:'修改回路名称',
  538. editable:true,
  539. placeholderText:'请输入名称',
  540. success(res){
  541. if (res.confirm) {
  542. console.log(res.content)
  543. }
  544. }
  545. })
  546. }
  547. },
  548. //全开
  549. Fullopen:function(){
  550. var lamp = this.data.lamp
  551. for(let i = 0;i < this.data.loops; i++){
  552. lamp[i] = "/image/lamp1.png"
  553. this.setData({
  554. lamp:lamp
  555. })
  556. }
  557. },
  558. //全关
  559. Allclosed:function(){
  560. var lamp = this.data.lamp
  561. for(let i = 0;i < this.data.loops; i++){
  562. lamp[i] = "/image/lamp.png"
  563. this.setData({
  564. lamp:lamp
  565. })
  566. }
  567. },
  568. //分组下拉
  569. changegroup:function(e){
  570. var that = this
  571. that.setData({
  572. groupIndex:e.detail.value
  573. })
  574. var groupName = that.data.groupName[that.data.groupIndex]//选择的分组名称
  575. var group = wx.getStorageSync('group')
  576. var deviceName = that.data.deviceName
  577. var deviceName = []
  578. for(let i = 0;i < group.length;i++){
  579. if(group[i].name == groupName){
  580. if(group[i].device.length != 0){
  581. for(let j = 0;j < group[i].device.length;j++){
  582. deviceName.push(group[i].device[j].deviceName)
  583. }
  584. }
  585. }
  586. }
  587. this.setData({
  588. deviceName:deviceName
  589. })
  590. //重新获取分组名和设备名
  591. if(that.data.deviceName.length != 0){
  592. var groupNames = that.data.groupName[that.data.groupIndex]
  593. var deviceNames = that.data.deviceName[that.data.deviceIndex]
  594. for(let d = 0;d < group.length;d++){
  595. if(groupNames == group[d].name){
  596. for(let g = 0;g < group[d].device.length;g++){
  597. if(deviceNames == group[d].device[g].deviceName){
  598. var deviceId = group[d].device[g].deviceId
  599. var deviceKey = group[d].device[g].deviceKey
  600. }
  601. }
  602. }
  603. }
  604. wx.request({
  605. url: 'https://api.heclouds.com/devices/' + deviceId,
  606. method:'GET',
  607. header:{"api-key": deviceKey},
  608. success:(res) =>{
  609. if (res.data.data.online == true) {
  610. that.setData({
  611. status:"在线"
  612. })
  613. }
  614. else{
  615. that.setData({
  616. status:"离线"
  617. })
  618. }
  619. }
  620. })
  621. wx.request({
  622. url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
  623. header:{"api-key": deviceKey},
  624. method:'GET',
  625. success:(res) => {
  626. let {data} = res.data
  627. for(let i = 0;i < data.length;i++){
  628. if (data[i].id == "RelayCount") {
  629. var quantity = data[i].current_value
  630. }
  631. else if(data[i].id == "ManualStatus"){
  632. if(data[i].current_value == 0){
  633. that.setData({
  634. Modecontrol:"自动"
  635. })
  636. }
  637. else{
  638. that.setData({
  639. Modecontrol:"手动"
  640. })
  641. }
  642. }
  643. }
  644. for (let i = 0;i < quantity; i++) {
  645. var Loop = that.data.Loop
  646. var color = that.data.Color
  647. var size = that.data.Size
  648. var Address = that.data.address
  649. Loop[i] = that.data.loop[i]
  650. color[i] = "black"
  651. size[i] = "calc(100vw * 16/375)",
  652. Address[i] = "/image/modify.png"
  653. that.setData({
  654. Color:color,
  655. Size:size,
  656. address:Address,
  657. loops:quantity,
  658. Loop:Loop
  659. })
  660. }
  661. // let setloop = that.data.Loop
  662. // getApp().globalData.setloop = setloop
  663. // wx.switchTab({
  664. // url:'/pages/loop/loop',
  665. // })
  666. }
  667. })
  668. }
  669. },
  670. //设备下拉
  671. changedevice:function(e){
  672. var that = this
  673. that.setData({
  674. deviceIndex:e.detail.value
  675. })
  676. var group = wx.getStorageSync('group')
  677. var groupName = that.data.groupName[that.data.groupIndex]
  678. var deviceName = that.data.deviceName[that.data.deviceIndex]
  679. for (let index = 0; index < group.length; index++) {
  680. if(groupName == group[index].name){
  681. for(let t = 0;t < group[index].device.length;t++){
  682. if(deviceName == group[index].device[t].deviceName){
  683. var deviceId = group[index].device[t].deviceId
  684. var deviceKey = group[index].device[t].deviceKey
  685. }
  686. }
  687. }
  688. }
  689. wx.request({
  690. url: 'https://api.heclouds.com/devices/' + deviceId,
  691. method:'GET',
  692. header:{"api-key": deviceKey},
  693. success:(res) =>{
  694. if (res.data.data.online == true) {
  695. that.setData({
  696. status:"在线"
  697. })
  698. }
  699. else{
  700. that.setData({
  701. status:"离线"
  702. })
  703. }
  704. }
  705. })
  706. wx.request({
  707. url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
  708. header:{"api-key": deviceKey},
  709. method:'GET',
  710. success:(res) => {
  711. let {data} = res.data
  712. for(let i = 0;i < data.length;i++){
  713. if (data[i].id == "RelayCount") {
  714. var quantity = data[i].current_value
  715. }
  716. else if(data[i].id == "ManualStatus"){
  717. if(data[i].current_value == 0){
  718. that.setData({
  719. Modecontrol:"自动"
  720. })
  721. }
  722. else{
  723. that.setData({
  724. Modecontrol:"手动"
  725. })
  726. }
  727. }
  728. }
  729. for (let i = 0;i < quantity; i++) {
  730. var Loop = that.data.Loop
  731. var color = that.data.Color
  732. var size = that.data.Size
  733. var Address = that.data.address
  734. Loop[i] = that.data.loop[i]
  735. color[i] = "black"
  736. size[i] = "calc(100vw * 16/375)",
  737. Address[i] = "/image/modify.png"
  738. that.setData({
  739. Color:color,
  740. Size:size,
  741. address:Address,
  742. loops:quantity,
  743. Loop:Loop
  744. })
  745. }
  746. // let setloop = that.data.Loop
  747. // getApp().globalData.setloop = setloop
  748. // wx.switchTab({
  749. // url:'/pages/loop/loop',
  750. // })
  751. }
  752. })
  753. },
  754. //修改回路名称
  755. /**
  756. * 生命周期函数--监听页面加载
  757. */
  758. onLoad(options) {
  759. var that = this
  760. if(wx.getStorageSync('lamp') == ''){
  761. wx.setStorageSync('lamp', [])
  762. var lamp = wx.getStorageSync('lamp')
  763. for(let h = 0;h < 12;h++){
  764. lamp.push("/image/lamp.png")
  765. }
  766. }
  767. wx.setStorageSync('lamp',lamp)
  768. that.setData({
  769. lamp:wx.getStorageSync('lamp')
  770. })
  771. if(that.data.groupName.length == 0){
  772. var group = wx.getStorageSync('group')
  773. var groups = []
  774. var device = []
  775. for(let i = 0;i < group.length;i++){
  776. groups.push(group[i].name)
  777. }
  778. that.setData({
  779. groupName:groups
  780. })
  781. var groupName = that.data.groupName
  782. var groupIndex = that.data.groupIndex
  783. for(let j = 0;j < group.length;j++){
  784. if(groupName[groupIndex] == group[j].name){
  785. for(let p = 0;p < group[j].device.length;p++){
  786. device.push(group[j].device[p].deviceName)
  787. }
  788. }
  789. }
  790. that.setData({
  791. deviceName:device
  792. })
  793. var groupNames = that.data.groupName[that.data.groupIndex]
  794. var deviceNames = that.data.deviceName[that.data.deviceIndex]
  795. for(let d = 0;d < group.length;d++){
  796. if(groupNames == group[d].name){
  797. for(let g = 0;g < group[d].device.length;g++){
  798. if(deviceNames == group[d].device[g].deviceName){
  799. var deviceId = group[d].device[g].deviceId
  800. var deviceKey = group[d].device[g].deviceKey
  801. }
  802. }
  803. }
  804. }
  805. wx.request({
  806. url: 'https://api.heclouds.com/devices/' + deviceId,
  807. method:'GET',
  808. header:{"api-key": deviceKey},
  809. success:(res) =>{
  810. if (res.data.data.online == true) {
  811. that.setData({
  812. status:"在线"
  813. })
  814. }
  815. else{
  816. that.setData({
  817. status:"离线"
  818. })
  819. }
  820. }
  821. })
  822. for(let i=0;i < 12;i++){this.data.Color[i] = "#cccccc"}
  823. wx.request({
  824. url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
  825. header:{"api-key": deviceKey},
  826. method:'GET',
  827. success:(res) => {
  828. let {data} = res.data
  829. for(let i = 0;i < data.length;i++){
  830. if (data[i].id == "RelayCount") {
  831. var quantity = data[i].current_value
  832. }
  833. else if(data[i].id == "ManualStatus"){
  834. if(data[i].current_value == 0){
  835. that.setData({
  836. Modecontrol:"自动"
  837. })
  838. }
  839. else{
  840. that.setData({
  841. Modecontrol:"手动"
  842. })
  843. }
  844. }
  845. }
  846. for (let i = 0;i < quantity; i++) {
  847. var Loop = that.data.Loop
  848. var color = that.data.Color
  849. var size = that.data.Size
  850. var Address = that.data.address
  851. Loop[i] = that.data.loop[i]
  852. color[i] = "black"
  853. size[i] = "calc(100vw * 16/375)",
  854. Address[i] = "/image/modify.png"
  855. that.setData({
  856. Color:color,
  857. Size:size,
  858. address:Address,
  859. loops:quantity,
  860. Loop:Loop
  861. })
  862. }
  863. // let setloop = that.data.Loop
  864. // getApp().globalData.setloop = setloop
  865. // wx.switchTab({
  866. // url:'/pages/loop/loop',
  867. // })
  868. }
  869. })
  870. }
  871. that.setData({
  872. deviceId:deviceId,
  873. deviceKey:deviceKey
  874. })
  875. },
  876. /**
  877. * 生命周期函数--监听页面初次渲染完成
  878. */
  879. onReady() {
  880. },
  881. /**
  882. * 生命周期函数--监听页面显示
  883. */
  884. onShow() {
  885. },
  886. /**
  887. * 生命周期函数--监听页面隐藏
  888. */
  889. onHide() {
  890. },
  891. /**
  892. * 生命周期函数--监听页面卸载
  893. */
  894. onUnload() {
  895. },
  896. /**
  897. * 页面相关事件处理函数--监听用户下拉动作
  898. */
  899. onPullDownRefresh() {
  900. },
  901. /**
  902. * 页面上拉触底事件的处理函数
  903. */
  904. onReachBottom() {
  905. },
  906. /**
  907. * 用户点击右上角分享
  908. */
  909. onShareAppMessage() {
  910. }
  911. })