control.js 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123
  1. // pages/control/control.js
  2. const {
  3. postDevice,
  4. getDevice,
  5. putDevice,
  6. delDevice,
  7. getloop,
  8. loopSwitchstate
  9. } = require('../../api/device')
  10. const {
  11. getBasic,
  12. getData,
  13. postData
  14. } = require('../../api/intell')
  15. const control = require('../../utils/control')
  16. Page({
  17. /**
  18. * 页面的初始数据
  19. */
  20. data: {
  21. statu: false,
  22. status: "离线",
  23. Title: "",
  24. quantity: "", //回路数量
  25. Color: ['#d5dbdf', '#d5dbdf', '#d5dbdf', '#d5dbdf', '#d5dbdf', '#d5dbdf', '#d5dbdf', '#d5dbdf',
  26. '#d5dbdf', '#d5dbdf',
  27. '#d5dbdf', '#d5dbdf'
  28. ], //字体颜色
  29. Size: ["calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)",
  30. "calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)",
  31. "calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)", "calc(100vw * 16/375)"
  32. ], //字体大小
  33. lamp: ['https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  34. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  35. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  36. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  37. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  38. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  39. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  40. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  41. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  42. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  43. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png',
  44. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  45. ], //灯泡图标
  46. address: ["", "", "", "", "", "", "", "", "", "", "", ""], //修改回路名称图标
  47. loop: ['回路1', '回路2', '回路3', '回路4', '回路5', '回路6', '回路7', '回路8', '回路9', '回路10', '回路11', '回路12'], //回路名称
  48. loops: 0, //用于记录回路数量
  49. Loop: [], //用于向回路界面传递回路名称
  50. Modecontrol: "",
  51. groupName: [],
  52. deviceName: [],
  53. groupIndex: 0,
  54. deviceIndex: 0,
  55. deviceId: '',
  56. deviceKey: '',
  57. moudule: 0,
  58. id: 0,
  59. play: 0,
  60. ID: 0, //新设备的ID
  61. Groupno: 0
  62. },
  63. //回路开
  64. Open(e) {
  65. wx.showToast({
  66. title: '发送指令中',
  67. icon: 'loading',
  68. duration: 2500
  69. })
  70. var that = this
  71. var play = that.data.play
  72. var id = that.data.id
  73. var opens = e.target.dataset.open
  74. var loops = that.data.loops
  75. if (typeof(loops) == String) {
  76. loops = parseInt(loops)
  77. }
  78. if (play == 0) {
  79. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  80. if (res.data.errno == 0) {
  81. if (res.data.data.online == true) {
  82. that.setData({ status: '在线' })
  83. } else {
  84. that.setData({ status: '离线' })
  85. }
  86. } else {
  87. wx.showModal({
  88. title: '错误',
  89. content: res.data.error,
  90. showCancel: false
  91. })
  92. }
  93. })
  94. } else {
  95. getDevice(id, that.data.Groupno).then(dve => {
  96. if (dve.data.code == 0) {
  97. var state = dve.data.data
  98. switch (state.status) {
  99. case 0:
  100. that.setData({
  101. status: '离线'
  102. })
  103. break;
  104. case 1:
  105. that.setData({
  106. status: '在线'
  107. })
  108. break;
  109. }
  110. } else {
  111. wx.showModal({
  112. title: '错误',
  113. content: dve.data.msg,
  114. showCancel: false
  115. })
  116. }
  117. })
  118. }
  119. if (that.data.status == '在线') {
  120. if (opens == 1) {
  121. if (play == 0) {
  122. control.Switch(that.data.deviceId, that.data.deviceKey, {
  123. 'R1_RelayStatus': 13,
  124. 'Reflash': 3
  125. })
  126. } else {
  127. control.newSwitch({
  128. deviceId: id,
  129. relayId: 1,
  130. operation: 1
  131. })
  132. }
  133. } else if (opens == 2 && loops >= 2) {
  134. if (play == 0) {
  135. control.Switch(that.data.deviceId, that.data.deviceKey, {
  136. 'R2_RelayStatus': 13,
  137. 'Reflash': 3
  138. })
  139. } else {
  140. control.newSwitch({
  141. deviceId: id,
  142. relayId: 2,
  143. operation: 1
  144. })
  145. }
  146. } else if (opens == 3 && loops >= 3) {
  147. if (play == 0) {
  148. control.Switch(that.data.deviceId, that.data.deviceKey, {
  149. 'R3_RelayStatus': 13,
  150. 'Reflash': 3
  151. })
  152. } else {
  153. control.newSwitch({
  154. deviceId: id,
  155. relayId: 3,
  156. operation: 1
  157. })
  158. }
  159. } else if (opens == 4 && loops >= 4) {
  160. if (play == 0) {
  161. control.Switch(that.data.deviceId, that.data.deviceKey, {
  162. 'R4_RelayStatus': 13,
  163. 'Reflash': 3
  164. })
  165. } else {
  166. control.newSwitch({
  167. deviceId: id,
  168. relayId: 4,
  169. operation: 1
  170. })
  171. }
  172. } else if (opens == 5 && loops >= 5) {
  173. if (play == 0) {
  174. control.Switch(that.data.deviceId, that.data.deviceKey, {
  175. 'R5_RelayStatus': 13,
  176. 'Reflash': 3
  177. })
  178. } else {
  179. control.newSwitch({
  180. deviceId: id,
  181. relayId: 5,
  182. operation: 1
  183. })
  184. }
  185. } else if (opens == 6 && loops >= 6) {
  186. if (play == 0) {
  187. control.Switch(that.data.deviceId, that.data.deviceKey, {
  188. 'R6_RelayStatus': 13,
  189. 'Reflash': 3
  190. })
  191. } else {
  192. control.newSwitch({
  193. deviceId: id,
  194. relayId: 6,
  195. operation: 1
  196. })
  197. }
  198. } else if (opens == 7 && loops >= 7) {
  199. if (play == 0) {
  200. control.Switch(that.data.deviceId, that.data.deviceKey, {
  201. 'R7_RelayStatus': 13,
  202. 'Reflash': 3
  203. })
  204. } else {
  205. control.newSwitch({
  206. deviceId: id,
  207. relayId: 7,
  208. operation: 1
  209. })
  210. }
  211. } else if (opens == 8 && loops >= 8) {
  212. if (play == 0) {
  213. control.Switch(that.data.deviceId, that.data.deviceKey, {
  214. 'R8_RelayStatus': 13,
  215. 'Reflash': 3
  216. })
  217. } else {
  218. control.newSwitch({
  219. deviceId: id,
  220. relayId: 8,
  221. operation: 1
  222. })
  223. }
  224. } else if (opens == 9 && loops >= 9) {
  225. if (play == 0) {
  226. control.Switch(that.data.deviceId, that.data.deviceKey, {
  227. 'R9_RelayStatus': 13,
  228. 'Reflash': 3
  229. })
  230. } else {
  231. control.newSwitch({
  232. deviceId: id,
  233. relayId: 9,
  234. operation: 1
  235. })
  236. }
  237. } else if (opens == 10 && loops >= 10) {
  238. if (play == 0) {
  239. control.Switch(that.data.deviceId, that.data.deviceKey, {
  240. 'R10_RelayStatus': 13,
  241. 'Reflash': 3
  242. })
  243. } else {
  244. control.newSwitch({
  245. deviceId: id,
  246. relayId: 10,
  247. operation: 1
  248. })
  249. }
  250. } else if (opens == 11 && loops >= 11) {
  251. if (play == 0) {
  252. control.Switch(that.data.deviceId, that.data.deviceKey, {
  253. 'R11_RelayStatus': 13,
  254. 'Reflash': 3
  255. })
  256. } else {
  257. control.newSwitch({
  258. deviceId: id,
  259. relayId: 11,
  260. operation: 1
  261. })
  262. }
  263. } else if (opens == 12 && loops >= 12) {
  264. if (play == 0) {
  265. control.Switch(that.data.deviceId, that.data.deviceKey, {
  266. 'R12_RelayStatus': 13,
  267. 'Reflash': 3
  268. })
  269. } else {
  270. control.newSwitch({
  271. deviceId: id,
  272. relayId: 12,
  273. operation: 1
  274. })
  275. }
  276. }
  277. setTimeout(function() {
  278. //旧设备
  279. if (play == 0) {
  280. var lamp = wx.getStorageSync('lamp')
  281. getData(that.data.deviceId, that.data.deviceKey).then(bind => {
  282. if (bind.data.errno == 0) {
  283. let Bind = bind.data.data
  284. for (let r1 = 0; r1 < Bind.length; r1++) {
  285. if (Bind[r1].id == 'R1_RelayStatus') {
  286. var switchReal = control.switchReal(Bind[r1].current_value,
  287. lamp, 0)
  288. } else if (Bind[r1].id == 'R2_RelayStatus') {
  289. var switchReal = control.switchReal(Bind[r1].current_value,
  290. lamp, 1)
  291. } else if (Bind[r1].id == 'R3_RelayStatus') {
  292. var switchReal = control.switchReal(Bind[r1].current_value,
  293. lamp, 2)
  294. } else if (Bind[r1].id == 'R4_RelayStatus') {
  295. var switchReal = control.switchReal(Bind[r1].current_value,
  296. lamp, 3)
  297. } else if (Bind[r1].id == 'R5_RelayStatus') {
  298. var switchReal = control.switchReal(Bind[r1].current_value,
  299. lamp, 4)
  300. } else if (Bind[r1].id == 'R6_RelayStatus') {
  301. var switchReal = control.switchReal(Bind[r1].current_value,
  302. lamp, 5)
  303. } else if (Bind[r1].id == 'R7_RelayStatus') {
  304. var switchReal = control.switchReal(Bind[r1].current_value,
  305. lamp, 6)
  306. } else if (Bind[r1].id == 'R8_RelayStatus') {
  307. var switchReal = control.switchReal(Bind[r1].current_value,
  308. lamp, 7)
  309. } else if (Bind[r1].id == 'R9_RelayStatus') {
  310. var switchReal = control.switchReal(Bind[r1].current_value,
  311. lamp, 8)
  312. } else if (Bind[r1].id == 'R10_RelayStatus') {
  313. var switchReal = control.switchReal(Bind[r1].current_value,
  314. lamp, 9)
  315. } else if (Bind[r1].id == 'R11_RelayStatus') {
  316. var switchReal = control.switchReal(Bind[r1].current_value,
  317. lamp, 10)
  318. } else if (Bind[r1].id == 'R12_RelayStatus') {
  319. var switchReal = control.switchReal(Bind[r1].current_value,
  320. lamp, 11)
  321. }
  322. }
  323. wx.setStorageSync('lamp', switchReal)
  324. that.setData({
  325. lamp: wx.getStorageSync('lamp')
  326. })
  327. } else {
  328. wx.showModal({
  329. title: '错误',
  330. content: bind.data.error,
  331. showCancel: false
  332. })
  333. }
  334. })
  335. }
  336. //新设备
  337. else {
  338. var Switchstate = wx.getStorageSync('lamp')
  339. loopSwitchstate(id).then(res => {
  340. if (res.data.code == 0) {
  341. var relay = res.data.data
  342. if (relay[opens - 1].status == 1) {
  343. Switchstate[opens - 1] =
  344. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  345. } else {
  346. Switchstate[opens - 1] =
  347. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  348. }
  349. } else {
  350. wx.showModal({
  351. title: '错误',
  352. content: res.data.msg,
  353. showCancel: false
  354. })
  355. }
  356. })
  357. setTimeout(function() {
  358. wx.setStorageSync('lamp', Switchstate)
  359. that.setData({
  360. lamp: wx.getStorageSync('lamp')
  361. })
  362. }, 500)
  363. }
  364. }, 2000)
  365. } else {
  366. wx.showModal({
  367. title: '提示',
  368. content: '设备处于离线状态',
  369. showCancel: false
  370. })
  371. }
  372. },
  373. //回路关
  374. Shut(e) {
  375. wx.showToast({
  376. title: '发送指令中',
  377. icon: 'loading',
  378. duration: 2500
  379. })
  380. var that = this
  381. var play = that.data.play
  382. var id = that.data.id
  383. var lamp = wx.getStorageSync('lamp')
  384. var shuts = e.target.dataset.shut
  385. var loops = that.data.loops
  386. if (typeof(loops) == String) {
  387. loops = parseInt(loops)
  388. }
  389. if (play == 0) {
  390. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  391. if (res.data.errno == 0) {
  392. if (res.data.data.online == true) {
  393. that.setData({ status: '在线' })
  394. } else {
  395. that.setData({ status: '离线' })
  396. }
  397. } else {
  398. wx.showModal({
  399. title: '错误',
  400. content: res.data.error,
  401. showCancel: false
  402. })
  403. }
  404. })
  405. } else {
  406. getDevice(id, that.data.Groupno).then(dve => {
  407. if (dve.data.code == 0) {
  408. var state = dve.data.data
  409. switch (state.status) {
  410. case 0:
  411. that.setData({
  412. status: '离线'
  413. })
  414. break;
  415. case 1:
  416. that.setData({
  417. status: '在线'
  418. })
  419. break;
  420. }
  421. } else {
  422. wx.showModal({
  423. title: '错误',
  424. content: dve.data.msg,
  425. showCancel: false
  426. })
  427. }
  428. })
  429. }
  430. if (that.data.status == '在线') {
  431. if (shuts == 1) {
  432. if (play == 0) {
  433. control.Switch(that.data.deviceId, that.data.deviceKey, {
  434. 'R1_RelayStatus': 12,
  435. 'Reflash': 3
  436. })
  437. } else {
  438. control.newSwitch({
  439. deviceId: id,
  440. relayId: 1,
  441. operation: 0
  442. })
  443. }
  444. } else if (shuts == 2 && loops >= 2) {
  445. if (play == 0) {
  446. control.Switch(that.data.deviceId, that.data.deviceKey, {
  447. 'R2_RelayStatus': 12,
  448. 'Reflash': 3
  449. })
  450. } else {
  451. control.newSwitch({
  452. deviceId: id,
  453. relayId: 2,
  454. operation: 0
  455. })
  456. }
  457. } else if (shuts == 3 && loops >= 3) {
  458. if (play == 0) {
  459. control.Switch(that.data.deviceId, that.data.deviceKey, {
  460. 'R3_RelayStatus': 12,
  461. 'Reflash': 3
  462. })
  463. } else {
  464. control.newSwitch({
  465. deviceId: id,
  466. relayId: 3,
  467. operation: 0
  468. })
  469. }
  470. } else if (shuts == 4 && loops >= 4) {
  471. if (play == 0) {
  472. control.Switch(that.data.deviceId, that.data.deviceKey, {
  473. 'R4_RelayStatus': 12,
  474. 'Reflash': 3
  475. })
  476. } else {
  477. control.newSwitch({
  478. deviceId: id,
  479. relayId: 4,
  480. operation: 0
  481. })
  482. }
  483. } else if (shuts == 5 && loops >= 5) {
  484. if (play == 0) {
  485. control.Switch(that.data.deviceId, that.data.deviceKey, {
  486. 'R5_RelayStatus': 12,
  487. 'Reflash': 3
  488. })
  489. } else {
  490. control.newSwitch({
  491. deviceId: id,
  492. relayId: 5,
  493. operation: 0
  494. })
  495. }
  496. } else if (shuts == 6 && loops >= 6) {
  497. if (play == 0) {
  498. control.Switch(that.data.deviceId, that.data.deviceKey, {
  499. 'R6_RelayStatus': 12,
  500. 'Reflash': 3
  501. })
  502. } else {
  503. control.newSwitch({
  504. deviceId: id,
  505. relayId: 6,
  506. operation: 0
  507. })
  508. }
  509. } else if (shuts == 7 && loops >= 7) {
  510. if (play == 0) {
  511. control.Switch(that.data.deviceId, that.data.deviceKey, {
  512. 'R7_RelayStatus': 12,
  513. 'Reflash': 3
  514. })
  515. } else {
  516. control.newSwitch({
  517. deviceId: id,
  518. relayId: 7,
  519. operation: 0
  520. })
  521. }
  522. } else if (shuts == 8 && loops >= 8) {
  523. if (play == 0) {
  524. control.Switch(that.data.deviceId, that.data.deviceKey, {
  525. 'R8_RelayStatus': 12,
  526. 'Reflash': 3
  527. })
  528. } else {
  529. control.newSwitch({
  530. deviceId: id,
  531. relayId: 8,
  532. operation: 0
  533. })
  534. }
  535. } else if (shuts == 9 && loops >= 9) {
  536. if (play == 0) {
  537. control.Switch(that.data.deviceId, that.data.deviceKey, {
  538. 'R9_RelayStatus': 12,
  539. 'Reflash': 3
  540. })
  541. } else {
  542. control.newSwitch({
  543. deviceId: id,
  544. relayId: 9,
  545. operation: 0
  546. })
  547. }
  548. } else if (shuts == 10 && loops >= 10) {
  549. if (play == 0) {
  550. control.Switch(that.data.deviceId, that.data.deviceKey, {
  551. 'R10_RelayStatus': 12,
  552. 'Reflash': 3
  553. })
  554. } else {
  555. control.newSwitch({
  556. deviceId: id,
  557. relayId: 10,
  558. operation: 0
  559. })
  560. }
  561. } else if (shuts == 11 && loops >= 11) {
  562. if (play == 0) {
  563. control.Switch(that.data.deviceId, that.data.deviceKey, {
  564. 'R11_RelayStatus': 12,
  565. 'Reflash': 3
  566. })
  567. } else {
  568. control.newSwitch({
  569. deviceId: id,
  570. relayId: 11,
  571. operation: 0
  572. })
  573. }
  574. } else if (shuts == 12 && loops >= 12) {
  575. if (play == 0) {
  576. control.Switch(that.data.deviceId, that.data.deviceKey, {
  577. 'R12_RelayStatus': 12,
  578. 'Reflash': 3
  579. })
  580. } else {
  581. control.newSwitch({
  582. deviceId: id,
  583. relayId: 12,
  584. operation: 0
  585. })
  586. }
  587. }
  588. setTimeout(function() {
  589. if (play == 0) {
  590. getData(that.data.deviceId, that.data.deviceKey).then(bind => {
  591. if (bind.data.errno == 0) {
  592. let Bind = bind.data.data
  593. for (let r1 = 0; r1 < Bind.length; r1++) {
  594. if (Bind[r1].id == 'R1_RelayStatus') {
  595. var switchReal = control.switchReal(Bind[r1].current_value,
  596. lamp, 0)
  597. } else if (Bind[r1].id == 'R2_RelayStatus') {
  598. var switchReal = control.switchReal(Bind[r1].current_value,
  599. lamp, 1)
  600. } else if (Bind[r1].id == 'R3_RelayStatus') {
  601. var switchReal = control.switchReal(Bind[r1].current_value,
  602. lamp, 2)
  603. } else if (Bind[r1].id == 'R4_RelayStatus') {
  604. var switchReal = control.switchReal(Bind[r1].current_value,
  605. lamp, 3)
  606. } else if (Bind[r1].id == 'R5_RelayStatus') {
  607. var switchReal = control.switchReal(Bind[r1].current_value,
  608. lamp, 4)
  609. } else if (Bind[r1].id == 'R6_RelayStatus') {
  610. var switchReal = control.switchReal(Bind[r1].current_value,
  611. lamp, 5)
  612. } else if (Bind[r1].id == 'R7_RelayStatus') {
  613. var switchReal = control.switchReal(Bind[r1].current_value,
  614. lamp, 6)
  615. } else if (Bind[r1].id == 'R8_RelayStatus') {
  616. var switchReal = control.switchReal(Bind[r1].current_value,
  617. lamp, 7)
  618. } else if (Bind[r1].id == 'R9_RelayStatus') {
  619. var switchReal = control.switchReal(Bind[r1].current_value,
  620. lamp, 8)
  621. } else if (Bind[r1].id == 'R10_RelayStatus') {
  622. var switchReal = control.switchReal(Bind[r1].current_value,
  623. lamp, 9)
  624. } else if (Bind[r1].id == 'R11_RelayStatus') {
  625. var switchReal = control.switchReal(Bind[r1].current_value,
  626. lamp, 10)
  627. } else if (Bind[r1].id == 'R12_RelayStatus') {
  628. var switchReal = control.switchReal(Bind[r1].current_value,
  629. lamp, 11)
  630. }
  631. }
  632. wx.setStorageSync('lamp', switchReal)
  633. that.setData({
  634. lamp: wx.getStorageSync('lamp')
  635. })
  636. } else {
  637. wx.showModal({
  638. title: '错误',
  639. content: bind.data.error,
  640. showCancel: false
  641. })
  642. }
  643. })
  644. } else {
  645. var Switchstate = wx.getStorageSync('lamp')
  646. loopSwitchstate(id).then(res => {
  647. if (res.data.code == 0) {
  648. var relay = res.data.data
  649. if (relay[shuts - 1].status == 1) {
  650. Switchstate[shuts - 1] =
  651. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  652. } else {
  653. Switchstate[shuts - 1] =
  654. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  655. }
  656. } else {
  657. wx.showModal({
  658. title: '错误',
  659. content: res.data.msg,
  660. showCancel: false
  661. })
  662. }
  663. })
  664. setTimeout(function() {
  665. wx.setStorageSync('lamp', Switchstate)
  666. that.setData({
  667. lamp: wx.getStorageSync('lamp')
  668. })
  669. }, 500)
  670. }
  671. }, 2000)
  672. } else {
  673. wx.showModal({
  674. title: '提示',
  675. content: '设备处于离线状态',
  676. showCancel: false
  677. })
  678. }
  679. },
  680. //回路名称调整
  681. loopname(e) {
  682. var that = this
  683. var address = that.data.address //回路名称图标
  684. var loop = that.data.loop //回路名称
  685. var slice //截取数组
  686. var loops = that.data.loops //回路数量
  687. var group = wx.getStorageSync('group')
  688. var groupName = that.data.groupName[that.data.groupIndex] //分组名称
  689. var deviceName = that.data.deviceName[that.data.deviceIndex] //设备名称
  690. for (let i = 0; i < group.length; i++) {
  691. if (groupName == group[i].groupName) {
  692. for (let j = 0; j < group[i].devices.length; j++) {
  693. if (deviceName == group[i].devices[j].deviceName) {
  694. var deviceid = group[i].devices[j].id
  695. var groupid = group[i].devices[j].groupId
  696. }
  697. }
  698. }
  699. }
  700. //回路1
  701. if (e.target.dataset.loopname == 1) {
  702. wx.showModal({
  703. title: '修改回路名称',
  704. editable: true,
  705. placeholderText: '请输入名称',
  706. success: res => {
  707. if (res.confirm) {
  708. if (res.content == '') {
  709. wx.showModal({
  710. title: '提示',
  711. content: '请输入名称',
  712. showCancel: false
  713. })
  714. } else if (res.content.length > 10) {
  715. wx.showModal({
  716. title: '提示',
  717. content: '回路名称不能大于10个字符',
  718. showCancel: false
  719. })
  720. } else {
  721. loop[0] = res.content
  722. slice = loop.slice(0, loops)
  723. slice = slice.toString()
  724. putDevice({
  725. id: deviceid,
  726. groupId: groupid,
  727. circuits: slice
  728. }).then(res => {
  729. if (res.data.code == 0) {
  730. for (let i = 0; i < group.length; i++) {
  731. if (groupName == group[i].groupName) {
  732. for (let j = 0; j < group[i].devices
  733. .length; j++) {
  734. if (deviceName == group[i].devices[j]
  735. .deviceName) {
  736. group[i].devices[j].circuits = slice
  737. wx.setStorageSync('group', group)
  738. that.setData({
  739. loop: loop
  740. })
  741. }
  742. }
  743. }
  744. }
  745. } else {
  746. wx.showModal({
  747. title: '错误',
  748. content: res.data.msg,
  749. showCancel: false
  750. })
  751. }
  752. })
  753. }
  754. }
  755. }
  756. })
  757. }
  758. //回路2
  759. else if (e.target.dataset.loopname == 2 && address[1] != "") {
  760. wx.showModal({
  761. title: '修改回路名称',
  762. editable: true,
  763. placeholderText: '请输入名称',
  764. success: res => {
  765. if (res.confirm) {
  766. if (res.content == '') {
  767. wx.showModal({
  768. title: '提示',
  769. content: '请输入名称',
  770. showCancel: false
  771. })
  772. } else if (res.content.length > 10) {
  773. wx.showModal({
  774. title: '提示',
  775. content: '回路名称不能大于10个字符',
  776. showCancel: false
  777. })
  778. } else {
  779. loop[1] = res.content
  780. slice = loop.slice(0, loops)
  781. slice = slice.toString()
  782. putDevice({
  783. id: deviceid,
  784. groupId: groupid,
  785. circuits: slice
  786. }).then(res => {
  787. if (res.data.code == 0) {
  788. for (let i = 0; i < group.length; i++) {
  789. if (groupName == group[i].groupName) {
  790. for (let j = 0; j < group[i].devices
  791. .length; j++) {
  792. if (deviceName == group[i].devices[j]
  793. .deviceName) {
  794. group[i].devices[j].circuits = slice
  795. wx.setStorageSync('group', group)
  796. that.setData({
  797. loop: loop
  798. })
  799. }
  800. }
  801. }
  802. }
  803. } else {
  804. wx.showModal({
  805. title: '错误',
  806. content: res.data.msg,
  807. showCancel: false
  808. })
  809. }
  810. })
  811. }
  812. }
  813. }
  814. })
  815. }
  816. //回路3
  817. else if (e.target.dataset.loopname == 3 && address[2] != "") {
  818. wx.showModal({
  819. title: '修改回路名称',
  820. editable: true,
  821. placeholderText: '请输入名称',
  822. success: res => {
  823. if (res.confirm) {
  824. if (res.content == '') {
  825. wx.showModal({
  826. title: '提示',
  827. content: '请输入名称',
  828. showCancel: false
  829. })
  830. } else if (res.content.length > 10) {
  831. wx.showModal({
  832. title: '提示',
  833. content: '回路名称不能大于10个字符',
  834. showCancel: false
  835. })
  836. } else {
  837. loop[2] = res.content
  838. slice = loop.slice(0, loops)
  839. slice = slice.toString()
  840. putDevice({
  841. id: deviceid,
  842. groupId: groupid,
  843. circuits: slice
  844. }).then(res => {
  845. if (res.data.code == 0) {
  846. for (let i = 0; i < group.length; i++) {
  847. if (groupName == group[i].groupName) {
  848. for (let j = 0; j < group[i].devices
  849. .length; j++) {
  850. if (deviceName == group[i].devices[j]
  851. .deviceName) {
  852. group[i].devices[j].circuits = slice
  853. wx.setStorageSync('group', group)
  854. that.setData({
  855. loop: loop
  856. })
  857. }
  858. }
  859. }
  860. }
  861. } else {
  862. wx.showModal({
  863. title: '错误',
  864. content: res.data.msg,
  865. showCancel: false
  866. })
  867. }
  868. })
  869. }
  870. }
  871. }
  872. })
  873. }
  874. //回路4
  875. else if (e.target.dataset.loopname == 4 && address[3] != "") {
  876. wx.showModal({
  877. title: '修改回路名称',
  878. editable: true,
  879. placeholderText: '请输入名称',
  880. success: res => {
  881. if (res.confirm) {
  882. if (res.content == '') {
  883. wx.showModal({
  884. title: '提示',
  885. content: '请输入名称',
  886. showCancel: false
  887. })
  888. } else if (res.content.length > 10) {
  889. wx.showModal({
  890. title: '提示',
  891. content: '回路名称不能大于10个字符',
  892. showCancel: false
  893. })
  894. } else {
  895. loop[3] = res.content
  896. slice = loop.slice(0, loops)
  897. slice = slice.toString()
  898. putDevice({
  899. id: deviceid,
  900. groupId: groupid,
  901. circuits: slice
  902. }).then(res => {
  903. if (res.data.code == 0) {
  904. for (let i = 0; i < group.length; i++) {
  905. if (groupName == group[i].groupName) {
  906. for (let j = 0; j < group[i].devices
  907. .length; j++) {
  908. if (deviceName == group[i].devices[j]
  909. .deviceName) {
  910. group[i].devices[j].circuits = slice
  911. wx.setStorageSync('group', group)
  912. that.setData({
  913. loop: loop
  914. })
  915. }
  916. }
  917. }
  918. }
  919. } else {
  920. wx.showModal({
  921. title: '错误',
  922. content: res.data.msg,
  923. showCancel: false
  924. })
  925. }
  926. })
  927. }
  928. }
  929. }
  930. })
  931. }
  932. //回路5
  933. else if (e.target.dataset.loopname == 5 && address[4] != "") {
  934. wx.showModal({
  935. title: '修改回路名称',
  936. editable: true,
  937. placeholderText: '请输入名称',
  938. success: res => {
  939. if (res.confirm) {
  940. if (res.content == '') {
  941. wx.showModal({
  942. title: '提示',
  943. content: '请输入名称',
  944. showCancel: false
  945. })
  946. } else if (res.content.length > 10) {
  947. wx.showModal({
  948. title: '提示',
  949. content: '回路名称不能大于10个字符',
  950. showCancel: false
  951. })
  952. } else {
  953. loop[4] = res.content
  954. slice = loop.slice(0, loops)
  955. slice = slice.toString()
  956. putDevice({
  957. id: deviceid,
  958. groupId: groupid,
  959. circuits: slice
  960. }).then(res => {
  961. if (res.data.code == 0) {
  962. for (let i = 0; i < group.length; i++) {
  963. if (groupName == group[i].groupName) {
  964. for (let j = 0; j < group[i].devices
  965. .length; j++) {
  966. if (deviceName == group[i].devices[j]
  967. .deviceName) {
  968. group[i].devices[j].circuits = slice
  969. wx.setStorageSync('group', group)
  970. that.setData({
  971. loop: loop
  972. })
  973. }
  974. }
  975. }
  976. }
  977. } else {
  978. wx.showModal({
  979. title: '错误',
  980. content: res.data.msg,
  981. showCancel: false
  982. })
  983. }
  984. })
  985. }
  986. }
  987. }
  988. })
  989. }
  990. //回路6
  991. else if (e.target.dataset.loopname == 6 && address[5] != "") {
  992. wx.showModal({
  993. title: '修改回路名称',
  994. editable: true,
  995. placeholderText: '请输入名称',
  996. success: res => {
  997. if (res.confirm) {
  998. if (res.content == '') {
  999. wx.showModal({
  1000. title: '提示',
  1001. content: '请输入名称',
  1002. showCancel: false
  1003. })
  1004. } else if (res.content.length > 10) {
  1005. wx.showModal({
  1006. title: '提示',
  1007. content: '回路名称不能大于10个字符',
  1008. showCancel: false
  1009. })
  1010. } else {
  1011. loop[5] = res.content
  1012. slice = loop.slice(0, loops)
  1013. slice = slice.toString()
  1014. putDevice({
  1015. id: deviceid,
  1016. groupId: groupid,
  1017. circuits: slice
  1018. }).then(res => {
  1019. if (res.data.code == 0) {
  1020. for (let i = 0; i < group.length; i++) {
  1021. if (groupName == group[i].groupName) {
  1022. for (let j = 0; j < group[i].devices
  1023. .length; j++) {
  1024. if (deviceName == group[i].devices[j]
  1025. .deviceName) {
  1026. group[i].devices[j].circuits = slice
  1027. wx.setStorageSync('group', group)
  1028. that.setData({
  1029. loop: loop
  1030. })
  1031. }
  1032. }
  1033. }
  1034. }
  1035. } else {
  1036. wx.showModal({
  1037. title: '错误',
  1038. content: res.data.msg,
  1039. showCancel: false
  1040. })
  1041. }
  1042. })
  1043. }
  1044. }
  1045. }
  1046. })
  1047. }
  1048. //回路7
  1049. else if (e.target.dataset.loopname == 7 && address[6] != "") {
  1050. wx.showModal({
  1051. title: '修改回路名称',
  1052. editable: true,
  1053. placeholderText: '请输入名称',
  1054. success: res => {
  1055. if (res.confirm) {
  1056. if (res.content == '') {
  1057. wx.showModal({
  1058. title: '提示',
  1059. content: '请输入名称',
  1060. showCancel: false
  1061. })
  1062. } else if (res.content.length > 10) {
  1063. wx.showModal({
  1064. title: '提示',
  1065. content: '回路名称不能大于10个字符',
  1066. showCancel: false
  1067. })
  1068. } else {
  1069. loop[6] = res.content
  1070. slice = loop.slice(0, loops)
  1071. slice = slice.toString()
  1072. putDevice({
  1073. id: deviceid,
  1074. groupId: groupid,
  1075. circuits: slice
  1076. }).then(res => {
  1077. if (res.data.code == 0) {
  1078. for (let i = 0; i < group.length; i++) {
  1079. if (groupName == group[i].groupName) {
  1080. for (let j = 0; j < group[i].devices
  1081. .length; j++) {
  1082. if (deviceName == group[i].devices[j]
  1083. .deviceName) {
  1084. group[i].devices[j].circuits = slice
  1085. wx.setStorageSync('group', group)
  1086. that.setData({
  1087. loop: loop
  1088. })
  1089. }
  1090. }
  1091. }
  1092. }
  1093. } else {
  1094. wx.showModal({
  1095. title: '错误',
  1096. content: res.data.msg,
  1097. showCancel: false
  1098. })
  1099. }
  1100. })
  1101. }
  1102. }
  1103. }
  1104. })
  1105. }
  1106. //回路8
  1107. else if (e.target.dataset.loopname == 8 && address[7] != "") {
  1108. wx.showModal({
  1109. title: '修改回路名称',
  1110. editable: true,
  1111. placeholderText: '请输入名称',
  1112. success: res => {
  1113. if (res.confirm) {
  1114. if (res.content == '') {
  1115. wx.showModal({
  1116. title: '提示',
  1117. content: '请输入名称',
  1118. showCancel: false
  1119. })
  1120. } else if (res.content.length > 10) {
  1121. wx.showModal({
  1122. title: '提示',
  1123. content: '回路名称不能大于10个字符',
  1124. showCancel: false
  1125. })
  1126. } else {
  1127. loop[7] = res.content
  1128. slice = loop.slice(0, loops)
  1129. slice = slice.toString()
  1130. putDevice({
  1131. id: deviceid,
  1132. groupId: groupid,
  1133. circuits: slice
  1134. }).then(res => {
  1135. if (res.data.code == 0) {
  1136. for (let i = 0; i < group.length; i++) {
  1137. if (groupName == group[i].groupName) {
  1138. for (let j = 0; j < group[i].devices
  1139. .length; j++) {
  1140. if (deviceName == group[i].devices[j]
  1141. .deviceName) {
  1142. group[i].devices[j].circuits = slice
  1143. wx.setStorageSync('group', group)
  1144. that.setData({
  1145. loop: loop
  1146. })
  1147. }
  1148. }
  1149. }
  1150. }
  1151. } else {
  1152. wx.showModal({
  1153. title: '错误',
  1154. content: res.data.msg,
  1155. showCancel: false
  1156. })
  1157. }
  1158. })
  1159. }
  1160. }
  1161. }
  1162. })
  1163. }
  1164. //回路9
  1165. else if (e.target.dataset.loopname == 9 && address[8] != "") {
  1166. wx.showModal({
  1167. title: '修改回路名称',
  1168. editable: true,
  1169. placeholderText: '请输入名称',
  1170. success: res => {
  1171. if (res.confirm) {
  1172. if (res.content == '') {
  1173. wx.showModal({
  1174. title: '提示',
  1175. content: '请输入名称',
  1176. showCancel: false
  1177. })
  1178. } else if (res.content.length > 10) {
  1179. wx.showModal({
  1180. title: '提示',
  1181. content: '回路名称不能大于10个字符',
  1182. showCancel: false
  1183. })
  1184. } else {
  1185. loop[8] = res.content
  1186. slice = loop.slice(0, loops)
  1187. slice = slice.toString()
  1188. putDevice({
  1189. id: deviceid,
  1190. groupId: groupid,
  1191. circuits: slice
  1192. }).then(res => {
  1193. if (res.data.code == 0) {
  1194. for (let i = 0; i < group.length; i++) {
  1195. if (groupName == group[i].groupName) {
  1196. for (let j = 0; j < group[i].devices
  1197. .length; j++) {
  1198. if (deviceName == group[i].devices[j]
  1199. .deviceName) {
  1200. group[i].devices[j].circuits = slice
  1201. wx.setStorageSync('group', group)
  1202. that.setData({
  1203. loop: loop
  1204. })
  1205. }
  1206. }
  1207. }
  1208. }
  1209. } else {
  1210. wx.showModal({
  1211. title: '错误',
  1212. content: res.data.msg,
  1213. showCancel: false
  1214. })
  1215. }
  1216. })
  1217. }
  1218. }
  1219. }
  1220. })
  1221. }
  1222. //回路10
  1223. else if (e.target.dataset.loopname == 10 && address[9] != "") {
  1224. wx.showModal({
  1225. title: '修改回路名称',
  1226. editable: true,
  1227. placeholderText: '请输入名称',
  1228. success: res => {
  1229. if (res.confirm) {
  1230. if (res.content == '') {
  1231. wx.showModal({
  1232. title: '提示',
  1233. content: '请输入名称',
  1234. showCancel: false
  1235. })
  1236. } else if (res.content.length > 10) {
  1237. wx.showModal({
  1238. title: '提示',
  1239. content: '回路名称不能大于10个字符',
  1240. showCancel: false
  1241. })
  1242. } else {
  1243. loop[9] = res.content
  1244. slice = loop.slice(0, loops)
  1245. slice = slice.toString()
  1246. putDevice({
  1247. id: deviceid,
  1248. groupId: groupid,
  1249. circuits: slice
  1250. }).then(res => {
  1251. if (res.data.code == 0) {
  1252. for (let i = 0; i < group.length; i++) {
  1253. if (groupName == group[i].groupName) {
  1254. for (let j = 0; j < group[i].devices
  1255. .length; j++) {
  1256. if (deviceName == group[i].devices[j]
  1257. .deviceName) {
  1258. group[i].devices[j].circuits = slice
  1259. wx.setStorageSync('group', group)
  1260. that.setData({
  1261. loop: loop
  1262. })
  1263. }
  1264. }
  1265. }
  1266. }
  1267. } else {
  1268. wx.showModal({
  1269. title: '错误',
  1270. content: res.data.msg,
  1271. showCancel: false
  1272. })
  1273. }
  1274. })
  1275. }
  1276. }
  1277. }
  1278. })
  1279. }
  1280. //回路11
  1281. else if (e.target.dataset.loopname == 11 && address[10] != "") {
  1282. wx.showModal({
  1283. title: '修改回路名称',
  1284. editable: true,
  1285. placeholderText: '请输入名称',
  1286. success: res => {
  1287. if (res.confirm) {
  1288. if (res.content == '') {
  1289. wx.showModal({
  1290. title: '提示',
  1291. content: '请输入名称',
  1292. showCancel: false
  1293. })
  1294. } else if (res.content.length > 10) {
  1295. wx.showModal({
  1296. title: '提示',
  1297. content: '回路名称不能大于10个字符',
  1298. showCancel: false
  1299. })
  1300. } else {
  1301. loop[10] = res.content
  1302. slice = loop.slice(0, loops)
  1303. slice = slice.toString()
  1304. putDevice({
  1305. id: deviceid,
  1306. groupId: groupid,
  1307. circuits: slice
  1308. }).then(res => {
  1309. if (res.data.code == 0) {
  1310. for (let i = 0; i < group.length; i++) {
  1311. if (groupName == group[i].groupName) {
  1312. for (let j = 0; j < group[i].devices
  1313. .length; j++) {
  1314. if (deviceName == group[i].devices[j]
  1315. .deviceName) {
  1316. group[i].devices[j].circuits = slice
  1317. wx.setStorageSync('group', group)
  1318. that.setData({
  1319. loop: loop
  1320. })
  1321. }
  1322. }
  1323. }
  1324. }
  1325. } else {
  1326. wx.showModal({
  1327. title: '错误',
  1328. content: res.data.msg,
  1329. showCancel: false
  1330. })
  1331. }
  1332. })
  1333. }
  1334. }
  1335. }
  1336. })
  1337. }
  1338. //回路12
  1339. else if (e.target.dataset.loopname == 12 && address[11] != "") {
  1340. wx.showModal({
  1341. title: '修改回路名称',
  1342. editable: true,
  1343. placeholderText: '请输入名称',
  1344. success: res => {
  1345. if (res.confirm) {
  1346. if (res.content == '') {
  1347. wx.showModal({
  1348. title: '提示',
  1349. content: '请输入名称',
  1350. showCancel: false
  1351. })
  1352. } else if (res.content.length > 10) {
  1353. wx.showModal({
  1354. title: '提示',
  1355. content: '回路名称不能大于10个字符',
  1356. showCancel: false
  1357. })
  1358. } else {
  1359. loop[11] = res.content
  1360. slice = loop.slice(0, loops)
  1361. slice = slice.toString()
  1362. putDevice({
  1363. id: deviceid,
  1364. groupId: groupid,
  1365. circuits: slice
  1366. }).then(res => {
  1367. if (res.data.code == 0) {
  1368. for (let i = 0; i < group.length; i++) {
  1369. if (groupName == group[i].groupName) {
  1370. for (let j = 0; j < group[i].devices
  1371. .length; j++) {
  1372. if (deviceName == group[i].devices[j]
  1373. .deviceName) {
  1374. group[i].devices[j].circuits = slice
  1375. wx.setStorageSync('group', group)
  1376. that.setData({
  1377. loop: loop
  1378. })
  1379. }
  1380. }
  1381. }
  1382. }
  1383. } else {
  1384. wx.showModal({
  1385. title: '错误',
  1386. content: res.data.msg,
  1387. showCancel: false
  1388. })
  1389. }
  1390. })
  1391. }
  1392. }
  1393. }
  1394. })
  1395. }
  1396. },
  1397. //全开
  1398. Fullopen: function() {
  1399. wx.showToast({
  1400. title: '发送指令中',
  1401. icon: 'loading',
  1402. duration: 2500
  1403. })
  1404. var that = this
  1405. //获取设备的在线状态
  1406. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  1407. if (res.data.errno == 0) {
  1408. if (res.data.data.online == true) {
  1409. that.setData({ status: '在线' })
  1410. } else {
  1411. that.setData({ status: '离线' })
  1412. }
  1413. } else {
  1414. wx.showModal({
  1415. title: '错误',
  1416. content: res.data.error,
  1417. showCancel: false
  1418. })
  1419. }
  1420. })
  1421. var obj = {
  1422. 'R1_RelayStatus': 13,
  1423. 'R2_RelayStatus': 13,
  1424. 'R3_RelayStatus': 13,
  1425. 'R4_RelayStatus': 13,
  1426. 'R5_RelayStatus': 13,
  1427. 'R6_RelayStatus': 13,
  1428. 'R7_RelayStatus': 13,
  1429. 'R8_RelayStatus': 13,
  1430. 'R9_RelayStatus': 13,
  1431. 'R10_RelayStatus': 13,
  1432. 'R11_RelayStatus': 13,
  1433. 'R12_RelayStatus': 13,
  1434. 'Reflash': 3
  1435. }
  1436. if (that.data.status == '在线') {
  1437. postData(that.data.deviceId, that.data.deviceKey, obj).then(res => {
  1438. if (res.data.errno == 0) {
  1439. wx.setStorageSync('lamp', [])
  1440. var lamp = wx.getStorageSync('lamp')
  1441. for (let h = 0; h < 12; h++) {
  1442. lamp.push(
  1443. "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  1444. )
  1445. }
  1446. setTimeout(function() {
  1447. getData(that.data.deviceId, that.data.deviceKey).then(bind => {
  1448. if (bind.data.errno == 0) {
  1449. let Bind = bind.data.data
  1450. for (let r1 = 0; r1 < Bind.length; r1++) {
  1451. if (Bind[r1].id == 'R1_RelayStatus') {
  1452. var switchReal = control.switchReal(Bind[r1]
  1453. .current_value, lamp, 0)
  1454. } else if (Bind[r1].id == 'R2_RelayStatus') {
  1455. var switchReal = control.switchReal(Bind[r1]
  1456. .current_value, lamp, 1)
  1457. } else if (Bind[r1].id == 'R3_RelayStatus') {
  1458. var switchReal = control.switchReal(Bind[r1]
  1459. .current_value, lamp, 2)
  1460. } else if (Bind[r1].id == 'R4_RelayStatus') {
  1461. var switchReal = control.switchReal(Bind[r1]
  1462. .current_value, lamp, 3)
  1463. } else if (Bind[r1].id == 'R5_RelayStatus') {
  1464. var switchReal = control.switchReal(Bind[r1]
  1465. .current_value, lamp, 4)
  1466. } else if (Bind[r1].id == 'R6_RelayStatus') {
  1467. var switchReal = control.switchReal(Bind[r1]
  1468. .current_value, lamp, 5)
  1469. } else if (Bind[r1].id == 'R7_RelayStatus') {
  1470. var switchReal = control.switchReal(Bind[r1]
  1471. .current_value, lamp, 6)
  1472. } else if (Bind[r1].id == 'R8_RelayStatus') {
  1473. var switchReal = control.switchReal(Bind[r1]
  1474. .current_value, lamp, 7)
  1475. } else if (Bind[r1].id == 'R9_RelayStatus') {
  1476. var switchReal = control.switchReal(Bind[r1]
  1477. .current_value, lamp, 8)
  1478. } else if (Bind[r1].id == 'R10_RelayStatus') {
  1479. var switchReal = control.switchReal(Bind[r1]
  1480. .current_value, lamp, 9)
  1481. } else if (Bind[r1].id == 'R11_RelayStatus') {
  1482. var switchReal = control.switchReal(Bind[r1]
  1483. .current_value, lamp, 10)
  1484. } else if (Bind[r1].id == 'R12_RelayStatus') {
  1485. var switchReal = control.switchReal(Bind[r1]
  1486. .current_value, lamp, 11)
  1487. }
  1488. }
  1489. wx.setStorageSync('lamp', switchReal)
  1490. that.setData({
  1491. lamp: wx.getStorageSync('lamp')
  1492. })
  1493. } else {
  1494. wx.showModal({
  1495. title: '错误',
  1496. content: bind.data.error,
  1497. showCancel: false
  1498. })
  1499. }
  1500. })
  1501. }, 2000)
  1502. } else {
  1503. wx.showModal({
  1504. title: '提示',
  1505. content: res.data.error,
  1506. showCancel: false
  1507. })
  1508. }
  1509. })
  1510. } else {
  1511. wx.showModal({
  1512. title: '提示',
  1513. content: '设备处于离线状态',
  1514. showCancel: false
  1515. })
  1516. }
  1517. },
  1518. //全关
  1519. Allclosed: function() {
  1520. wx.showToast({
  1521. title: '发送指令中',
  1522. icon: 'loading',
  1523. duration: 2500
  1524. })
  1525. var that = this
  1526. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  1527. if (res.data.errno == 0) {
  1528. if (res.data.data.online == true) {
  1529. that.setData({ status: '在线' })
  1530. } else {
  1531. that.setData({ status: '离线' })
  1532. }
  1533. } else {
  1534. wx.showModal({
  1535. title: '错误',
  1536. content: res.data.error,
  1537. showCancel: false
  1538. })
  1539. }
  1540. })
  1541. var obj = {
  1542. 'R1_RelayStatus': 12,
  1543. 'R2_RelayStatus': 12,
  1544. 'R3_RelayStatus': 12,
  1545. 'R4_RelayStatus': 12,
  1546. 'R5_RelayStatus': 12,
  1547. 'R6_RelayStatus': 12,
  1548. 'R7_RelayStatus': 12,
  1549. 'R8_RelayStatus': 12,
  1550. 'R9_RelayStatus': 12,
  1551. 'R10_RelayStatus': 12,
  1552. 'R11_RelayStatus': 12,
  1553. 'R12_RelayStatus': 12,
  1554. 'Reflash': 3
  1555. }
  1556. if (that.data.status == '在线') {
  1557. postData(that.data.deviceId, that.data.deviceKey, obj).then(res => {
  1558. if (res.data.errno == 0) {
  1559. wx.setStorageSync('lamp', [])
  1560. var lamp = wx.getStorageSync('lamp')
  1561. for (let h = 0; h < 12; h++) {
  1562. lamp.push(
  1563. "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  1564. )
  1565. }
  1566. setTimeout(function() {
  1567. getData(that.data.deviceId, that.data.deviceKey).then(bind => {
  1568. if (bind.data.errno == 0) {
  1569. let Bind = bind.data.data
  1570. for (let r1 = 0; r1 < Bind.length; r1++) {
  1571. if (Bind[r1].id == 'R1_RelayStatus') {
  1572. var switchReal = control.switchReal(Bind[r1]
  1573. .current_value, lamp, 0)
  1574. } else if (Bind[r1].id == 'R2_RelayStatus') {
  1575. var switchReal = control.switchReal(Bind[r1]
  1576. .current_value, lamp, 1)
  1577. } else if (Bind[r1].id == 'R3_RelayStatus') {
  1578. var switchReal = control.switchReal(Bind[r1]
  1579. .current_value, lamp, 2)
  1580. } else if (Bind[r1].id == 'R4_RelayStatus') {
  1581. var switchReal = control.switchReal(Bind[r1]
  1582. .current_value, lamp, 3)
  1583. } else if (Bind[r1].id == 'R5_RelayStatus') {
  1584. var switchReal = control.switchReal(Bind[r1]
  1585. .current_value, lamp, 4)
  1586. } else if (Bind[r1].id == 'R6_RelayStatus') {
  1587. var switchReal = control.switchReal(Bind[r1]
  1588. .current_value, lamp, 5)
  1589. } else if (Bind[r1].id == 'R7_RelayStatus') {
  1590. var switchReal = control.switchReal(Bind[r1]
  1591. .current_value, lamp, 6)
  1592. } else if (Bind[r1].id == 'R8_RelayStatus') {
  1593. var switchReal = control.switchReal(Bind[r1]
  1594. .current_value, lamp, 7)
  1595. } else if (Bind[r1].id == 'R9_RelayStatus') {
  1596. var switchReal = control.switchReal(Bind[r1]
  1597. .current_value, lamp, 8)
  1598. } else if (Bind[r1].id == 'R10_RelayStatus') {
  1599. var switchReal = control.switchReal(Bind[r1]
  1600. .current_value, lamp, 9)
  1601. } else if (Bind[r1].id == 'R11_RelayStatus') {
  1602. var switchReal = control.switchReal(Bind[r1]
  1603. .current_value, lamp, 10)
  1604. } else if (Bind[r1].id == 'R12_RelayStatus') {
  1605. var switchReal = control.switchReal(Bind[r1]
  1606. .current_value, lamp, 11)
  1607. }
  1608. }
  1609. wx.setStorageSync('lamp', switchReal)
  1610. that.setData({
  1611. lamp: wx.getStorageSync('lamp')
  1612. })
  1613. } else {
  1614. wx.showModal({
  1615. title: '错误',
  1616. content: bind.data.error,
  1617. showCancel: false
  1618. })
  1619. }
  1620. })
  1621. }, 2000)
  1622. } else {
  1623. wx.showModal({
  1624. title: '提示',
  1625. content: res.data.error,
  1626. showCancel: false
  1627. })
  1628. }
  1629. })
  1630. } else {
  1631. wx.showModal({
  1632. title: '提示',
  1633. content: '设备处于离线状态',
  1634. showCancel: false
  1635. })
  1636. }
  1637. },
  1638. //分组下拉
  1639. changegroup: function(e) {
  1640. var that = this
  1641. that.setData({
  1642. groupIndex: e.detail.value
  1643. })
  1644. var groupName = that.data.groupName[that.data.groupIndex] //选择的分组名称
  1645. wx.setStorageSync('groupName', groupName) //将修改的分组名称放入缓存
  1646. //获取设备名称下拉
  1647. var group = wx.getStorageSync('group')
  1648. var deviceName = that.data.deviceName
  1649. var deviceName = []
  1650. for (let i = 0; i < group.length; i++) {
  1651. if (group[i].groupName == groupName) {
  1652. if (group[i].devices != null && group[i].devices.length != 0) {
  1653. wx.showToast({
  1654. title: '刷新中',
  1655. icon: 'loading',
  1656. duration: 2000
  1657. })
  1658. for (let j = 0; j < group[i].devices.length; j++) {
  1659. deviceName.push(group[i].devices[j].deviceName)
  1660. }
  1661. that.setData({
  1662. deviceName: deviceName,
  1663. deviceIndex: 0
  1664. })
  1665. var groupNames = that.data.groupName[that.data.groupIndex] //当前分组
  1666. var deviceNames = that.data.deviceName[that.data.deviceIndex] //当前设备
  1667. wx.setStorageSync('deviceName', deviceNames) //将修改设备名放入缓存
  1668. //获取设备信息
  1669. for (let d = 0; d < group.length; d++) {
  1670. if (groupNames == group[d].groupName) {
  1671. var Groupno = group[d].id //分组id
  1672. for (let g = 0; g < group[d].devices.length; g++) {
  1673. if (deviceNames == group[d].devices[g].deviceName) {
  1674. //旧设备信息
  1675. if (group[d].devices[g].module == 0) {
  1676. var id = group[d].devices[g].id
  1677. var circuitNum = group[d].devices[g].circuitNum
  1678. var circuits = group[d].devices[g].circuits
  1679. var deviceId = group[d].devices[g].deviceId
  1680. var deviceKey = group[d].devices[g].deviceKey
  1681. var moudule = group[d].devices[g].module
  1682. that.setData({
  1683. play: 0
  1684. })
  1685. }
  1686. //新设备信息
  1687. else {
  1688. var circuitNum = group[d].devices[g].circuitNum
  1689. var circuits = group[d].devices[g].circuits
  1690. var moudule = group[d].devices[g].module
  1691. var id = group[d].devices[g].id
  1692. var ID = group[d].devices[g].deviceId
  1693. that.setData({
  1694. play: 1,
  1695. ID: ID
  1696. })
  1697. }
  1698. }
  1699. }
  1700. }
  1701. }
  1702. that.setData({
  1703. moudule: moudule,
  1704. id: id,
  1705. loops: circuitNum,
  1706. Groupno: Groupno
  1707. })
  1708. //灯泡图标缓存
  1709. wx.setStorageSync('lamp', [])
  1710. var lamp = wx.getStorageSync('lamp')
  1711. for (let h = 0; h < 12; h++) {
  1712. lamp.push(
  1713. "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  1714. )
  1715. }
  1716. //旧设备
  1717. if (moudule == 0) {
  1718. //重置状态
  1719. let combination = control.Refresh()
  1720. that.setData({
  1721. loop: combination[0],
  1722. address: combination[1],
  1723. lamp: combination[2],
  1724. size: combination[3],
  1725. Color: combination[4]
  1726. })
  1727. //..............................
  1728. that.setData({
  1729. deviceId: deviceId,
  1730. deviceKey: deviceKey
  1731. })
  1732. var Circuits = circuits.split(',')
  1733. let loop = that.data.loop
  1734. for (let vr = 0; vr < circuitNum; vr++) {
  1735. loop[vr] = Circuits[vr]
  1736. }
  1737. that.setData({
  1738. loop: loop
  1739. })
  1740. postData(deviceId, deviceKey, {
  1741. "Reflash": 3
  1742. }).then(res => {
  1743. if (res.data.errno == 0 || res.data.errno == 10) {
  1744. setTimeout(function() {
  1745. getBasic(deviceId, deviceKey).then(ever => {
  1746. if (ever.data.errno == 0) {
  1747. if (ever.data.data.online == true) {
  1748. that.setData({
  1749. status: "在线"
  1750. })
  1751. } else {
  1752. that.setData({
  1753. status: "离线"
  1754. })
  1755. }
  1756. getData(deviceId, deviceKey).then(
  1757. ver => {
  1758. if (ver.data.errno == 0) {
  1759. let data = ver.data.data
  1760. for (let i = 0; i < data
  1761. .length; i++) {
  1762. if (data[i].id ==
  1763. "RelayCount") {
  1764. var quantity =
  1765. data[i]
  1766. .current_value
  1767. that.setData({
  1768. loops: quantity
  1769. })
  1770. } else if (data[i]
  1771. .id ==
  1772. "ManualStatus"
  1773. ) {
  1774. if (data[i]
  1775. .current_value ==
  1776. 0) {
  1777. that.setData({
  1778. Modecontrol: "自动"
  1779. })
  1780. } else {
  1781. that.setData({
  1782. Modecontrol: "手动"
  1783. })
  1784. }
  1785. }
  1786. //回路1
  1787. else if (data[i]
  1788. .id ==
  1789. 'R1_RelayStatus'
  1790. ) {
  1791. let police =
  1792. data[i]
  1793. .current_value
  1794. var lamps =
  1795. control
  1796. .switchReal(
  1797. police,
  1798. lamp, 0)
  1799. } else if (data[i]
  1800. .id ==
  1801. 'R2_RelayStatus'
  1802. ) {
  1803. let police =
  1804. data[i]
  1805. .current_value
  1806. var lamps =
  1807. control
  1808. .switchReal(
  1809. police,
  1810. lamp, 1)
  1811. } else if (data[i]
  1812. .id ==
  1813. 'R3_RelayStatus'
  1814. ) {
  1815. let police =
  1816. data[i]
  1817. .current_value
  1818. var lamps =
  1819. control
  1820. .switchReal(
  1821. police,
  1822. lamp, 2)
  1823. } else if (data[i]
  1824. .id ==
  1825. 'R4_RelayStatus'
  1826. ) {
  1827. let police =
  1828. data[i]
  1829. .current_value
  1830. var lamps =
  1831. control
  1832. .switchReal(
  1833. police,
  1834. lamp, 3)
  1835. } else if (data[i]
  1836. .id ==
  1837. 'R5_RelayStatus'
  1838. ) {
  1839. let police =
  1840. data[i]
  1841. .current_value
  1842. var lamps =
  1843. control
  1844. .switchReal(
  1845. police,
  1846. lamp, 4)
  1847. } else if (data[i]
  1848. .id ==
  1849. 'R6_RelayStatus'
  1850. ) {
  1851. let police =
  1852. data[i]
  1853. .current_value
  1854. var lamps =
  1855. control
  1856. .switchReal(
  1857. police,
  1858. lamp, 5)
  1859. } else if (data[i]
  1860. .id ==
  1861. 'R7_RelayStatus'
  1862. ) {
  1863. let police =
  1864. data[i]
  1865. .current_value
  1866. var lamps =
  1867. control
  1868. .switchReal(
  1869. police,
  1870. lamp, 6)
  1871. } else if (data[i]
  1872. .id ==
  1873. 'R8_RelayStatus'
  1874. ) {
  1875. let police =
  1876. data[i]
  1877. .current_value
  1878. var lamps =
  1879. control
  1880. .switchReal(
  1881. police,
  1882. lamp, 7)
  1883. } else if (data[i]
  1884. .id ==
  1885. 'R9_RelayStatus'
  1886. ) {
  1887. let police =
  1888. data[i]
  1889. .current_value
  1890. var lamps =
  1891. control
  1892. .switchReal(
  1893. police,
  1894. lamp, 8)
  1895. } else if (data[i]
  1896. .id ==
  1897. 'R10_RelayStatus'
  1898. ) {
  1899. let police =
  1900. data[i]
  1901. .current_value
  1902. var lamps =
  1903. control
  1904. .switchReal(
  1905. police,
  1906. lamp, 9)
  1907. } else if (data[i]
  1908. .id ==
  1909. 'R11_RelayStatus'
  1910. ) {
  1911. let police =
  1912. data[i]
  1913. .current_value
  1914. var lamps =
  1915. control
  1916. .switchReal(
  1917. police,
  1918. lamp, 10
  1919. )
  1920. } else if (data[i]
  1921. .id ==
  1922. 'R12_RelayStatus'
  1923. ) {
  1924. let police =
  1925. data[i]
  1926. .current_value
  1927. var lamps =
  1928. control
  1929. .switchReal(
  1930. police,
  1931. lamp, 11
  1932. )
  1933. }
  1934. wx.setStorageSync(
  1935. 'lamp',
  1936. lamps)
  1937. that.setData({
  1938. lamp: wx
  1939. .getStorageSync(
  1940. 'lamp'
  1941. )
  1942. })
  1943. }
  1944. var Loop = that.data
  1945. .Loop
  1946. var color = that.data
  1947. .Color
  1948. var size = that.data
  1949. .Size
  1950. var Address = that.data
  1951. .address
  1952. var enloop = that.data
  1953. .loop
  1954. for (let i = 0; i <
  1955. quantity; i++) {
  1956. Loop[i] = enloop[i]
  1957. color[i] = "black"
  1958. size[i] =
  1959. "calc(100vw * 16/375)",
  1960. Address[i] =
  1961. "/image/modify.png"
  1962. }
  1963. that.setData({
  1964. Color: color,
  1965. Size: size,
  1966. address: Address,
  1967. Loop: Loop
  1968. })
  1969. } else {
  1970. wx.showModal({
  1971. title: '错误',
  1972. content: ver
  1973. .data
  1974. .error,
  1975. showCancel: false
  1976. })
  1977. }
  1978. })
  1979. } else {
  1980. wx.showModal({
  1981. title: '错误',
  1982. content: ever.data.error,
  1983. showCancel: false
  1984. })
  1985. }
  1986. })
  1987. }, 2000)
  1988. } else {
  1989. setTimeout(function() {
  1990. wx.showModal({
  1991. title: '错误',
  1992. content: res.data.error,
  1993. showCancel: false
  1994. })
  1995. }, 2000)
  1996. }
  1997. })
  1998. }
  1999. //新设备
  2000. else {
  2001. //重置状态
  2002. let combination = control.Refresh()
  2003. that.setData({
  2004. loop: combination[0],
  2005. address: combination[1],
  2006. lamp: combination[2],
  2007. size: combination[3],
  2008. Color: combination[4]
  2009. })
  2010. //..............................
  2011. //获取设备在线状态
  2012. getDevice(id, Groupno).then(dve => {
  2013. if (dve.data.code == 0) {
  2014. var state = dve.data.data
  2015. switch (state.status) {
  2016. case 0:
  2017. that.setData({
  2018. status: '离线'
  2019. })
  2020. break;
  2021. case 1:
  2022. that.setData({
  2023. status: '在线'
  2024. })
  2025. break;
  2026. }
  2027. } else {
  2028. wx.showModal({
  2029. title: '错误',
  2030. content: dve.data.msg,
  2031. showCancel: false
  2032. })
  2033. }
  2034. })
  2035. var Circuits = circuits.split(',')
  2036. let loop = that.data.loop
  2037. for (let vr = 0; vr < circuitNum; vr++) {
  2038. loop[vr] = Circuits[vr]
  2039. }
  2040. that.setData({
  2041. loop: loop
  2042. })
  2043. getloop(id).then(res => {
  2044. if (res.data.code == 0) {
  2045. let loopState = res.data.data
  2046. //loopState.length可以视为回路数量
  2047. var Loop = that.data.Loop
  2048. var color = that.data.Color
  2049. var size = that.data.Size
  2050. var Address = that.data.address
  2051. for (let n = 0; n < loopState.length; n++) {
  2052. Loop[n] = that.data.Loop[n]
  2053. color[n] = "black"
  2054. size[n] = "calc(100vw * 16/375)",
  2055. Address[n] = "/image/modify.png"
  2056. }
  2057. that.setData({
  2058. Color: color,
  2059. Size: size,
  2060. address: Address,
  2061. Loop: Loop
  2062. })
  2063. } else {
  2064. wx.showModal({
  2065. title: '错误',
  2066. content: res.data.msg,
  2067. showCancel: false
  2068. })
  2069. }
  2070. })
  2071. loopSwitchstate(id).then(res => {
  2072. if (res.data.code == 0) {
  2073. var relay = res.data.data
  2074. for (let e = 0; e < relay.length; e++) {
  2075. if (relay[e].status == 1) {
  2076. lamp[e] =
  2077. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  2078. } else if (relay[e].status == 0) {
  2079. lamp[e] =
  2080. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  2081. } else {
  2082. lamp[e] =
  2083. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  2084. }
  2085. }
  2086. } else {
  2087. wx.showModal({
  2088. title: '错误',
  2089. content: res.data.msg,
  2090. showCancel: false
  2091. })
  2092. }
  2093. })
  2094. setTimeout(function() {
  2095. wx.setStorageSync('lamp', lamp)
  2096. that.setData({
  2097. lamp: wx.getStorageSync('lamp')
  2098. })
  2099. }, 2000)
  2100. }
  2101. } else {
  2102. that.setData({
  2103. status: '离线',
  2104. deviceName: []
  2105. })
  2106. wx.setStorageSync('deviceName', '') //清空设备名称缓存
  2107. }
  2108. }
  2109. }
  2110. },
  2111. //设备下拉
  2112. changedevice: function(e) {
  2113. wx.showToast({
  2114. title: '刷新中',
  2115. icon: 'loading',
  2116. duration: 2000
  2117. })
  2118. var that = this
  2119. that.setData({
  2120. deviceIndex: e.detail.value
  2121. })
  2122. var group = wx.getStorageSync('group')
  2123. var groupName = that.data.groupName[that.data.groupIndex]
  2124. var deviceName = that.data.deviceName[that.data.deviceIndex]
  2125. wx.setStorageSync('groupName', groupName) //分组名称
  2126. wx.setStorageSync('deviceName', deviceName) //设备名称
  2127. for (let index = 0; index < group.length; index++) {
  2128. if (groupName == group[index].groupName) {
  2129. var Groupno = group[index].id //分组id
  2130. for (let t = 0; t < group[index].devices.length; t++) {
  2131. if (deviceName == group[index].devices[t].deviceName) {
  2132. //旧设备信息
  2133. if (group[index].devices[t].module == 0) {
  2134. var id = group[index].devices[t].id
  2135. var circuitNum = group[index].devices[t].circuitNum
  2136. var circuits = group[index].devices[t].circuits
  2137. var deviceId = group[index].devices[t].deviceId
  2138. var deviceKey = group[index].devices[t].deviceKey
  2139. var moudule = group[index].devices[t].module
  2140. that.setData({
  2141. play: 0
  2142. })
  2143. }
  2144. //新设备信息
  2145. else {
  2146. var circuitNum = group[index].devices[t].circuitNum
  2147. var circuits = group[index].devices[t].circuits
  2148. var moudule = group[index].devices[t].module
  2149. var id = group[index].devices[t].id
  2150. var ID = group[index].devices[t].deviceId
  2151. that.setData({
  2152. play: 1,
  2153. ID: ID,
  2154. })
  2155. }
  2156. }
  2157. }
  2158. }
  2159. }
  2160. that.setData({
  2161. moudule: moudule,
  2162. id: id,
  2163. loops: circuitNum,
  2164. Groupno: Groupno
  2165. })
  2166. //灯泡图标缓存
  2167. wx.setStorageSync('lamp', [])
  2168. var lamp = wx.getStorageSync('lamp')
  2169. for (let h = 0; h < 12; h++) {
  2170. lamp.push("https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png")
  2171. }
  2172. //旧设备
  2173. if (moudule == 0) {
  2174. //重置状态
  2175. let combination = control.Refresh()
  2176. that.setData({
  2177. loop: combination[0],
  2178. address: combination[1],
  2179. lamp: combination[2],
  2180. size: combination[3],
  2181. Color: combination[4]
  2182. })
  2183. //..............................
  2184. that.setData({
  2185. deviceId: deviceId,
  2186. deviceKey: deviceKey
  2187. })
  2188. var Circuits = circuits.split(',')
  2189. let loop = that.data.loop
  2190. for (let vr = 0; vr < circuitNum; vr++) {
  2191. loop[vr] = Circuits[vr]
  2192. }
  2193. that.setData({
  2194. loop: loop
  2195. })
  2196. postData(deviceId, deviceKey, {
  2197. "Reflash": 3
  2198. }).then(res => {
  2199. if (res.data.errno == 0 || res.data.errno == 10) {
  2200. setTimeout(function() {
  2201. getBasic(deviceId, deviceKey).then(ever => {
  2202. if (ever.data.errno == 0) {
  2203. if (ever.data.data.online == true) {
  2204. that.setData({
  2205. status: "在线"
  2206. })
  2207. } else {
  2208. that.setData({
  2209. status: "离线"
  2210. })
  2211. }
  2212. getData(deviceId, deviceKey).then(ver => {
  2213. if (ver.data.errno == 0) {
  2214. let data = ver.data.data
  2215. for (let i = 0; i < data
  2216. .length; i++) {
  2217. if (data[i].id ==
  2218. "RelayCount") {
  2219. var quantity = data[i]
  2220. .current_value
  2221. that.setData({
  2222. loops: quantity
  2223. })
  2224. } else if (data[i].id ==
  2225. "ManualStatus") {
  2226. if (data[i].current_value ==
  2227. 0) {
  2228. that.setData({
  2229. Modecontrol: "自动"
  2230. })
  2231. } else {
  2232. that.setData({
  2233. Modecontrol: "手动"
  2234. })
  2235. }
  2236. }
  2237. //回路1
  2238. else if (data[i].id ==
  2239. 'R1_RelayStatus') {
  2240. let police = data[i]
  2241. .current_value
  2242. var lamps = control
  2243. .switchReal(police,
  2244. lamp, 0)
  2245. } else if (data[i].id ==
  2246. 'R2_RelayStatus') {
  2247. let police = data[i]
  2248. .current_value
  2249. var lamps = control
  2250. .switchReal(police,
  2251. lamp, 1)
  2252. } else if (data[i].id ==
  2253. 'R3_RelayStatus') {
  2254. let police = data[i]
  2255. .current_value
  2256. var lamps = control
  2257. .switchReal(police,
  2258. lamp, 2)
  2259. } else if (data[i].id ==
  2260. 'R4_RelayStatus') {
  2261. let police = data[i]
  2262. .current_value
  2263. var lamps = control
  2264. .switchReal(police,
  2265. lamp, 3)
  2266. } else if (data[i].id ==
  2267. 'R5_RelayStatus') {
  2268. let police = data[i]
  2269. .current_value
  2270. var lamps = control
  2271. .switchReal(police,
  2272. lamp, 4)
  2273. } else if (data[i].id ==
  2274. 'R6_RelayStatus') {
  2275. let police = data[i]
  2276. .current_value
  2277. var lamps = control
  2278. .switchReal(police,
  2279. lamp, 5)
  2280. } else if (data[i].id ==
  2281. 'R7_RelayStatus') {
  2282. let police = data[i]
  2283. .current_value
  2284. var lamps = control
  2285. .switchReal(police,
  2286. lamp, 6)
  2287. } else if (data[i].id ==
  2288. 'R8_RelayStatus') {
  2289. let police = data[i]
  2290. .current_value
  2291. var lamps = control
  2292. .switchReal(police,
  2293. lamp, 7)
  2294. } else if (data[i].id ==
  2295. 'R9_RelayStatus') {
  2296. let police = data[i]
  2297. .current_value
  2298. var lamps = control
  2299. .switchReal(police,
  2300. lamp, 8)
  2301. } else if (data[i].id ==
  2302. 'R10_RelayStatus') {
  2303. let police = data[i]
  2304. .current_value
  2305. var lamps = control
  2306. .switchReal(police,
  2307. lamp, 9)
  2308. } else if (data[i].id ==
  2309. 'R11_RelayStatus') {
  2310. let police = data[i]
  2311. .current_value
  2312. var lamps = control
  2313. .switchReal(police,
  2314. lamp, 10)
  2315. } else if (data[i].id ==
  2316. 'R12_RelayStatus') {
  2317. let police = data[i]
  2318. .current_value
  2319. var lamps = control
  2320. .switchReal(police,
  2321. lamp, 11)
  2322. }
  2323. wx.setStorageSync('lamp', lamps)
  2324. that.setData({
  2325. lamp: wx
  2326. .getStorageSync(
  2327. 'lamp')
  2328. })
  2329. }
  2330. var Loop = that.data.Loop
  2331. var color = that.data.Color
  2332. var size = that.data.Size
  2333. var Address = that.data.address
  2334. var enloop = that.data.loop
  2335. for (let i = 0; i < quantity; i++) {
  2336. Loop[i] = enloop[i]
  2337. color[i] = "black"
  2338. size[i] =
  2339. "calc(100vw * 16/375)",
  2340. Address[i] =
  2341. "/image/modify.png"
  2342. }
  2343. that.setData({
  2344. Color: color,
  2345. Size: size,
  2346. address: Address,
  2347. Loop: Loop
  2348. })
  2349. } else {
  2350. wx.showModal({
  2351. title: '错误',
  2352. content: ver.data.error,
  2353. showCancel: false
  2354. })
  2355. }
  2356. })
  2357. } else {
  2358. wx.showModal({
  2359. title: '错误',
  2360. content: ever.data.error,
  2361. showCancel: false
  2362. })
  2363. }
  2364. })
  2365. }, 2000)
  2366. } else if (res.data.errno == 10) {
  2367. setTimeout(function() {
  2368. that.setData({ status: '离线' })
  2369. }, 2000)
  2370. } else {
  2371. setTimeout(function() {
  2372. wx.showModal({
  2373. title: '错误',
  2374. content: res.data.error,
  2375. showCancel: false
  2376. })
  2377. }, 2000)
  2378. }
  2379. })
  2380. }
  2381. //新设备
  2382. else {
  2383. //重置状态
  2384. let combination = control.Refresh()
  2385. that.setData({
  2386. loop: combination[0],
  2387. address: combination[1],
  2388. lamp: combination[2],
  2389. size: combination[3],
  2390. Color: combination[4]
  2391. })
  2392. //..............................
  2393. //获取设备在线状态
  2394. getDevice(id, Groupno).then(dve => {
  2395. if (dve.data.code == 0) {
  2396. var state = dve.data.data
  2397. switch (state.status) {
  2398. case 0:
  2399. that.setData({
  2400. status: '离线'
  2401. })
  2402. break;
  2403. case 1:
  2404. that.setData({
  2405. status: '在线'
  2406. })
  2407. break;
  2408. }
  2409. } else {
  2410. wx.showModal({
  2411. title: '错误',
  2412. content: dve.data.msg,
  2413. showCancel: false
  2414. })
  2415. }
  2416. })
  2417. var Circuits = circuits.split(',')
  2418. let loop = that.data.loop
  2419. for (let vr = 0; vr < circuitNum; vr++) {
  2420. loop[vr] = Circuits[vr]
  2421. }
  2422. that.setData({
  2423. loop: loop
  2424. })
  2425. getloop(id).then(res => {
  2426. if (res.data.code == 0) {
  2427. let loopState = res.data.data
  2428. //loopState.length可以视为回路数量
  2429. var Loop = that.data.Loop
  2430. var color = that.data.Color
  2431. var size = that.data.Size
  2432. var Address = that.data.address
  2433. for (let n = 0; n < loopState.length; n++) {
  2434. Loop[n] = that.data.Loop[n]
  2435. color[n] = "black"
  2436. size[n] = "calc(100vw * 16/375)",
  2437. Address[n] = "/image/modify.png"
  2438. }
  2439. that.setData({
  2440. Color: color,
  2441. Size: size,
  2442. address: Address,
  2443. Loop: Loop
  2444. })
  2445. } else {
  2446. wx.showModal({
  2447. title: '错误',
  2448. content: res.data.msg,
  2449. showCancel: false
  2450. })
  2451. }
  2452. })
  2453. loopSwitchstate(id).then(res => {
  2454. if (res.data.code == 0) {
  2455. var relay = res.data.data
  2456. for (let e = 0; e < relay.length; e++) {
  2457. if (relay[e].status == 1) {
  2458. lamp[e] =
  2459. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  2460. } else if (relay[e].status == 0) {
  2461. lamp[e] =
  2462. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  2463. } else {
  2464. lamp[e] =
  2465. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  2466. }
  2467. }
  2468. } else {
  2469. wx.showModal({
  2470. title: '错误',
  2471. content: res.data.msg,
  2472. showCancel: false
  2473. })
  2474. }
  2475. })
  2476. setTimeout(function() {
  2477. wx.setStorageSync('lamp', lamp)
  2478. that.setData({
  2479. lamp: wx.getStorageSync('lamp')
  2480. })
  2481. }, 2000)
  2482. }
  2483. },
  2484. //手动
  2485. manual: function(e) {
  2486. var that = this
  2487. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  2488. if (res.data.errno == 0) {
  2489. if (res.data.data.online == true) {
  2490. that.setData({ status: '在线' })
  2491. } else {
  2492. that.setData({ status: '离线' })
  2493. }
  2494. } else {
  2495. wx.showModal({
  2496. title: '错误',
  2497. content: res.data.error,
  2498. showCancel: false
  2499. })
  2500. }
  2501. })
  2502. var deviceId = that.data.deviceId
  2503. var deviceKey = that.data.deviceKey
  2504. if (that.data.status == '在线') {
  2505. postData(deviceId, deviceKey, {
  2506. 'ManualStatus': 1,
  2507. 'Reflash': 3
  2508. }).then(res => {
  2509. if (res.data.errno == 0) {
  2510. setTimeout(function() {
  2511. getData(deviceId, deviceKey).then(res => {
  2512. if (res.data.errno == 0) {
  2513. var data = res.data.data
  2514. for (let i = 0; i < data.length; i++) {
  2515. if (data[i].id == 'ManualStatus') {
  2516. if (data[i].current_value == '0') {
  2517. that.setData({
  2518. Modecontrol: '自动'
  2519. })
  2520. } else {
  2521. that.setData({
  2522. Modecontrol: '手动'
  2523. })
  2524. }
  2525. }
  2526. }
  2527. } else {
  2528. wx.showModal({
  2529. title: '错误',
  2530. content: res.data.error,
  2531. showCancel: false
  2532. })
  2533. }
  2534. })
  2535. }, 2000)
  2536. } else {
  2537. wx.showModal({
  2538. title: '错误',
  2539. content: res.data.error,
  2540. showCancel: false
  2541. })
  2542. }
  2543. })
  2544. } else {
  2545. wx.showModal({
  2546. title: '提示',
  2547. content: '设备处于离线状态',
  2548. showCancel: false
  2549. })
  2550. }
  2551. },
  2552. //自动
  2553. automatic: function(e) {
  2554. var that = this
  2555. getBasic(that.data.deviceId, that.data.deviceKey).then(res => {
  2556. if (res.data.errno == 0) {
  2557. if (res.data.data.online == true) {
  2558. that.setData({ status: '在线' })
  2559. } else {
  2560. that.setData({ status: '离线' })
  2561. }
  2562. } else {
  2563. wx.showModal({
  2564. title: '错误',
  2565. content: res.data.error,
  2566. showCancel: false
  2567. })
  2568. }
  2569. })
  2570. var deviceId = that.data.deviceId
  2571. var deviceKey = that.data.deviceKey
  2572. if (that.data.status == '在线') {
  2573. postData(deviceId, deviceKey, {
  2574. 'ManualStatus': 0,
  2575. 'Reflash': 3
  2576. }).then(res => {
  2577. if (res.data.errno == 0) {
  2578. setTimeout(function() {
  2579. getData(deviceId, deviceKey).then(res => {
  2580. if (res.data.errno == 0) {
  2581. var data = res.data.data
  2582. for (let i = 0; i < data.length; i++) {
  2583. if (data[i].id == 'ManualStatus') {
  2584. if (data[i].current_value == '0') {
  2585. that.setData({
  2586. Modecontrol: '自动'
  2587. })
  2588. } else {
  2589. that.setData({
  2590. Modecontrol: '手动'
  2591. })
  2592. }
  2593. }
  2594. }
  2595. } else {
  2596. wx.showModal({
  2597. title: '错误',
  2598. content: res.data.error,
  2599. showCancel: false
  2600. })
  2601. }
  2602. })
  2603. }, 2000)
  2604. } else {
  2605. wx.showModal({
  2606. title: '错误',
  2607. content: res.data.error,
  2608. showCancel: false
  2609. })
  2610. }
  2611. })
  2612. } else {
  2613. wx.showModal({
  2614. title: '提示',
  2615. content: '设备处于离线状态',
  2616. showCancel: false
  2617. })
  2618. }
  2619. },
  2620. //刷新页面
  2621. /**
  2622. * 生命周期函数--监听页面加载
  2623. */
  2624. onLoad(options) {},
  2625. /**
  2626. * 生命周期函数--监听页面初次渲染完成
  2627. */
  2628. onReady() {
  2629. },
  2630. /**
  2631. * 生命周期函数--监听页面显示
  2632. */
  2633. onShow() {
  2634. wx.showToast({
  2635. title: '加载中',
  2636. icon: 'loading',
  2637. duration: 2000
  2638. })
  2639. var that = this
  2640. var group = wx.getStorageSync('group')
  2641. if (group != null && group.length != 0) {
  2642. //获取分组下拉
  2643. var groups = []
  2644. for (let i = 0; i < group.length; i++) {
  2645. groups.push(group[i].groupName)
  2646. }
  2647. that.setData({
  2648. groupName: groups
  2649. })
  2650. //改变分组下标
  2651. if (wx.getStorageSync('groupName') != '') {
  2652. let GroupName = that.data.groupName
  2653. for (let n = 0; n < GroupName.length; n++) {
  2654. if (GroupName[n] == wx.getStorageSync('groupName')) {
  2655. that.setData({
  2656. groupIndex: n
  2657. })
  2658. }
  2659. }
  2660. } else {
  2661. that.setData({ groupIndex: 0 })
  2662. wx.setStorageSync('groupName', that.data.groupName[that.data.groupIndex])
  2663. }
  2664. //获取设备下拉
  2665. var device = []
  2666. var groupName = that.data.groupName
  2667. var groupIndex = that.data.groupIndex
  2668. for (let j = 0; j < group.length; j++) {
  2669. if (groupName[groupIndex] == group[j].groupName) {
  2670. if (group[j].devices != null && group[j].devices.length != 0) {
  2671. for (let p = 0; p < group[j].devices.length; p++) {
  2672. device.push(group[j].devices[p].deviceName)
  2673. }
  2674. that.setData({
  2675. deviceName: device
  2676. })
  2677. //改变设备下标
  2678. if (wx.getStorageSync('deviceName') != '') {
  2679. var DeviceName = that.data.deviceName
  2680. for (let m = 0; m < DeviceName.length; m++) {
  2681. if (DeviceName[m] == wx.getStorageSync('deviceName')) {
  2682. that.setData({
  2683. deviceIndex: m
  2684. })
  2685. }
  2686. }
  2687. } else {
  2688. that.setData({ deviceIndex: 0 })
  2689. wx.setStorageSync('deviceName', that.data.deviceName[that.data.deviceIndex])
  2690. }
  2691. //根据分组名和设备信息
  2692. var groupNames = that.data.groupName[that.data.groupIndex]
  2693. var deviceNames = that.data.deviceName[that.data.deviceIndex]
  2694. for (let d = 0; d < group.length; d++) {
  2695. if (groupNames == group[d].groupName) {
  2696. var Groupno = group[d].id //分组id
  2697. for (let g = 0; g < group[d].devices.length; g++) {
  2698. if (deviceNames == group[d].devices[g].deviceName) {
  2699. //旧设备信息
  2700. if (group[d].devices[g].module == 0) {
  2701. var id = group[d].devices[g].id //设备的序号
  2702. var circuitNum = group[d].devices[g].circuitNum
  2703. var circuits = group[d].devices[g].circuits
  2704. var deviceId = group[d].devices[g].deviceId
  2705. var deviceKey = group[d].devices[g].deviceKey
  2706. var moudule = group[d].devices[g].module
  2707. that.setData({
  2708. play: 0
  2709. })
  2710. }
  2711. //新设备信息
  2712. else {
  2713. var circuitNum = group[d].devices[g].circuitNum
  2714. var circuits = group[d].devices[g].circuits
  2715. var moudule = group[d].devices[g].module
  2716. var id = group[d].devices[g].id //设备的序号
  2717. var deviceID = group[d].devices[g].deviceId //设备ID
  2718. that.setData({
  2719. play: 1,
  2720. ID: deviceID
  2721. })
  2722. }
  2723. }
  2724. }
  2725. }
  2726. }
  2727. //用于区分两种设备以及记录回路数量
  2728. that.setData({
  2729. moudule: moudule,
  2730. id: id,
  2731. loops: circuitNum,
  2732. Groupno: Groupno
  2733. })
  2734. //灯泡图标缓存
  2735. wx.setStorageSync('lamp', [])
  2736. var lamp = wx.getStorageSync('lamp')
  2737. for (let h = 0; h < 12; h++) {
  2738. lamp.push(
  2739. "https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png"
  2740. )
  2741. }
  2742. //旧设备
  2743. if (moudule == 0) {
  2744. //重置状态
  2745. let combination = control.Refresh()
  2746. that.setData({
  2747. loop: combination[0],
  2748. address: combination[1],
  2749. lamp: combination[2],
  2750. size: combination[3],
  2751. Color: combination[4]
  2752. })
  2753. //..............................
  2754. that.setData({
  2755. deviceId: deviceId,
  2756. deviceKey: deviceKey
  2757. })
  2758. var Circuits = circuits.split(',')
  2759. let loop = that.data.loop
  2760. for (let vr = 0; vr < circuitNum; vr++) {
  2761. loop[vr] = Circuits[vr]
  2762. }
  2763. that.setData({
  2764. loop: loop
  2765. })
  2766. postData(deviceId, deviceKey, {
  2767. "Reflash": 3
  2768. }).then(res => {
  2769. if (res.data.errno == 0 || res.data.errno == 10) {
  2770. setTimeout(function() {
  2771. getBasic(deviceId, deviceKey).then(ever => {
  2772. if (ever.data.errno == 0) {
  2773. if (ever.data.data.online == true) {
  2774. that.setData({
  2775. status: "在线"
  2776. })
  2777. } else {
  2778. that.setData({
  2779. status: "离线"
  2780. })
  2781. }
  2782. } else {
  2783. wx.showModal({
  2784. title: '错误',
  2785. content: ever.data.error,
  2786. showCancel: false
  2787. })
  2788. }
  2789. getData(deviceId, deviceKey).then(ver => {
  2790. if (ver.data.errno == 0) {
  2791. let data = ver.data.data
  2792. for (let i = 0; i < data
  2793. .length; i++) {
  2794. if (data[i].id ==
  2795. "RelayCount") {
  2796. var quantity = data[
  2797. i]
  2798. .current_value
  2799. that.setData({
  2800. loops: quantity
  2801. })
  2802. } else if (data[i].id ==
  2803. "ManualStatus") {
  2804. if (data[i]
  2805. .current_value ==
  2806. 0) {
  2807. that.setData({
  2808. Modecontrol: "自动"
  2809. })
  2810. } else {
  2811. that.setData({
  2812. Modecontrol: "手动"
  2813. })
  2814. }
  2815. }
  2816. //回路1
  2817. else if (data[i].id ==
  2818. 'R1_RelayStatus') {
  2819. let police = data[i]
  2820. .current_value
  2821. var lamps = control
  2822. .switchReal(
  2823. police,
  2824. lamp, 0)
  2825. } else if (data[i].id ==
  2826. 'R2_RelayStatus') {
  2827. let police = data[i]
  2828. .current_value
  2829. var lamps = control
  2830. .switchReal(
  2831. police,
  2832. lamp, 1)
  2833. } else if (data[i].id ==
  2834. 'R3_RelayStatus') {
  2835. let police = data[i]
  2836. .current_value
  2837. var lamps = control
  2838. .switchReal(
  2839. police,
  2840. lamp, 2)
  2841. } else if (data[i].id ==
  2842. 'R4_RelayStatus') {
  2843. let police = data[i]
  2844. .current_value
  2845. var lamps = control
  2846. .switchReal(
  2847. police,
  2848. lamp, 3)
  2849. } else if (data[i].id ==
  2850. 'R5_RelayStatus') {
  2851. let police = data[i]
  2852. .current_value
  2853. var lamps = control
  2854. .switchReal(
  2855. police,
  2856. lamp, 4)
  2857. } else if (data[i].id ==
  2858. 'R6_RelayStatus') {
  2859. let police = data[i]
  2860. .current_value
  2861. var lamps = control
  2862. .switchReal(
  2863. police,
  2864. lamp, 5)
  2865. } else if (data[i].id ==
  2866. 'R7_RelayStatus') {
  2867. let police = data[i]
  2868. .current_value
  2869. var lamps = control
  2870. .switchReal(
  2871. police,
  2872. lamp, 6)
  2873. } else if (data[i].id ==
  2874. 'R8_RelayStatus') {
  2875. let police = data[i]
  2876. .current_value
  2877. var lamps = control
  2878. .switchReal(
  2879. police,
  2880. lamp, 7)
  2881. } else if (data[i].id ==
  2882. 'R9_RelayStatus') {
  2883. let police = data[i]
  2884. .current_value
  2885. var lamps = control
  2886. .switchReal(
  2887. police,
  2888. lamp, 8)
  2889. } else if (data[i].id ==
  2890. 'R10_RelayStatus') {
  2891. let police = data[i]
  2892. .current_value
  2893. var lamps = control
  2894. .switchReal(
  2895. police,
  2896. lamp, 9)
  2897. } else if (data[i].id ==
  2898. 'R11_RelayStatus') {
  2899. let police = data[i]
  2900. .current_value
  2901. var lamps = control
  2902. .switchReal(
  2903. police,
  2904. lamp, 10)
  2905. } else if (data[i].id ==
  2906. 'R12_RelayStatus') {
  2907. let police = data[i]
  2908. .current_value
  2909. var lamps = control
  2910. .switchReal(
  2911. police,
  2912. lamp, 11)
  2913. }
  2914. wx.setStorageSync(
  2915. 'lamp', lamps)
  2916. that.setData({
  2917. lamp: wx
  2918. .getStorageSync(
  2919. 'lamp'
  2920. )
  2921. })
  2922. }
  2923. var Loop = that.data.Loop
  2924. var color = that.data.Color
  2925. var size = that.data.Size
  2926. var Address = that.data
  2927. .address
  2928. var enloop = that.data.loop
  2929. for (let i = 0; i <
  2930. quantity; i++) {
  2931. Loop[i] = enloop[i]
  2932. color[i] = "black"
  2933. size[i] =
  2934. "calc(100vw * 16/375)",
  2935. Address[i] =
  2936. "/image/modify.png"
  2937. }
  2938. that.setData({
  2939. Color: color,
  2940. Size: size,
  2941. address: Address,
  2942. Loop: Loop
  2943. })
  2944. } else {
  2945. wx.showModal({
  2946. title: '错误',
  2947. content: ver
  2948. .data.error,
  2949. showCancel: false
  2950. })
  2951. }
  2952. })
  2953. })
  2954. }, 2000)
  2955. } else {
  2956. setTimeout(function() {
  2957. wx.showModal({
  2958. title: '提示',
  2959. content: res.data.error,
  2960. showCancel: false
  2961. })
  2962. }, 2000)
  2963. }
  2964. })
  2965. }
  2966. //新设备
  2967. else {
  2968. //重置状态
  2969. let combination = control.Refresh()
  2970. that.setData({
  2971. loop: combination[0],
  2972. address: combination[1],
  2973. lamp: combination[2],
  2974. size: combination[3],
  2975. Color: combination[4]
  2976. })
  2977. //..............................
  2978. //获取设备在线状态
  2979. getDevice(id, Groupno).then(dve => {
  2980. if (dve.data.code == 0) {
  2981. var state = dve.data.data
  2982. switch (state.status) {
  2983. case 0:
  2984. that.setData({
  2985. status: '离线'
  2986. })
  2987. break;
  2988. case 1:
  2989. that.setData({
  2990. status: '在线'
  2991. })
  2992. break;
  2993. }
  2994. } else {
  2995. wx.showModal({
  2996. title: '错误',
  2997. content: dve.data.msg,
  2998. showCancel: false
  2999. })
  3000. }
  3001. })
  3002. var Circuits = circuits.split(',')
  3003. let loop = that.data.loop
  3004. for (let vr = 0; vr < circuitNum; vr++) {
  3005. loop[vr] = Circuits[vr]
  3006. }
  3007. that.setData({
  3008. loop: loop
  3009. })
  3010. getloop(id).then(res => {
  3011. if (res.data.code == 0) {
  3012. let loopState = res.data.data
  3013. //loopState.length可以视为回路数量
  3014. var Loop = that.data.Loop
  3015. var color = that.data.Color
  3016. var size = that.data.Size
  3017. var Address = that.data.address
  3018. for (let n = 0; n < loopState.length; n++) {
  3019. Loop[n] = that.data.Loop[n]
  3020. color[n] = "black"
  3021. size[n] = "calc(100vw * 16/375)",
  3022. Address[n] = "/image/modify.png"
  3023. }
  3024. that.setData({
  3025. Color: color,
  3026. Size: size,
  3027. address: Address,
  3028. Loop: Loop
  3029. })
  3030. } else {
  3031. wx.showModal({
  3032. title: '错误',
  3033. content: res.data.msg,
  3034. showCancel: false
  3035. })
  3036. }
  3037. })
  3038. loopSwitchstate(id).then(ret => {
  3039. if (ret.data.code == 0) {
  3040. var relay = ret.data.data
  3041. for (let e = 0; e < relay.length; e++) {
  3042. if (relay[e].status == 1) {
  3043. lamp[e] =
  3044. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png'
  3045. } else if (relay[e].status == 0) {
  3046. lamp[e] =
  3047. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  3048. } else {
  3049. lamp[e] =
  3050. 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png'
  3051. }
  3052. }
  3053. } else {
  3054. wx.showModal({
  3055. title: '错误',
  3056. content: ret.data.msg,
  3057. showCancel: false
  3058. })
  3059. }
  3060. })
  3061. setTimeout(function() {
  3062. wx.setStorageSync('lamp', lamp)
  3063. that.setData({
  3064. lamp: wx.getStorageSync('lamp')
  3065. })
  3066. }, 2000)
  3067. }
  3068. } else {
  3069. that.setData({
  3070. status: '离线',
  3071. deviceName: []
  3072. })
  3073. }
  3074. }
  3075. }
  3076. } else {
  3077. that.setData({
  3078. status: '离线',
  3079. deviceName: [],
  3080. groupName: []
  3081. })
  3082. }
  3083. },
  3084. /**
  3085. * 生命周期函数--监听页面隐藏
  3086. */
  3087. onHide() {
  3088. },
  3089. /**
  3090. * 生命周期函数--监听页面卸载
  3091. */
  3092. onUnload() {
  3093. },
  3094. /**
  3095. * 页面相关事件处理函数--监听用户下拉动作
  3096. */
  3097. onPullDownRefresh() {
  3098. },
  3099. /**
  3100. * 页面上拉触底事件的处理函数
  3101. */
  3102. onReachBottom() {
  3103. },
  3104. /**
  3105. * 用户点击右上角分享
  3106. */
  3107. onShareAppMessage() {
  3108. }
  3109. })