control.js 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. // pages/control/control.js
  2. const {postGroup,getGroup,putGroup,delGroup} = require('../../api/group')
  3. const {postDevice,getDevice,putDevice,delDevice,getloop} = require('../../api/device')
  4. const {getBasic,getData,postData} = require('../../api/intell')
  5. const control = require('../../utils/control')
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. statu:false,
  12. status:"离线",
  13. Title:"",
  14. quantity:"",//回路数量
  15. Color:['#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf','#d5dbdf',
  16. '#d5dbdf','#d5dbdf'],//字体颜色
  17. Size:["calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)",
  18. "calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)",
  19. "calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)","calc(100vw * 16/375)"],//字体大小
  20. lamp:['https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  21. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  22. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  23. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  24. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  25. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  26. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  27. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  28. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  29. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  30. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  31. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'],//灯泡图标
  32. address:["","","","","","","","","","","",""],//修改回路名称图标
  33. loop:['回路1','回路2','回路3','回路4','回路5','回路6','回路7','回路8','回路9','回路10','回路11','回路12'],//回路名称
  34. loops:0,//用于记录回路数量
  35. Loop:[],//用于向回路界面传递回路名称
  36. Modecontrol:"",
  37. groupName:[],
  38. deviceName:[],
  39. groupIndex:0,
  40. deviceIndex:0,
  41. deviceId:'',
  42. deviceKey:'',
  43. },
  44. //回路开
  45. Open(e){
  46. var that = this
  47. if(e.target.dataset.open == 1){
  48. control.Switch(that.data.deviceId,that.data.deviceKey,{ 'R1_RelayStatus':13,'Reflash':3})
  49. }
  50. else if (e.target.dataset.open == 2 && that.data.loops == "2") {
  51. control.Switch(that.data.deviceId,that.data.deviceKey,{ 'R2_RelayStatus':13,'Reflash':3})
  52. }
  53. else if (e.target.dataset.open == 3 && that.data.loops == "3") {
  54. control.Switch(that.data.deviceId,that.data.deviceKey,{ 'R3_RelayStatus':13,'Reflash':3})
  55. }
  56. else if (e.target.dataset.open == 4 && that.data.loops == "4") {
  57. control.Switch(that.data.deviceId,that.data.deviceKey,{'R4_RelayStatus':13,'Reflash':3})
  58. }
  59. else if (e.target.dataset.open == 5 && that.data.loops == "5") {
  60. control.Switch(that.data.deviceId,that.data.deviceKey,{'R5_RelayStatus':13,'Reflash':3})
  61. }
  62. else if (e.target.dataset.open == 6 && that.data.loops == "6") {
  63. control.Switch(that.data.deviceId,that.data.deviceKey,{'R6_RelayStatus':13,'Reflash':3})
  64. }
  65. else if (e.target.dataset.open == 7 && that.data.loops == "7") {
  66. control.Switch(that.data.deviceId,that.data.deviceKey,{'R7_RelayStatus':13,'Reflash':3})
  67. }
  68. else if (e.target.dataset.open == 8 && that.data.loops == "8") {
  69. control.Switch(that.data.deviceId,that.data.deviceKey,{'R8_RelayStatus':13,'Reflash':3})
  70. }
  71. else if (e.target.dataset.open == 9 && that.data.loops == "9") {
  72. control.Switch(that.data.deviceId,that.data.deviceKey,{'R9_RelayStatus':13,'Reflash':3})
  73. }
  74. else if (e.target.dataset.open == 10 && that.data.loops == "10") {
  75. control.Switch(that.data.deviceId,that.data.deviceKey,{'R10_RelayStatus':13,'Reflash':3})
  76. }
  77. else if (e.target.dataset.open == 11 && that.data.loops == "11") {
  78. control.Switch(that.data.deviceId,that.data.deviceKey,{'R11_RelayStatus':13,'Reflash':3})
  79. }
  80. else if (e.target.dataset.open == 12 && that.data.loops == "12") {
  81. control.Switch(that.data.deviceId,that.data.deviceKey,{'R12_RelayStatus':13,'Reflash':3})
  82. }
  83. var lamp = wx.getStorageSync('lamp')
  84. setTimeout(function(){
  85. getData(that.data.deviceId,that.data.deviceKey).then(bind => {
  86. let Bind = bind.data.data
  87. if(bind.data.errno == 0){
  88. for(let r1 = 0;r1 < Bind.length;r1++){
  89. if(Bind[r1].id == 'R1_RelayStatus'){
  90. var switchReal = control.switchReal(Bind[r1].current_value,lamp,0)
  91. }
  92. else if(Bind[r1].id == 'R2_RelayStatus'){
  93. var switchReal = control.switchReal(Bind[r1].current_value,lamp,1)
  94. }
  95. else if(Bind[r1].id == 'R3_RelayStatus'){
  96. var switchReal = control.switchReal(Bind[r1].current_value,lamp,2)
  97. }
  98. else if(Bind[r1].id == 'R4_RelayStatus'){
  99. var switchReal = control.switchReal(Bind[r1].current_value,lamp,3)
  100. }
  101. else if(Bind[r1].id == 'R5_RelayStatus'){
  102. var switchReal = control.switchReal(Bind[r1].current_value,lamp,4)
  103. }
  104. else if(Bind[r1].id == 'R6_RelayStatus'){
  105. var switchReal = control.switchReal(Bind[r1].current_value,lamp,5)
  106. }
  107. else if(Bind[r1].id == 'R7_RelayStatus'){
  108. var switchReal = control.switchReal(Bind[r1].current_value,lamp,6)
  109. }
  110. else if(Bind[r1].id == 'R8_RelayStatus'){
  111. var switchReal = control.switchReal(Bind[r1].current_value,lamp,7)
  112. }
  113. else if(Bind[r1].id == 'R9_RelayStatus'){
  114. var switchReal = control.switchReal(Bind[r1].current_value,lamp,8)
  115. }
  116. else if(Bind[r1].id == 'R10_RelayStatus'){
  117. var switchReal = control.switchReal(Bind[r1].current_value,lamp,9)
  118. }
  119. else if(Bind[r1].id == 'R11_RelayStatus'){
  120. var switchReal = control.switchReal(Bind[r1].current_value,lamp,10)
  121. }
  122. else if(Bind[r1].id == 'R12_RelayStatus'){
  123. var switchReal = control.switchReal(Bind[r1].current_value,lamp,11)
  124. }
  125. }
  126. wx.setStorageSync('lamp',switchReal)
  127. that.setData({lamp:wx.getStorageSync('lamp')})
  128. }
  129. })
  130. },2000)
  131. },
  132. //回路关
  133. Shut(e){
  134. var that = this
  135. var lamp = wx.getStorageSync('lamp')
  136. if(e.target.dataset.shut == 1){
  137. control.Switch(that.data.deviceId,that.data.deviceKey,{'R1_RelayStatus':12,'Reflash':3})
  138. }
  139. else if (e.target.dataset.shut == 2 && that.data.loops == "2") {
  140. control.Switch(that.data.deviceId,that.data.deviceKey,{'R2_RelayStatus':12,'Reflash':3})
  141. }
  142. else if (e.target.dataset.shut == 3 && that.data.loops == "3") {
  143. control.Switch(that.data.deviceId,that.data.deviceKey,{'R3_RelayStatus':12,'Reflash':3})
  144. }
  145. else if (e.target.dataset.shut == 4 && that.data.loops == "4") {
  146. control.Switch(that.data.deviceId,that.data.deviceKey,{'R4_RelayStatus':12,'Reflash':3})
  147. }
  148. else if (e.target.dataset.shut == 5 && that.data.loops == "5") {
  149. control.Switch(that.data.deviceId,that.data.deviceKey,{'R5_RelayStatus':12,'Reflash':3})
  150. }
  151. else if (e.target.dataset.shut == 6 && that.data.loops == "6") {
  152. control.Switch(that.data.deviceId,that.data.deviceKey,{'R6_RelayStatus':12,'Reflash':3})
  153. }
  154. else if (e.target.dataset.shut == 7 && that.data.loops == "7") {
  155. control.Switch(that.data.deviceId,that.data.deviceKey,{'R7_RelayStatus':12,'Reflash':3})
  156. }
  157. else if (e.target.dataset.shut == 8 && that.data.loops == "8") {
  158. control.Switch(that.data.deviceId,that.data.deviceKey,{'R8_RelayStatus':12,'Reflash':3})
  159. }
  160. else if (e.target.dataset.shut == 9 && that.data.loops == "9") {
  161. control.Switch(that.data.deviceId,that.data.deviceKey,{'R9_RelayStatus':12,'Reflash':3})
  162. }
  163. else if (e.target.dataset.shut == 10 && that.data.loops == "10") {
  164. control.Switch(that.data.deviceId,that.data.deviceKey,{'R10_RelayStatus':12,'Reflash':3})
  165. }
  166. else if (e.target.dataset.shut == 11 && that.data.loops == "11") {
  167. control.Switch(that.data.deviceId,that.data.deviceKey,{'R11_RelayStatus':12,'Reflash':3})
  168. }
  169. else if (e.target.dataset.shut == 12 && that.data.loops == "12") {
  170. control.Switch(that.data.deviceId,that.data.deviceKey,{'R12_RelayStatus':12,'Reflash':3})
  171. }
  172. var lamp = wx.getStorageSync('lamp')
  173. setTimeout(function(){
  174. getData(that.data.deviceId,that.data.deviceKey).then(bind => {
  175. let Bind = bind.data.data
  176. if(bind.data.errno == 0){
  177. for(let r1 = 0;r1 < Bind.length;r1++){
  178. if(Bind[r1].id == 'R1_RelayStatus'){
  179. var switchReal = control.switchReal(Bind[r1].current_value,lamp,0)
  180. }
  181. else if(Bind[r1].id == 'R2_RelayStatus'){
  182. var switchReal = control.switchReal(Bind[r1].current_value,lamp,1)
  183. }
  184. else if(Bind[r1].id == 'R3_RelayStatus'){
  185. var switchReal = control.switchReal(Bind[r1].current_value,lamp,2)
  186. }
  187. else if(Bind[r1].id == 'R4_RelayStatus'){
  188. var switchReal = control.switchReal(Bind[r1].current_value,lamp,3)
  189. }
  190. else if(Bind[r1].id == 'R5_RelayStatus'){
  191. var switchReal = control.switchReal(Bind[r1].current_value,lamp,4)
  192. }
  193. else if(Bind[r1].id == 'R6_RelayStatus'){
  194. var switchReal = control.switchReal(Bind[r1].current_value,lamp,5)
  195. }
  196. else if(Bind[r1].id == 'R7_RelayStatus'){
  197. var switchReal = control.switchReal(Bind[r1].current_value,lamp,6)
  198. }
  199. else if(Bind[r1].id == 'R8_RelayStatus'){
  200. var switchReal = control.switchReal(Bind[r1].current_value,lamp,7)
  201. }
  202. else if(Bind[r1].id == 'R9_RelayStatus'){
  203. var switchReal = control.switchReal(Bind[r1].current_value,lamp,8)
  204. }
  205. else if(Bind[r1].id == 'R10_RelayStatus'){
  206. var switchReal = control.switchReal(Bind[r1].current_value,lamp,9)
  207. }
  208. else if(Bind[r1].id == 'R11_RelayStatus'){
  209. var switchReal = control.switchReal(Bind[r1].current_value,lamp,10)
  210. }
  211. else if(Bind[r1].id == 'R12_RelayStatus'){
  212. var switchReal = control.switchReal(Bind[r1].current_value,lamp,11)
  213. }
  214. }
  215. wx.setStorageSync('lamp',switchReal)
  216. that.setData({lamp:wx.getStorageSync('lamp')})
  217. }
  218. })
  219. },2000)
  220. },
  221. //回路名称调整
  222. loopname(e){
  223. var that = this
  224. var address = that.data.address//回路名称图标
  225. var loop = that.data.loop//回路名称
  226. var slice//截取数组
  227. var loops = that.data.loops//回路数量
  228. var groupName = that.data.groupName[that.data.groupIndex]//分组名称
  229. var deviceName = that.data.deviceName[that.data.deviceIndex]//设备名称
  230. var token = wx.getStorageSync('token')
  231. var group = wx.getStorageSync('group')
  232. for(let i = 0;i < group.length;i++){
  233. if(groupName == group[i].groupName){
  234. for(let j = 0;j < group[i].devices.length;j++){
  235. if(deviceName == group[i].devices[j].deviceName){
  236. var deviceid = group[i].devices[j].id
  237. var groupid = group[i].devices[j].groupId
  238. }
  239. }
  240. }
  241. }
  242. //回路1
  243. if (e.target.dataset.loopname == 1) {
  244. wx.showModal({
  245. title:'修改回路名称',
  246. editable:true,
  247. placeholderText:'请输入名称',
  248. success(res){
  249. if (res.confirm) {
  250. if(res.content == ''){
  251. wx.showModal({
  252. title:'提示',
  253. content:'请输入名称',
  254. showCancel:false
  255. })
  256. }
  257. else if(res.content.length > 10){
  258. wx.showModal({
  259. title:'提示',
  260. content:'回路名称不能大于10个字符',
  261. showCancel:false
  262. })
  263. }
  264. else{
  265. loop[0] = res.content
  266. slice = loop.slice(0,loops)
  267. slice = slice.toString()
  268. wx.request({
  269. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  270. method:'PUT',
  271. header:{'Content-Type': 'application/json','Authorization': token},
  272. data:{
  273. id:deviceid,
  274. groupId:groupid,
  275. circuits:slice
  276. },
  277. success: res =>{
  278. if(res.data.code == 200){
  279. for(let i = 0;i < group.length;i++){
  280. if(groupName == group[i].groupName){
  281. for(let j = 0;j < group[i].devices.length;j++){
  282. if(deviceName == group[i].devices[j].deviceName){
  283. group[i].devices[j].circuits = slice
  284. }
  285. }
  286. }
  287. }
  288. wx.setStorageSync('group', group)
  289. that.setData({loop:loop})
  290. }
  291. }
  292. })
  293. }
  294. }
  295. }
  296. })
  297. }
  298. //回路2
  299. else if(e.target.dataset.loopname == 2 && address[1] != ""){
  300. wx.showModal({
  301. title:'修改回路名称',
  302. editable:true,
  303. placeholderText:'请输入名称',
  304. success(res){
  305. if (res.confirm) {
  306. if(res.content == ''){
  307. wx.showModal({
  308. title:'提示',
  309. content:'请输入名称',
  310. showCancel:false
  311. })
  312. }
  313. else if(res.content.length > 10){
  314. wx.showModal({
  315. title:'提示',
  316. content:'回路名称不能大于10个字符',
  317. showCancel:false
  318. })
  319. }
  320. else{
  321. loop[1] = res.content
  322. slice = loop.slice(0,loops)
  323. slice = slice.toString()
  324. wx.request({
  325. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  326. method:'PUT',
  327. header:{'Content-Type': 'application/json','Authorization': token},
  328. data:{
  329. id:deviceid,
  330. groupId:groupid,
  331. circuits:slice
  332. },
  333. success: res =>{
  334. if(res.data.code == 200){
  335. for(let i = 0;i < group.length;i++){
  336. if(groupName == group[i].groupName){
  337. for(let j = 0;j < group[i].devices.length;j++){
  338. if(deviceName == group[i].devices[j].deviceName){
  339. group[i].devices[j].circuits = slice
  340. }
  341. }
  342. }
  343. }
  344. wx.setStorageSync('group', group)
  345. that.setData({loop:loop})
  346. }
  347. }
  348. })
  349. }
  350. }
  351. }
  352. })
  353. }
  354. //回路3
  355. else if(e.target.dataset.loopname == 3 && address[2] != ""){
  356. wx.showModal({
  357. title:'修改回路名称',
  358. editable:true,
  359. placeholderText:'请输入名称',
  360. success(res){
  361. if (res.confirm) {
  362. if(res.content == ''){
  363. wx.showModal({
  364. title:'提示',
  365. content:'请输入名称',
  366. showCancel:false
  367. })
  368. }
  369. else if(res.content.length > 10){
  370. wx.showModal({
  371. title:'提示',
  372. content:'回路名称不能大于10个字符',
  373. showCancel:false
  374. })
  375. }
  376. else{
  377. loop[2] = res.content
  378. slice = loop.slice(0,loops)
  379. slice = slice.toString()
  380. wx.request({
  381. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  382. method:'PUT',
  383. header:{'Content-Type': 'application/json','Authorization': token},
  384. data:{
  385. id:deviceid,
  386. groupId:groupid,
  387. circuits:slice
  388. },
  389. success: res =>{
  390. if(res.data.code == 200){
  391. for(let i = 0;i < group.length;i++){
  392. if(groupName == group[i].groupName){
  393. for(let j = 0;j < group[i].devices.length;j++){
  394. if(deviceName == group[i].devices[j].deviceName){
  395. group[i].devices[j].circuits = slice
  396. }
  397. }
  398. }
  399. }
  400. wx.setStorageSync('group', group)
  401. that.setData({loop:loop})
  402. }
  403. }
  404. })
  405. }
  406. }
  407. }
  408. })
  409. }
  410. //回路4
  411. else if(e.target.dataset.loopname == 4 && address[3] != ""){
  412. wx.showModal({
  413. title:'修改回路名称',
  414. editable:true,
  415. placeholderText:'请输入名称',
  416. success(res){
  417. if (res.confirm) {
  418. if(res.content == ''){
  419. wx.showModal({
  420. title:'提示',
  421. content:'请输入名称',
  422. showCancel:false
  423. })
  424. }
  425. else if(res.content.length > 10){
  426. wx.showModal({
  427. title:'提示',
  428. content:'回路名称不能大于10个字符',
  429. showCancel:false
  430. })
  431. }
  432. else{
  433. loop[3] = res.content
  434. slice = loop.slice(0,loops)
  435. slice = slice.toString()
  436. wx.request({
  437. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  438. method:'PUT',
  439. header:{'Content-Type': 'application/json','Authorization': token},
  440. data:{
  441. id:deviceid,
  442. groupId:groupid,
  443. circuits:slice
  444. },
  445. success: res =>{
  446. if(res.data.code == 200){
  447. for(let i = 0;i < group.length;i++){
  448. if(groupName == group[i].groupName){
  449. for(let j = 0;j < group[i].devices.length;j++){
  450. if(deviceName == group[i].devices[j].deviceName){
  451. group[i].devices[j].circuits = slice
  452. }
  453. }
  454. }
  455. }
  456. wx.setStorageSync('group', group)
  457. that.setData({loop:loop})
  458. }
  459. }
  460. })
  461. }
  462. }
  463. }
  464. })
  465. }
  466. //回路5
  467. else if(e.target.dataset.loopname == 5 && address[4] != ""){
  468. wx.showModal({
  469. title:'修改回路名称',
  470. editable:true,
  471. placeholderText:'请输入名称',
  472. success(res){
  473. if (res.confirm) {
  474. if(res.content == ''){
  475. wx.showModal({
  476. title:'提示',
  477. content:'请输入名称',
  478. showCancel:false
  479. })
  480. }
  481. else if(res.content.length > 10){
  482. wx.showModal({
  483. title:'提示',
  484. content:'回路名称不能大于10个字符',
  485. showCancel:false
  486. })
  487. }
  488. else{
  489. loop[4] = res.content
  490. slice = loop.slice(0,loops)
  491. slice = slice.toString()
  492. wx.request({
  493. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  494. method:'PUT',
  495. header:{'Content-Type': 'application/json','Authorization': token},
  496. data:{
  497. id:deviceid,
  498. groupId:groupid,
  499. circuits:slice
  500. },
  501. success: res =>{
  502. if(res.data.code == 200){
  503. for(let i = 0;i < group.length;i++){
  504. if(groupName == group[i].groupName){
  505. for(let j = 0;j < group[i].devices.length;j++){
  506. if(deviceName == group[i].devices[j].deviceName){
  507. group[i].devices[j].circuits = slice
  508. }
  509. }
  510. }
  511. }
  512. wx.setStorageSync('group', group)
  513. that.setData({loop:loop})
  514. }
  515. }
  516. })
  517. }
  518. }
  519. }
  520. })
  521. }
  522. //回路6
  523. else if(e.target.dataset.loopname == 6 && address[5] != ""){
  524. wx.showModal({
  525. title:'修改回路名称',
  526. editable:true,
  527. placeholderText:'请输入名称',
  528. success(res){
  529. if (res.confirm) {
  530. if(res.content == ''){
  531. wx.showModal({
  532. title:'提示',
  533. content:'请输入名称',
  534. showCancel:false
  535. })
  536. }
  537. else if(res.content.length > 10){
  538. wx.showModal({
  539. title:'提示',
  540. content:'回路名称不能大于10个字符',
  541. showCancel:false
  542. })
  543. }
  544. else{
  545. loop[5] = res.content
  546. slice = loop.slice(0,loops)
  547. slice = slice.toString()
  548. wx.request({
  549. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  550. method:'PUT',
  551. header:{'Content-Type': 'application/json','Authorization': token},
  552. data:{
  553. id:deviceid,
  554. groupId:groupid,
  555. circuits:slice
  556. },
  557. success: res =>{
  558. if(res.data.code == 200){
  559. for(let i = 0;i < group.length;i++){
  560. if(groupName == group[i].groupName){
  561. for(let j = 0;j < group[i].devices.length;j++){
  562. if(deviceName == group[i].devices[j].deviceName){
  563. group[i].devices[j].circuits = slice
  564. }
  565. }
  566. }
  567. }
  568. wx.setStorageSync('group', group)
  569. that.setData({loop:loop})
  570. }
  571. }
  572. })
  573. }
  574. }
  575. }
  576. })
  577. }
  578. //回路7
  579. else if(e.target.dataset.loopname == 7 && address[6] != ""){
  580. wx.showModal({
  581. title:'修改回路名称',
  582. editable:true,
  583. placeholderText:'请输入名称',
  584. success(res){
  585. if (res.confirm) {
  586. if(res.content == ''){
  587. wx.showModal({
  588. title:'提示',
  589. content:'请输入名称',
  590. showCancel:false
  591. })
  592. }
  593. else if(res.content.length > 10){
  594. wx.showModal({
  595. title:'提示',
  596. content:'回路名称不能大于10个字符',
  597. showCancel:false
  598. })
  599. }
  600. else{
  601. loop[6] = res.content
  602. slice = loop.slice(0,loops)
  603. slice = slice.toString()
  604. wx.request({
  605. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  606. method:'PUT',
  607. header:{'Content-Type': 'application/json','Authorization': token},
  608. data:{
  609. id:deviceid,
  610. groupId:groupid,
  611. circuits:slice
  612. },
  613. success: res =>{
  614. if(res.data.code == 200){
  615. for(let i = 0;i < group.length;i++){
  616. if(groupName == group[i].groupName){
  617. for(let j = 0;j < group[i].devices.length;j++){
  618. if(deviceName == group[i].devices[j].deviceName){
  619. group[i].devices[j].circuits = slice
  620. }
  621. }
  622. }
  623. }
  624. wx.setStorageSync('group', group)
  625. that.setData({loop:loop})
  626. }
  627. }
  628. })
  629. }
  630. }
  631. }
  632. })
  633. }
  634. //回路8
  635. else if(e.target.dataset.loopname == 8 && address[7] != ""){
  636. wx.showModal({
  637. title:'修改回路名称',
  638. editable:true,
  639. placeholderText:'请输入名称',
  640. success(res){
  641. if (res.confirm) {
  642. if(res.content == ''){
  643. wx.showModal({
  644. title:'提示',
  645. content:'请输入名称',
  646. showCancel:false
  647. })
  648. }
  649. else if(res.content.length > 10){
  650. wx.showModal({
  651. title:'提示',
  652. content:'回路名称不能大于10个字符',
  653. showCancel:false
  654. })
  655. }
  656. else{
  657. loop[7] = res.content
  658. slice = loop.slice(0,loops)
  659. slice = slice.toString()
  660. wx.request({
  661. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  662. method:'PUT',
  663. header:{'Content-Type': 'application/json','Authorization': token},
  664. data:{
  665. id:deviceid,
  666. groupId:groupid,
  667. circuits:slice
  668. },
  669. success: res =>{
  670. if(res.data.code == 200){
  671. for(let i = 0;i < group.length;i++){
  672. if(groupName == group[i].groupName){
  673. for(let j = 0;j < group[i].devices.length;j++){
  674. if(deviceName == group[i].devices[j].deviceName){
  675. group[i].devices[j].circuits = slice
  676. }
  677. }
  678. }
  679. }
  680. wx.setStorageSync('group', group)
  681. that.setData({loop:loop})
  682. }
  683. }
  684. })
  685. }
  686. }
  687. }
  688. })
  689. }
  690. //回路9
  691. else if(e.target.dataset.loopname == 9 && address[8] != ""){
  692. wx.showModal({
  693. title:'修改回路名称',
  694. editable:true,
  695. placeholderText:'请输入名称',
  696. success(res){
  697. if (res.confirm) {
  698. if(res.content == ''){
  699. wx.showModal({
  700. title:'提示',
  701. content:'请输入名称',
  702. showCancel:false
  703. })
  704. }
  705. else if(res.content.length > 10){
  706. wx.showModal({
  707. title:'提示',
  708. content:'回路名称不能大于10个字符',
  709. showCancel:false
  710. })
  711. }
  712. else{
  713. loop[0] = res.content
  714. slice = loop.slice(0,loops)
  715. slice = slice.toString()
  716. wx.request({
  717. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  718. method:'PUT',
  719. header:{'Content-Type': 'application/json','Authorization': token},
  720. data:{
  721. id:deviceid,
  722. groupId:groupid,
  723. circuits:slice
  724. },
  725. success: res =>{
  726. if(res.data.code == 200){
  727. for(let i = 0;i < group.length;i++){
  728. if(groupName == group[i].groupName){
  729. for(let j = 0;j < group[i].devices.length;j++){
  730. if(deviceName == group[i].devices[j].deviceName){
  731. group[i].devices[j].circuits = slice
  732. }
  733. }
  734. }
  735. }
  736. wx.setStorageSync('group', group)
  737. that.setData({loop:loop})
  738. }
  739. }
  740. })
  741. }
  742. }
  743. }
  744. })
  745. }
  746. //回路10
  747. else if(e.target.dataset.loopname == 10 && address[9] != ""){
  748. wx.showModal({
  749. title:'修改回路名称',
  750. editable:true,
  751. placeholderText:'请输入名称',
  752. success(res){
  753. if (res.confirm) {
  754. if(res.content == ''){
  755. wx.showModal({
  756. title:'提示',
  757. content:'请输入名称',
  758. showCancel:false
  759. })
  760. }
  761. else if(res.content.length > 10){
  762. wx.showModal({
  763. title:'提示',
  764. content:'回路名称不能大于10个字符',
  765. showCancel:false
  766. })
  767. }
  768. else{
  769. loop[9] = res.content
  770. slice = loop.slice(0,loops)
  771. slice = slice.toString()
  772. wx.request({
  773. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  774. method:'PUT',
  775. header:{'Content-Type': 'application/json','Authorization': token},
  776. data:{
  777. id:deviceid,
  778. groupId:groupid,
  779. circuits:slice
  780. },
  781. success: res =>{
  782. if(res.data.code == 200){
  783. for(let i = 0;i < group.length;i++){
  784. if(groupName == group[i].groupName){
  785. for(let j = 0;j < group[i].devices.length;j++){
  786. if(deviceName == group[i].devices[j].deviceName){
  787. group[i].devices[j].circuits = slice
  788. }
  789. }
  790. }
  791. }
  792. wx.setStorageSync('group', group)
  793. that.setData({loop:loop})
  794. }
  795. }
  796. })
  797. }
  798. }
  799. }
  800. })
  801. }
  802. //回路11
  803. else if(e.target.dataset.loopname == 11 && address[10] != ""){
  804. wx.showModal({
  805. title:'修改回路名称',
  806. editable:true,
  807. placeholderText:'请输入名称',
  808. success(res){
  809. if (res.confirm) {
  810. if(res.content == ''){
  811. wx.showModal({
  812. title:'提示',
  813. content:'请输入名称',
  814. showCancel:false
  815. })
  816. }
  817. else if(res.content.length > 10){
  818. wx.showModal({
  819. title:'提示',
  820. content:'回路名称不能大于10个字符',
  821. showCancel:false
  822. })
  823. }
  824. else{
  825. loop[10] = res.content
  826. slice = loop.slice(0,loops)
  827. slice = slice.toString()
  828. wx.request({
  829. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  830. method:'PUT',
  831. header:{'Content-Type': 'application/json','Authorization': token},
  832. data:{
  833. id:deviceid,
  834. groupId:groupid,
  835. circuits:slice
  836. },
  837. success: res =>{
  838. if(res.data.code == 200){
  839. for(let i = 0;i < group.length;i++){
  840. if(groupName == group[i].groupName){
  841. for(let j = 0;j < group[i].devices.length;j++){
  842. if(deviceName == group[i].devices[j].deviceName){
  843. group[i].devices[j].circuits = slice
  844. }
  845. }
  846. }
  847. }
  848. wx.setStorageSync('group', group)
  849. that.setData({loop:loop})
  850. }
  851. }
  852. })
  853. }
  854. }
  855. }
  856. })
  857. }
  858. //回路12
  859. else if(e.target.dataset.loopname == 12 && address[11] != ""){
  860. wx.showModal({
  861. title:'修改回路名称',
  862. editable:true,
  863. placeholderText:'请输入名称',
  864. success(res){
  865. if (res.confirm) {
  866. if(res.content == ''){
  867. wx.showModal({
  868. title:'提示',
  869. content:'请输入名称',
  870. showCancel:false
  871. })
  872. }
  873. else if(res.content.length > 10){
  874. wx.showModal({
  875. title:'提示',
  876. content:'回路名称不能大于10个字符',
  877. showCancel:false
  878. })
  879. }
  880. else{
  881. loop[11] = res.content
  882. slice = loop.slice(0,loops)
  883. slice = slice.toString()
  884. wx.request({
  885. url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/devices',
  886. method:'PUT',
  887. header:{'Content-Type': 'application/json','Authorization': token},
  888. data:{
  889. id:deviceid,
  890. groupId:groupid,
  891. circuits:slice
  892. },
  893. success: res =>{
  894. if(res.data.code == 200){
  895. for(let i = 0;i < group.length;i++){
  896. if(groupName == group[i].groupName){
  897. for(let j = 0;j < group[i].devices.length;j++){
  898. if(deviceName == group[i].devices[j].deviceName){
  899. group[i].devices[j].circuits = slice
  900. }
  901. }
  902. }
  903. }
  904. wx.setStorageSync('group', group)
  905. that.setData({loop:loop})
  906. }
  907. }
  908. })
  909. }
  910. }
  911. }
  912. })
  913. }
  914. },
  915. //全开
  916. Fullopen:function(){
  917. var that = this
  918. var obj = {'R1_RelayStatus':13,'R2_RelayStatus':13,'R3_RelayStatus':13,'R4_RelayStatus':13,
  919. 'R5_RelayStatus':13,'R6_RelayStatus':13,'R7_RelayStatus':13,'R8_RelayStatus':13,'R9_RelayStatus':13,
  920. 'R10_RelayStatus':13,'R11_RelayStatus':13,'R12_RelayStatus':13,'Reflash':3}
  921. postData(that.data.deviceId,that.data.deviceKey,obj).then(res => {
  922. console.log(res)
  923. if(res.data.errno == 0){
  924. wx.setStorageSync('lamp', [])
  925. var lamp = wx.getStorageSync('lamp')
  926. for(let h = 0;h < 12;h++){
  927. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  928. }
  929. setTimeout(function(){
  930. getData(that.data.deviceId,that.data.deviceKey).then(bind => {
  931. let Bind = bind.data.data
  932. if(bind.data.errno == 0){
  933. for(let r1 = 0;r1 < Bind.length;r1++){
  934. if(Bind[r1].id == 'R1_RelayStatus'){
  935. var switchReal = control.switchReal(Bind[r1].current_value,lamp,0)
  936. }
  937. else if(Bind[r1].id == 'R2_RelayStatus'){
  938. var switchReal = control.switchReal(Bind[r1].current_value,lamp,1)
  939. }
  940. else if(Bind[r1].id == 'R3_RelayStatus'){
  941. var switchReal = control.switchReal(Bind[r1].current_value,lamp,2)
  942. }
  943. else if(Bind[r1].id == 'R4_RelayStatus'){
  944. var switchReal = control.switchReal(Bind[r1].current_value,lamp,3)
  945. }
  946. else if(Bind[r1].id == 'R5_RelayStatus'){
  947. var switchReal = control.switchReal(Bind[r1].current_value,lamp,4)
  948. }
  949. else if(Bind[r1].id == 'R6_RelayStatus'){
  950. var switchReal = control.switchReal(Bind[r1].current_value,lamp,5)
  951. }
  952. else if(Bind[r1].id == 'R7_RelayStatus'){
  953. var switchReal = control.switchReal(Bind[r1].current_value,lamp,6)
  954. }
  955. else if(Bind[r1].id == 'R8_RelayStatus'){
  956. var switchReal = control.switchReal(Bind[r1].current_value,lamp,7)
  957. }
  958. else if(Bind[r1].id == 'R9_RelayStatus'){
  959. var switchReal = control.switchReal(Bind[r1].current_value,lamp,8)
  960. }
  961. else if(Bind[r1].id == 'R10_RelayStatus'){
  962. var switchReal = control.switchReal(Bind[r1].current_value,lamp,9)
  963. }
  964. else if(Bind[r1].id == 'R11_RelayStatus'){
  965. var switchReal = control.switchReal(Bind[r1].current_value,lamp,10)
  966. }
  967. else if(Bind[r1].id == 'R12_RelayStatus'){
  968. var switchReal = control.switchReal(Bind[r1].current_value,lamp,11)
  969. }
  970. }
  971. wx.setStorageSync('lamp',switchReal)
  972. that.setData({lamp:wx.getStorageSync('lamp')})
  973. }
  974. })
  975. },2000)
  976. }
  977. else{
  978. wx.showModal({
  979. title:'错误',
  980. content:res.errMsg,
  981. showCancel:false
  982. })
  983. }
  984. })
  985. },
  986. //全关
  987. Allclosed:function(){
  988. var that = this
  989. var obj = {'R1_RelayStatus':12,'R2_RelayStatus':12,'R3_RelayStatus':12,'R4_RelayStatus':12,
  990. 'R5_RelayStatus':12,'R6_RelayStatus':12,'R7_RelayStatus':12,'R8_RelayStatus':12,'R9_RelayStatus':12,
  991. 'R10_RelayStatus':12,'R11_RelayStatus':12,'R12_RelayStatus':12,'Reflash':3}
  992. postData(that.data.deviceId,that.data.deviceKey,obj).then(res => {
  993. console.log(res)
  994. if(res.data.errno == 0){
  995. wx.setStorageSync('lamp', [])
  996. var lamp = wx.getStorageSync('lamp')
  997. for(let h = 0;h < 12;h++){
  998. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  999. }
  1000. setTimeout(function(){
  1001. getData(that.data.deviceId,that.data.deviceKey).then(bind => {
  1002. let Bind = bind.data.data
  1003. if(bind.data.errno == 0){
  1004. for(let r1 = 0;r1 < Bind.length;r1++){
  1005. if(Bind[r1].id == 'R1_RelayStatus'){
  1006. var switchReal = control.switchReal(Bind[r1].current_value,lamp,0)
  1007. }
  1008. else if(Bind[r1].id == 'R2_RelayStatus'){
  1009. var switchReal = control.switchReal(Bind[r1].current_value,lamp,1)
  1010. }
  1011. else if(Bind[r1].id == 'R3_RelayStatus'){
  1012. var switchReal = control.switchReal(Bind[r1].current_value,lamp,2)
  1013. }
  1014. else if(Bind[r1].id == 'R4_RelayStatus'){
  1015. var switchReal = control.switchReal(Bind[r1].current_value,lamp,3)
  1016. }
  1017. else if(Bind[r1].id == 'R5_RelayStatus'){
  1018. var switchReal = control.switchReal(Bind[r1].current_value,lamp,4)
  1019. }
  1020. else if(Bind[r1].id == 'R6_RelayStatus'){
  1021. var switchReal = control.switchReal(Bind[r1].current_value,lamp,5)
  1022. }
  1023. else if(Bind[r1].id == 'R7_RelayStatus'){
  1024. var switchReal = control.switchReal(Bind[r1].current_value,lamp,6)
  1025. }
  1026. else if(Bind[r1].id == 'R8_RelayStatus'){
  1027. var switchReal = control.switchReal(Bind[r1].current_value,lamp,7)
  1028. }
  1029. else if(Bind[r1].id == 'R9_RelayStatus'){
  1030. var switchReal = control.switchReal(Bind[r1].current_value,lamp,8)
  1031. }
  1032. else if(Bind[r1].id == 'R10_RelayStatus'){
  1033. var switchReal = control.switchReal(Bind[r1].current_value,lamp,9)
  1034. }
  1035. else if(Bind[r1].id == 'R11_RelayStatus'){
  1036. var switchReal = control.switchReal(Bind[r1].current_value,lamp,10)
  1037. }
  1038. else if(Bind[r1].id == 'R12_RelayStatus'){
  1039. var switchReal = control.switchReal(Bind[r1].current_value,lamp,11)
  1040. }
  1041. }
  1042. wx.setStorageSync('lamp',switchReal)
  1043. that.setData({lamp:wx.getStorageSync('lamp')})
  1044. }
  1045. })
  1046. },2000)
  1047. }
  1048. else{
  1049. wx.showModal({
  1050. title:'错误',
  1051. content:res.errMsg,
  1052. showCancel:false
  1053. })
  1054. }
  1055. })
  1056. },
  1057. //分组下拉
  1058. changegroup:function(e){
  1059. var that = this
  1060. that.setData({groupIndex:e.detail.value})
  1061. var groupName = that.data.groupName[that.data.groupIndex]//选择的分组名称
  1062. wx.setStorageSync('groupName',groupName)//将修改的分组名称放入缓存
  1063. //获取设备名称下拉
  1064. var group = wx.getStorageSync('group')
  1065. var deviceName = that.data.deviceName
  1066. var deviceName = []
  1067. for(let i = 0;i < group.length;i++){
  1068. if(group[i].groupName == groupName){
  1069. if(group[i].devices != null && group[i].devices.length != 0){
  1070. wx.showToast({
  1071. title:'刷新中',
  1072. icon:'loading',
  1073. duration: 2000
  1074. })
  1075. for(let j = 0;j < group[i].devices.length;j++){
  1076. deviceName.push(group[i].devices[j].deviceName)
  1077. }
  1078. that.setData({deviceName:deviceName})
  1079. var groupNames = that.data.groupName[that.data.groupIndex]//当前分组
  1080. var deviceNames = that.data.deviceName[that.data.deviceIndex]//当前设备
  1081. wx.setStorageSync('deviceName',deviceNames)//将修改设备名放入缓存
  1082. //获取设备信息
  1083. for(let d = 0;d < group.length;d++){
  1084. if(groupNames == group[d].groupName){
  1085. var Groupno = group[d].id//分组id
  1086. for(let g = 0;g < group[d].devices.length;g++){
  1087. if(deviceNames == group[d].devices[g].deviceName){
  1088. //旧设备信息
  1089. if(group[d].devices[g].module == 0){
  1090. var circuitNum = group[d].devices[g].circuitNum
  1091. var circuits = group[d].devices[g].circuits
  1092. var deviceId = group[d].devices[g].deviceId
  1093. var deviceKey = group[d].devices[g].deviceKey
  1094. var moudule = group[d].devices[g].module
  1095. }
  1096. //新设备信息
  1097. else{
  1098. var circuits = group[d].devices[g].circuits
  1099. var moudule = group[d].devices[g].module
  1100. var id = group[d].devices[g].id
  1101. }
  1102. }
  1103. }
  1104. }
  1105. }
  1106. //灯泡图标缓存
  1107. wx.setStorageSync('lamp', [])
  1108. var lamp = wx.getStorageSync('lamp')
  1109. for(let h = 0;h < 12;h++){
  1110. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  1111. }
  1112. //旧设备
  1113. if(moudule == 0){
  1114. //重置状态
  1115. let loopName = []//回路名称
  1116. let loopIcon = []//回路图标
  1117. let switchState = []//开关状态
  1118. let size = []//字体大小
  1119. let fontColor = []//字体颜色
  1120. for(let p = 0;p < 12;p++){
  1121. loopName.push('回路' + (p+1))
  1122. loopIcon.push('')
  1123. switchState.push('https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png')
  1124. size.push('calc(100vw * 16/375)')
  1125. fontColor.push('#d5dbdf')
  1126. }
  1127. that.setData({
  1128. loop,
  1129. })
  1130. //..............................
  1131. that.setData({deviceId:deviceId,deviceKey:deviceKey})
  1132. var Circuits = circuits.split(',')
  1133. let loop = that.data.loop
  1134. for(let vr = 0;vr < circuitNum;vr++){
  1135. loop[vr] = Circuits[vr]
  1136. }
  1137. that.setData({loop:loop})
  1138. postData(deviceId,deviceKey,{"Reflash":3}).then(res=>{
  1139. if(res.data.errno == 0){
  1140. setTimeout(function(){
  1141. getBasic(deviceId,deviceKey).then(ever=>{
  1142. if(ever.data.errno == 0){
  1143. if (ever.data.data.online == true) {
  1144. that.setData({status:"在线"})
  1145. }
  1146. else{
  1147. that.setData({status:"离线"})
  1148. }
  1149. getData(deviceId,deviceKey).then(ver =>{
  1150. if(ver.data.errno == 0){
  1151. let data = ver.data.data
  1152. for(let i = 0;i < data.length;i++){
  1153. if (data[i].id == "RelayCount") {
  1154. var quantity = data[i].current_value
  1155. that.setData({loops:quantity})
  1156. }
  1157. else if(data[i].id == "ManualStatus"){
  1158. if(data[i].current_value == 0){
  1159. that.setData({Modecontrol:"自动"})
  1160. }
  1161. else{
  1162. that.setData({Modecontrol:"手动"})
  1163. }
  1164. }
  1165. //回路1
  1166. else if(data[i].id == 'R1_RelayStatus'){
  1167. let police = data[i].current_value
  1168. var lamps = control.switchReal(police,lamp,0)
  1169. }
  1170. else if(data[i].id == 'R2_RelayStatus'){
  1171. let police = data[i].current_value
  1172. var lamps = control.switchReal(police,lamp,1)
  1173. }
  1174. else if(data[i].id == 'R3_RelayStatus'){
  1175. let police = data[i].current_value
  1176. var lamps = control.switchReal(police,lamp,2)
  1177. }
  1178. else if(data[i].id == 'R4_RelayStatus'){
  1179. let police = data[i].current_value
  1180. var lamps = control.switchReal(police,lamp,3)
  1181. }
  1182. else if(data[i].id == 'R5_RelayStatus'){
  1183. let police = data[i].current_value
  1184. var lamps = control.switchReal(police,lamp,4)
  1185. }
  1186. else if(data[i].id == 'R6_RelayStatus'){
  1187. let police = data[i].current_value
  1188. var lamps = control.switchReal(police,lamp,5)
  1189. }
  1190. else if(data[i].id == 'R7_RelayStatus'){
  1191. let police = data[i].current_value
  1192. var lamps = control.switchReal(police,lamp,6)
  1193. }
  1194. else if(data[i].id == 'R8_RelayStatus'){
  1195. let police = data[i].current_value
  1196. var lamps = control.switchReal(police,lamp,7)
  1197. }
  1198. else if(data[i].id == 'R9_RelayStatus'){
  1199. let police = data[i].current_value
  1200. var lamps = control.switchReal(police,lamp,8)
  1201. }
  1202. else if(data[i].id == 'R10_RelayStatus'){
  1203. let police = data[i].current_value
  1204. var lamps = control.switchReal(police,lamp,9)
  1205. }
  1206. else if(data[i].id == 'R11_RelayStatus'){
  1207. let police = data[i].current_value
  1208. var lamps = control.switchReal(police,lamp,10)
  1209. }
  1210. else if(data[i].id == 'R12_RelayStatus'){
  1211. let police = data[i].current_value
  1212. var lamps = control.switchReal(police,lamp,11)
  1213. }
  1214. wx.setStorageSync('lamp', lamps)
  1215. that.setData({lamp:wx.getStorageSync('lamp')})
  1216. }
  1217. for (let i = 0;i < quantity; i++) {
  1218. var Loop = that.data.Loop
  1219. var color = that.data.Color
  1220. var size = that.data.Size
  1221. var Address = that.data.address
  1222. Loop[i] = that.data.loop[i]
  1223. color[i] = "black"
  1224. size[i] = "calc(100vw * 16/375)",
  1225. Address[i] = "/image/modify.png"
  1226. that.setData({
  1227. Color:color,
  1228. Size:size,
  1229. address:Address,
  1230. Loop:Loop
  1231. })
  1232. }
  1233. }
  1234. else{
  1235. wx.showModal({
  1236. title:'错误',
  1237. content:ever.data.error,
  1238. showCancel:false
  1239. })
  1240. }
  1241. })
  1242. }
  1243. else{
  1244. wx.showModal({
  1245. title:'错误',
  1246. content:ever.data.error,
  1247. showCancel:false
  1248. })
  1249. }
  1250. })
  1251. },2000)
  1252. }
  1253. else{
  1254. wx.showModal({
  1255. title:'错误',
  1256. content:res.data.error,
  1257. showCancel:false
  1258. })
  1259. }
  1260. })
  1261. }
  1262. //新设备
  1263. else{
  1264. //获取设备在线状态
  1265. getDevice(id,Groupno).then(dve =>{
  1266. if(dve.data.code == 0){
  1267. var state = dve.data.data
  1268. switch(state[0].status){
  1269. case 0:
  1270. that.setData({status:'离线'})
  1271. break;
  1272. case 1:
  1273. that.setData({status:'在线'})
  1274. break;
  1275. }
  1276. }
  1277. else{
  1278. wx.showModal({
  1279. title: '错误',
  1280. content: dve.data.msg,
  1281. showCancel:false
  1282. })
  1283. }
  1284. })
  1285. var Circuits = circuits.split(',')
  1286. let loop = that.data.loop
  1287. for(let vr = 0;vr < circuitNum;vr++){
  1288. loop[vr] = Circuits[vr]
  1289. }
  1290. that.setData({loop:loop})
  1291. getloop(id).then(res =>{
  1292. if(res.data.code == 0){
  1293. let loopState = res.data.data
  1294. //loopState.length可以视为回路数量
  1295. for(let n = 0;n < loopState.length;n++){
  1296. if(loopState[n].status == 1){
  1297. lamp[n] = "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png"
  1298. }
  1299. else{
  1300. lamp[n] = "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  1301. }
  1302. var Loop = that.data.Loop
  1303. var color = that.data.Color
  1304. var size = that.data.Size
  1305. var Address = that.data.address
  1306. Loop[n] = that.data.Loop[n]
  1307. color[n] = "black"
  1308. size[n] = "calc(100vw * 16/375)",
  1309. Address[n] = "/image/modify.png"
  1310. that.setData({Color:color,Size:size,address:Address,Loop:Loop})
  1311. }
  1312. wx.setStorageSync('lamp', lamp)
  1313. that.setData({lamp:lamp})
  1314. }
  1315. else{
  1316. wx.showModal({
  1317. title: '错误',
  1318. content: res.data.msg,
  1319. showCancel:false
  1320. })
  1321. }
  1322. })
  1323. }
  1324. }
  1325. else{
  1326. console.log('主页分组下拉到没有设备的工程')
  1327. wx.showModal({
  1328. title:'提示',
  1329. content:'工程中不存在设备',
  1330. showCancel:false
  1331. })
  1332. that.setData({status:'离线'})
  1333. wx.setStorageSync('deviceName','')//清空设备名称缓存
  1334. }
  1335. }
  1336. }
  1337. },
  1338. //设备下拉
  1339. changedevice:function(e){
  1340. wx.showToast({
  1341. title:'刷新中',
  1342. icon:'loading',
  1343. duration: 2000
  1344. })
  1345. var that = this
  1346. that.setData({
  1347. deviceIndex:e.detail.value
  1348. })
  1349. wx.setStorageSync('lamp',[])
  1350. var lamp = wx.getStorageSync('lamp')
  1351. for(let h = 0;h < 12;h++){
  1352. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  1353. }
  1354. var group = wx.getStorageSync('group')
  1355. var groupName = that.data.groupName[that.data.groupIndex]
  1356. var deviceName = that.data.deviceName[that.data.deviceIndex]
  1357. wx.setStorageSync('groupName', groupName)//分组名称
  1358. wx.setStorageSync('deviceName', deviceName)//设备名称
  1359. for (let index = 0; index < group.length; index++) {
  1360. if(groupName == group[index].groupName){
  1361. for(let t = 0;t < group[index].devices.length;t++){
  1362. if(deviceName == group[index].devices[t].deviceName){
  1363. var deviceId = group[index].devices[t].deviceId
  1364. var deviceKey = group[index].devices[t].deviceKey
  1365. var circuitNum = group[index].devices[t].circuitNum
  1366. var circuits = group[index].devices[t].circuits
  1367. }
  1368. }
  1369. }
  1370. }
  1371. var Circuits = circuits.split(',')
  1372. let loop = that.data.loop
  1373. for(let vr = 0;vr < circuitNum;vr++){
  1374. loop[vr] = Circuits[vr]
  1375. }
  1376. that.setData({
  1377. deviceId:deviceId,
  1378. deviceKey:deviceKey,
  1379. loop:loop
  1380. })
  1381. wx.request({
  1382. url: 'https://api.heclouds.com/devices/' + deviceId,
  1383. method:'GET',
  1384. header:{"api-key": deviceKey},
  1385. success:(res) =>{
  1386. if (res.data.data.online == true) {
  1387. that.setData({
  1388. status:"在线"
  1389. })
  1390. }
  1391. else{
  1392. that.setData({
  1393. status:"离线"
  1394. })
  1395. }
  1396. }
  1397. })
  1398. wx.request({
  1399. url: 'https://api.heclouds.com/devices/' + deviceId + '/datastreams',
  1400. header:{"api-key": deviceKey},
  1401. method:'GET',
  1402. success:(res) => {
  1403. let {data} = res.data
  1404. for(let i = 0;i < data.length;i++){
  1405. if (data[i].id == "RelayCount") {
  1406. var quantity = data[i].current_value
  1407. }
  1408. else if(data[i].id == "ManualStatus"){
  1409. if(data[i].current_value == 0){
  1410. that.setData({
  1411. Modecontrol:"自动"
  1412. })
  1413. }
  1414. else{
  1415. that.setData({
  1416. Modecontrol:"手动"
  1417. })
  1418. }
  1419. }
  1420. //回路1
  1421. else if(data[i].id == 'R1_RelayStatus'){
  1422. var police = data[i].current_value
  1423. switch(police.length){
  1424. case 1:
  1425. police = '000' + police
  1426. break;
  1427. case 2:
  1428. police = '00' + police
  1429. break;
  1430. case 3:
  1431. police = '0' + police
  1432. break;
  1433. default:
  1434. police = police
  1435. break;
  1436. }
  1437. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1438. lamp[0] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1439. }
  1440. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1441. lamp[0] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1442. }
  1443. }
  1444. //回路2
  1445. else if(data[i].id == 'R2_RelayStatus'){
  1446. var police = data[i].current_value
  1447. switch(police.length){
  1448. case 1:
  1449. police = '000' + police
  1450. break;
  1451. case 2:
  1452. police = '00' + police
  1453. break;
  1454. case 3:
  1455. police = '0' + police
  1456. break;
  1457. default:
  1458. police = police
  1459. break;
  1460. }
  1461. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1462. lamp[1] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1463. }
  1464. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1465. lamp[1] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1466. }
  1467. }
  1468. //回路3
  1469. else if(data[i].id == 'R3_RelayStatus'){
  1470. var police = data[i].current_value
  1471. switch(police.length){
  1472. case 1:
  1473. police = '000' + police
  1474. break;
  1475. case 2:
  1476. police = '00' + police
  1477. break;
  1478. case 3:
  1479. police = '0' + police
  1480. break;
  1481. default:
  1482. police = police
  1483. break;
  1484. }
  1485. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1486. lamp[2] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1487. }
  1488. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1489. lamp[2] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1490. }
  1491. }
  1492. //回路4
  1493. else if(data[i].id == 'R4_RelayStatus'){
  1494. var police = data[i].current_value
  1495. switch(police.length){
  1496. case 1:
  1497. police = '000' + police
  1498. break;
  1499. case 2:
  1500. police = '00' + police
  1501. break;
  1502. case 3:
  1503. police = '0' + police
  1504. break;
  1505. default:
  1506. police = police
  1507. break;
  1508. }
  1509. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1510. lamp[3] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1511. }
  1512. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1513. lamp[3] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1514. }
  1515. }
  1516. //回路5
  1517. else if(data[i].id == 'R5_RelayStatus'){
  1518. var police = data[i].current_value
  1519. switch(police.length){
  1520. case 1:
  1521. police = '000' + police
  1522. break;
  1523. case 2:
  1524. police = '00' + police
  1525. break;
  1526. case 3:
  1527. police = '0' + police
  1528. break;
  1529. default:
  1530. police = police
  1531. break;
  1532. }
  1533. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1534. lamp[4] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1535. }
  1536. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1537. lamp[4] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1538. }
  1539. }
  1540. //回路6
  1541. else if(data[i].id == 'R6_RelayStatus'){
  1542. var police = data[i].current_value
  1543. switch(police.length){
  1544. case 1:
  1545. police = '000' + police
  1546. break;
  1547. case 2:
  1548. police = '00' + police
  1549. break;
  1550. case 3:
  1551. police = '0' + police
  1552. break;
  1553. default:
  1554. police = police
  1555. break;
  1556. }
  1557. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1558. lamp[5] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1559. }
  1560. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1561. lamp[5] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1562. }
  1563. }
  1564. //回路7
  1565. else if(data[i].id == 'R7_RelayStatus'){
  1566. var police = data[i].current_value
  1567. switch(police.length){
  1568. case 1:
  1569. police = '000' + police
  1570. break;
  1571. case 2:
  1572. police = '00' + police
  1573. break;
  1574. case 3:
  1575. police = '0' + police
  1576. break;
  1577. default:
  1578. police = police
  1579. break;
  1580. }
  1581. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1582. lamp[6] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1583. }
  1584. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1585. lamp[6] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1586. }
  1587. }
  1588. //回路8
  1589. else if(data[i].id == 'R8_RelayStatus'){
  1590. var police = data[i].current_value
  1591. switch(police.length){
  1592. case 1:
  1593. police = '000' + police
  1594. break;
  1595. case 2:
  1596. police = '00' + police
  1597. break;
  1598. case 3:
  1599. police = '0' + police
  1600. break;
  1601. default:
  1602. police = police
  1603. break;
  1604. }
  1605. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1606. lamp[7] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1607. }
  1608. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1609. lamp[7] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1610. }
  1611. }
  1612. //回路9
  1613. else if(data[i].id == 'R9_RelayStatus'){
  1614. var police = data[i].current_value
  1615. switch(police.length){
  1616. case 1:
  1617. police = '000' + police
  1618. break;
  1619. case 2:
  1620. police = '00' + police
  1621. break;
  1622. case 3:
  1623. police = '0' + police
  1624. break;
  1625. default:
  1626. police = police
  1627. break;
  1628. }
  1629. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1630. lamp[8] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1631. }
  1632. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1633. lamp[8] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1634. }
  1635. }
  1636. //回路10
  1637. else if(data[i].id == 'R10_RelayStatus'){
  1638. var police = data[i].current_value
  1639. switch(police.length){
  1640. case 1:
  1641. police = '000' + police
  1642. break;
  1643. case 2:
  1644. police = '00' + police
  1645. break;
  1646. case 3:
  1647. police = '0' + police
  1648. break;
  1649. default:
  1650. police = police
  1651. break;
  1652. }
  1653. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1654. lamp[9] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1655. }
  1656. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1657. lamp[9] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1658. }
  1659. }
  1660. //回路11
  1661. else if(data[i].id == 'R11_RelayStatus'){
  1662. var police = data[i].current_value
  1663. switch(police.length){
  1664. case 1:
  1665. police = '000' + police
  1666. break;
  1667. case 2:
  1668. police = '00' + police
  1669. break;
  1670. case 3:
  1671. police = '0' + police
  1672. break;
  1673. default:
  1674. police = police
  1675. break;
  1676. }
  1677. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1678. lamp[10] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1679. }
  1680. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1681. lamp[10] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1682. }
  1683. }
  1684. //回路12
  1685. else if(data[i].id == 'R12_RelayStatus'){
  1686. var police = data[i].current_value
  1687. switch(police.length){
  1688. case 1:
  1689. police = '000' + police
  1690. break;
  1691. case 2:
  1692. police = '00' + police
  1693. break;
  1694. case 3:
  1695. police = '0' + police
  1696. break;
  1697. default:
  1698. police = police
  1699. break;
  1700. }
  1701. if(police.substring(2,3) == '0' && police.substring(3,4) == '0'){
  1702. lamp[11] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  1703. }
  1704. else if(police.substring(2,3) == '0' && police.substring(3,4) == '1'){
  1705. lamp[11] = 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  1706. }
  1707. }
  1708. }
  1709. wx.setStorageSync('lamp',lamp)
  1710. that.setData({
  1711. lamp:wx.getStorageSync('lamp')
  1712. })
  1713. for (let i = 0;i < quantity; i++) {
  1714. var Loop = that.data.Loop
  1715. var color = that.data.Color
  1716. var size = that.data.Size
  1717. var Address = that.data.address
  1718. Loop[i] = that.data.loop[i]
  1719. color[i] = "black"
  1720. size[i] = "calc(100vw * 16/375)",
  1721. Address[i] = "/image/modify.png"
  1722. that.setData({
  1723. Color:color,
  1724. Size:size,
  1725. address:Address,
  1726. loops:quantity,
  1727. Loop:Loop
  1728. })
  1729. }
  1730. }
  1731. })
  1732. },
  1733. //手动
  1734. manual:function(e){
  1735. var that = this
  1736. var deviceId = that.data.deviceId
  1737. var deviceKey = that.data.deviceKey
  1738. wx.request({
  1739. url: 'https://api.heclouds.com/cmds?device_id=' + deviceId,
  1740. method:'POST',
  1741. header:{"api-key": deviceKey},
  1742. data:{
  1743. 'ManualStatus':1,
  1744. 'Reflash':3
  1745. },
  1746. success:res =>{
  1747. if(res.statusCode == 200){
  1748. that.setData({
  1749. Modecontrol:'手动'
  1750. })
  1751. }
  1752. else{
  1753. wx.showModal({
  1754. title:'错误',
  1755. content:res.errMsg,
  1756. showCancel:false
  1757. })
  1758. }
  1759. }
  1760. })
  1761. },
  1762. //自动
  1763. automatic:function(e){
  1764. var that = this
  1765. var deviceId = that.data.deviceId
  1766. var deviceKey = that.data.deviceKey
  1767. wx.request({
  1768. url: 'https://api.heclouds.com/cmds?device_id=' + deviceId,
  1769. method:'POST',
  1770. header:{"api-key": deviceKey},
  1771. data:{
  1772. 'ManualStatus':0,
  1773. 'Reflash':3
  1774. },
  1775. success:res =>{
  1776. if(res.statusCode == 200){
  1777. that.setData({
  1778. Modecontrol:'自动'
  1779. })
  1780. }
  1781. else{
  1782. wx.showModal({
  1783. title:'错误',
  1784. content:res.errMsg,
  1785. showCancel:false
  1786. })
  1787. }
  1788. }
  1789. })
  1790. },
  1791. /**
  1792. * 生命周期函数--监听页面加载
  1793. */
  1794. onLoad(options) {
  1795. },
  1796. /**
  1797. * 生命周期函数--监听页面初次渲染完成
  1798. */
  1799. onReady() {
  1800. },
  1801. /**
  1802. * 生命周期函数--监听页面显示
  1803. */
  1804. onShow() {
  1805. wx.showToast({
  1806. title:'加载中',
  1807. icon:'loading',
  1808. duration: 1500
  1809. })
  1810. var that = this
  1811. var group = wx.getStorageSync('group')
  1812. //获取分组下拉
  1813. var groups = []
  1814. for(let i = 0;i < group.length;i++){
  1815. groups.push(group[i].groupName)
  1816. }
  1817. that.setData({
  1818. groupName:groups
  1819. })
  1820. //改变分组下标
  1821. if(wx.getStorageSync('groupName') != ''){
  1822. let GroupName = that.data.groupName
  1823. for(let n = 0;n < GroupName.length;n++){
  1824. if(GroupName[n] == wx.getStorageSync('groupName')){
  1825. that.setData({
  1826. groupIndex:n
  1827. })
  1828. }
  1829. }
  1830. }
  1831. else{
  1832. console.log('添加分组下标')
  1833. wx.setStorageSync('groupName',that.data.groupName[that.data.groupIndex])
  1834. }
  1835. //获取设备下拉
  1836. var device = []
  1837. var groupName = that.data.groupName
  1838. var groupIndex = that.data.groupIndex
  1839. for(let j = 0;j < group.length;j++){
  1840. if(groupName[groupIndex] == group[j].groupName){
  1841. if(group[j].devices != null && group[j].devices.length != 0){
  1842. for(let p = 0;p < group[j].devices.length;p++){
  1843. device.push(group[j].devices[p].deviceName)
  1844. }
  1845. that.setData({deviceName:device})
  1846. //改变设备下标
  1847. if(wx.getStorageSync('deviceName') != ''){
  1848. var DeviceName = that.data.deviceName
  1849. for(let m = 0;m < DeviceName.length;m++){
  1850. if(DeviceName[m] == wx.getStorageSync('deviceName')){
  1851. that.setData({deviceIndex:m})
  1852. }
  1853. }
  1854. }
  1855. else{
  1856. wx.setStorageSync('deviceName', that.data.deviceName[that.data.deviceIndex])
  1857. }
  1858. //根据分组名和设备信息
  1859. var groupNames = that.data.groupName[that.data.groupIndex]
  1860. var deviceNames = that.data.deviceName[that.data.deviceIndex]
  1861. for(let d = 0;d < group.length;d++){
  1862. if(groupNames == group[d].groupName){
  1863. var Groupno = group[d].id//分组id
  1864. for(let g = 0;g < group[d].devices.length;g++){
  1865. if(deviceNames == group[d].devices[g].deviceName){
  1866. //旧设备信息
  1867. if(group[d].devices[g].module == 0){
  1868. var circuitNum = group[d].devices[g].circuitNum
  1869. var circuits = group[d].devices[g].circuits
  1870. var deviceId = group[d].devices[g].deviceId
  1871. var deviceKey = group[d].devices[g].deviceKey
  1872. var moudule = group[d].devices[g].module
  1873. }
  1874. //新设备信息
  1875. else{
  1876. var circuits = group[d].devices[g].circuits
  1877. var moudule = group[d].devices[g].module
  1878. var id = group[d].devices[g].id
  1879. }
  1880. }
  1881. }
  1882. }
  1883. }
  1884. //灯泡图标缓存
  1885. wx.setStorageSync('lamp', [])
  1886. var lamp = wx.getStorageSync('lamp')
  1887. for(let h = 0;h < 12;h++){
  1888. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  1889. }
  1890. //旧设备
  1891. if(moudule == 0){
  1892. that.setData({deviceId:deviceId,deviceKey:deviceKey})
  1893. var Circuits = circuits.split(',')
  1894. let loop = that.data.loop
  1895. for(let vr = 0;vr < circuitNum;vr++){
  1896. loop[vr] = Circuits[vr]
  1897. }
  1898. that.setData({loop:loop})
  1899. postData(deviceId,deviceKey,{"Reflash":3}).then(res=>{
  1900. if(res.data.errno == 0){
  1901. setTimeout(function(){
  1902. getBasic(deviceId,deviceKey).then(ever=>{
  1903. if(ever.data.errno == 0){
  1904. if (ever.data.data.online == true) {
  1905. that.setData({status:"在线"})
  1906. }
  1907. else{
  1908. that.setData({status:"离线"})
  1909. }
  1910. getData(deviceId,deviceKey).then(ver =>{
  1911. if(ver.data.errno == 0){
  1912. let data = ver.data.data
  1913. for(let i = 0;i < data.length;i++){
  1914. if (data[i].id == "RelayCount") {
  1915. var quantity = data[i].current_value
  1916. that.setData({loops:quantity})
  1917. }
  1918. else if(data[i].id == "ManualStatus"){
  1919. if(data[i].current_value == 0){
  1920. that.setData({Modecontrol:"自动"})
  1921. }
  1922. else{
  1923. that.setData({Modecontrol:"手动"})
  1924. }
  1925. }
  1926. //回路1
  1927. else if(data[i].id == 'R1_RelayStatus'){
  1928. let police = data[i].current_value
  1929. var lamps = control.switchReal(police,lamp,0)
  1930. }
  1931. else if(data[i].id == 'R2_RelayStatus'){
  1932. let police = data[i].current_value
  1933. var lamps = control.switchReal(police,lamp,1)
  1934. }
  1935. else if(data[i].id == 'R3_RelayStatus'){
  1936. let police = data[i].current_value
  1937. var lamps = control.switchReal(police,lamp,2)
  1938. }
  1939. else if(data[i].id == 'R4_RelayStatus'){
  1940. let police = data[i].current_value
  1941. var lamps = control.switchReal(police,lamp,3)
  1942. }
  1943. else if(data[i].id == 'R5_RelayStatus'){
  1944. let police = data[i].current_value
  1945. var lamps = control.switchReal(police,lamp,4)
  1946. }
  1947. else if(data[i].id == 'R6_RelayStatus'){
  1948. let police = data[i].current_value
  1949. var lamps = control.switchReal(police,lamp,5)
  1950. }
  1951. else if(data[i].id == 'R7_RelayStatus'){
  1952. let police = data[i].current_value
  1953. var lamps = control.switchReal(police,lamp,6)
  1954. }
  1955. else if(data[i].id == 'R8_RelayStatus'){
  1956. let police = data[i].current_value
  1957. var lamps = control.switchReal(police,lamp,7)
  1958. }
  1959. else if(data[i].id == 'R9_RelayStatus'){
  1960. let police = data[i].current_value
  1961. var lamps = control.switchReal(police,lamp,8)
  1962. }
  1963. else if(data[i].id == 'R10_RelayStatus'){
  1964. let police = data[i].current_value
  1965. var lamps = control.switchReal(police,lamp,9)
  1966. }
  1967. else if(data[i].id == 'R11_RelayStatus'){
  1968. let police = data[i].current_value
  1969. var lamps = control.switchReal(police,lamp,10)
  1970. }
  1971. else if(data[i].id == 'R12_RelayStatus'){
  1972. let police = data[i].current_value
  1973. var lamps = control.switchReal(police,lamp,11)
  1974. }
  1975. wx.setStorageSync('lamp', lamps)
  1976. that.setData({lamp:wx.getStorageSync('lamp')})
  1977. }
  1978. for (let i = 0;i < quantity; i++) {
  1979. var Loop = that.data.Loop
  1980. var color = that.data.Color
  1981. var size = that.data.Size
  1982. var Address = that.data.address
  1983. Loop[i] = that.data.loop[i]
  1984. color[i] = "black"
  1985. size[i] = "calc(100vw * 16/375)",
  1986. Address[i] = "/image/modify.png"
  1987. that.setData({
  1988. Color:color,
  1989. Size:size,
  1990. address:Address,
  1991. Loop:Loop
  1992. })
  1993. }
  1994. }
  1995. else{
  1996. wx.showModal({
  1997. title:'错误',
  1998. content:ever.data.error,
  1999. showCancel:false
  2000. })
  2001. }
  2002. })
  2003. }
  2004. else{
  2005. wx.showModal({
  2006. title:'错误',
  2007. content:ever.data.error,
  2008. showCancel:false
  2009. })
  2010. }
  2011. })
  2012. },2000)
  2013. }
  2014. else{
  2015. wx.showModal({
  2016. title:'错误',
  2017. content:res.data.error,
  2018. showCancel:false
  2019. })
  2020. }
  2021. })
  2022. }
  2023. //新设备
  2024. else{
  2025. //获取设备在线状态
  2026. getDevice(id,Groupno).then(dve =>{
  2027. if(dve.data.code == 0){
  2028. var state = dve.data.data
  2029. switch(state[0].status){
  2030. case 0:
  2031. that.setData({status:'离线'})
  2032. break;
  2033. case 1:
  2034. that.setData({status:'在线'})
  2035. break;
  2036. }
  2037. }
  2038. else{
  2039. wx.showModal({
  2040. title: '错误',
  2041. content: dve.data.msg,
  2042. showCancel:false
  2043. })
  2044. }
  2045. })
  2046. var Circuits = circuits.split(',')
  2047. let loop = that.data.loop
  2048. for(let vr = 0;vr < circuitNum;vr++){
  2049. loop[vr] = Circuits[vr]
  2050. }
  2051. that.setData({loop:loop})
  2052. getloop(id).then(res =>{
  2053. if(res.data.code == 0){
  2054. let loopState = res.data.data
  2055. //loopState.length可以视为回路数量
  2056. for(let n = 0;n < loopState.length;n++){
  2057. if(loopState[n].status == 1){
  2058. lamp[n] = "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png"
  2059. }
  2060. else{
  2061. lamp[n] = "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  2062. }
  2063. var Loop = that.data.Loop
  2064. var color = that.data.Color
  2065. var size = that.data.Size
  2066. var Address = that.data.address
  2067. Loop[n] = that.data.Loop[n]
  2068. color[n] = "black"
  2069. size[n] = "calc(100vw * 16/375)",
  2070. Address[n] = "/image/modify.png"
  2071. that.setData({Color:color,Size:size,address:Address,Loop:Loop})
  2072. }
  2073. wx.setStorageSync('lamp', lamp)
  2074. that.setData({lamp:lamp})
  2075. }
  2076. else{
  2077. wx.showModal({
  2078. title: '错误',
  2079. content: res.data.msg,
  2080. showCancel:false
  2081. })
  2082. }
  2083. })
  2084. }
  2085. }
  2086. else {
  2087. that.setData({status:'离线',deviceName:[]})
  2088. }
  2089. }
  2090. }
  2091. },
  2092. /**
  2093. * 生命周期函数--监听页面隐藏
  2094. */
  2095. onHide() {
  2096. },
  2097. /**
  2098. * 生命周期函数--监听页面卸载
  2099. */
  2100. onUnload() {
  2101. },
  2102. /**
  2103. * 页面相关事件处理函数--监听用户下拉动作
  2104. */
  2105. onPullDownRefresh() {
  2106. },
  2107. /**
  2108. * 页面上拉触底事件的处理函数
  2109. */
  2110. onReachBottom() {
  2111. },
  2112. /**
  2113. * 用户点击右上角分享
  2114. */
  2115. onShareAppMessage() {
  2116. }
  2117. })