loop.js 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008
  1. const {
  2. getBasic,
  3. getData,
  4. postData,
  5. } = require('../../api/intell')
  6. const {
  7. getDevice,
  8. getloop,
  9. postloop,
  10. looplightlist,
  11. } = require('../../api/device')
  12. const enloop = require('../../utils/loop')
  13. // pages/loop/loop.js
  14. Page({
  15. /**
  16. * 页面的初始数据
  17. */
  18. data: {
  19. array: [],
  20. //回路调控
  21. crr: [],
  22. indexes: 0,
  23. //时间调控
  24. time: ["00:00", "00:00", "00:00", "00:00"],
  25. //时间调控(开关选择器)
  26. state: [false, false, false, false], //控制时控一开关和光控开关的状态
  27. state1: [false, false], //控制时控二开关的状态
  28. fixed1: "固定",
  29. fixed2: "固定",
  30. fixed3: "固定",
  31. fixed4: "固定",
  32. type1: "",
  33. type2: "",
  34. type3: "",
  35. type4: "",
  36. //时间调控(背景颜色)
  37. timecontrolcolor1: "#888888",
  38. timecontrolcolor2: "#888888",
  39. timecontrolcolor3: "#888888",
  40. timecontrolcolor4: "#888888",
  41. //时间调控(字体颜色)
  42. fontcolor1: "#cccccc",
  43. fontcolor2: "#cccccc",
  44. fontcolor3: "#cccccc",
  45. fontcolor4: "#cccccc",
  46. //固定经纬切换
  47. //日期调控
  48. address: ["/image/false.png", "/image/false.png", "/image/false.png", "/image/false.png", "/image/false.png",
  49. "/image/false.png", "/image/false.png"
  50. ],
  51. recorddate: "", //记录后台传过来的日期参数
  52. //光控调整
  53. arr: [0],
  54. brr: [0],
  55. index: 0,
  56. indexs: 0,
  57. Lightcontrolcolor1: "#888888",
  58. Lightcontrolcolor2: "#888888",
  59. fontcolor5: "#cccccc",
  60. fontcolor6: "#cccccc",
  61. select1: "",
  62. select2: "",
  63. //报警状态
  64. radio1: false,
  65. radio2: false,
  66. radio3: false,
  67. alert: "",
  68. //扫码
  69. Title: "",
  70. status: "离线",
  71. zoom: 0.8,
  72. Modecontrol: "",
  73. groupName: [],
  74. deviceName: [],
  75. groupIndex: 0,
  76. deviceIndex: 0,
  77. deviceId: '',
  78. deviceKey: '',
  79. num: 0, //记录回路数量
  80. play: 0, //新老设备的页面切换
  81. //新设备数据
  82. timeValue: ['00:00', '00:00', '00:00', '00:00', '00:00', '00:00'],
  83. newcolor: ["#888888", "#888888", "#888888"],
  84. newfont: ["#cccccc", "#cccccc", "#cccccc"],
  85. newSwitch: [false, false, false],
  86. newSwitchstate: ["", "", ""],
  87. equipment: 0, //记录当前设备的序号(服务器传的id)
  88. subset: 0, //记录当前分组的id
  89. ID: 0, //记录设备的ID
  90. // 启动条件(多选框)
  91. disabled: false,
  92. choice: [],
  93. lightlist: [], //新设备回路开启条件,
  94. popup: false, //开启条件弹窗
  95. },
  96. //分组下拉
  97. changegroup: function (e) {
  98. wx.showToast({
  99. title: '刷新中',
  100. icon: 'loading',
  101. duration: 2000
  102. })
  103. var that = this
  104. that.setData({
  105. groupIndex: e.detail.value
  106. })
  107. wx.setStorageSync('groupIndex', e.detail.value)
  108. var groupName = that.data.groupName[that.data.groupIndex] //选择的分组名称
  109. wx.setStorageSync('groupName', groupName) //将修改的分组名称放入缓存
  110. var group = wx.getStorageSync('group')
  111. var deviceName = []
  112. for (let i = 0; i < group.length; i++) {
  113. if (group[i].groupName == groupName) {
  114. if (group[i].devices != null && group[i].devices.length != 0) {
  115. for (let j = 0; j < group[i].devices.length; j++) {
  116. deviceName.push(group[i].devices[j].deviceName)
  117. }
  118. that.setData({
  119. deviceName: deviceName,
  120. deviceIndex: 0
  121. })
  122. var groupNames = that.data.groupName[that.data.groupIndex]
  123. var deviceNames = that.data.deviceName[that.data.deviceIndex]
  124. wx.setStorageSync('deviceName', deviceNames) //将修改的设备名放入缓存
  125. //获取设备信息
  126. var Message = enloop.deviceMessage(groupNames, deviceNames)
  127. that.setData({
  128. equipment: Message.Device,
  129. subset: Message.id,
  130. ID: Message.ID,
  131. indexes: 0
  132. }) //记录当前的设备id和分组id
  133. if (Message.modules == 0) {
  134. that.setData({
  135. play: 0,
  136. deviceKey: Message.deviceKey,
  137. deviceId: Message.deviceId
  138. })
  139. getBasic(Message.deviceId, Message.deviceKey).then(res => {
  140. if(res.data.errno == 0){
  141. if (res.data.data.online == true) {
  142. that.setData({
  143. status: '在线'
  144. })
  145. } else {
  146. that.setData({
  147. status: '离线'
  148. })
  149. }
  150. getData(Message.deviceId, Message.deviceKey).then(ever => {
  151. if(ever.data.errno == 0){
  152. let {
  153. data
  154. } = ever.data
  155. //判断设备是否处于初始化状态
  156. var initialization = true
  157. for (let t = 0; t < data.length; t++) {
  158. if ('current_value' in data[t] == false) {
  159. initialization = false
  160. }
  161. }
  162. if (initialization == true) {
  163. let loopnum = Message.loopnum
  164. var Summary = enloop.deviceinfo(data, loopnum, that.data.arr, that.data.brr, that.data.time, that.data.state,
  165. that.data.state1, that.data.fixed1, that.data.fixed2, that.data.fixed3,
  166. that.data.fixed4, that.data.address, that.data.radio1, that.data.radio2,
  167. that.data.radio3, that.data.index, that.data.indexs)
  168. that.setData({
  169. crr: Summary.crr,
  170. arr: Summary.arr,
  171. brr: Summary.brr,
  172. fixed1: Summary.fixed1,
  173. fixed2: Summary.fixed2,
  174. fixed3: Summary.fixed3,
  175. fixed4: Summary.fixed4,
  176. index: Summary.index,
  177. indexs: Summary.indexs,
  178. radio1: Summary.radio1,
  179. radio2: Summary.radio2,
  180. radio3: Summary.radio3,
  181. recorddate: Summary.recorddate,
  182. state: Summary.state,
  183. state1: Summary.state1,
  184. time: Summary.time,
  185. address: Summary.address,
  186. play: 0
  187. })
  188. //监视开关状态(改变颜色,调整功能)
  189. switch (that.data.state[0]) {
  190. case true:
  191. that.setData({
  192. type1: "time",
  193. timecontrolcolor1: "blue",
  194. fontcolor1: "white",
  195. })
  196. break;
  197. default:
  198. that.setData({
  199. type1: "",
  200. timecontrolcolor1: "#888888",
  201. fontcolor1: "#cccccc",
  202. })
  203. break;
  204. }
  205. switch (that.data.state[1]) {
  206. case true:
  207. that.setData({
  208. type2: "time",
  209. timecontrolcolor2: "blue",
  210. fontcolor2: "white",
  211. })
  212. break;
  213. default:
  214. that.setData({
  215. type2: "",
  216. timecontrolcolor2: "#888888",
  217. fontcolor2: "#cccccc",
  218. })
  219. break;
  220. }
  221. switch (that.data.state1[0]) {
  222. case true:
  223. that.setData({
  224. type3: "time",
  225. timecontrolcolor3: "blue",
  226. fontcolor3: "white",
  227. })
  228. break;
  229. default:
  230. that.setData({
  231. type3: "",
  232. timecontrolcolor3: "#888888",
  233. fontcolor3: "#cccccc",
  234. })
  235. break;
  236. }
  237. switch (that.data.state1[1]) {
  238. case true:
  239. that.setData({
  240. type4: "time",
  241. timecontrolcolor4: "blue",
  242. fontcolor4: "white",
  243. })
  244. break;
  245. default:
  246. that.setData({
  247. type4: "",
  248. timecontrolcolor4: "#888888",
  249. fontcolor4: "#cccccc",
  250. })
  251. break;
  252. }
  253. switch (that.data.state[2]) {
  254. case true:
  255. that.setData({
  256. Lightcontrolcolor1: "blue",
  257. fontcolor5: "white",
  258. select1: "selector"
  259. })
  260. break;
  261. default:
  262. that.setData({
  263. Lightcontrolcolor1: "#888888",
  264. fontcolor5: "#cccccc",
  265. select1: ""
  266. })
  267. break;
  268. }
  269. switch (that.data.state[3]) {
  270. case true:
  271. that.setData({
  272. Lightcontrolcolor2: "blue",
  273. fontcolor6: "white",
  274. select2: "selector"
  275. })
  276. break;
  277. default:
  278. that.setData({
  279. Lightcontrolcolor2: "#888888",
  280. fontcolor6: "#cccccc",
  281. select2: ""
  282. })
  283. break;
  284. }
  285. } else {
  286. getDevice(Message.Device, Message.id).then(rgb => {
  287. if (rgb.data.code == 0) {
  288. var rgbs = rgb.data.data.circuits
  289. rgbs = rgbs.split(',')
  290. that.setData({
  291. crr: rgbs
  292. })
  293. } else {
  294. wx.showModal({
  295. title: '错误',
  296. content: rgb.data.msg,
  297. showCancel: false
  298. })
  299. }
  300. })
  301. }
  302. }
  303. else{
  304. wx.showModal({
  305. title: '错误',
  306. content: ever.data.error,
  307. showCancel:false
  308. })
  309. }
  310. })
  311. }else{
  312. wx.showModal({
  313. title: '错误',
  314. content: res.data.error,
  315. showCancel:false
  316. })
  317. }
  318. })
  319. } else {
  320. that.setData({
  321. play: 1
  322. })
  323. //新设备在线状态
  324. getDevice(Message.Device, Message.id).then(nrg => {
  325. if (nrg.data.code == 0) {
  326. var nrg = nrg.data.data
  327. if (nrg.status == 1) {
  328. that.setData({
  329. status: '在线'
  330. })
  331. } else {
  332. that.setData({
  333. status: '离线'
  334. })
  335. }
  336. getloop(Message.Device).then(suc => {
  337. if (suc.data.code == 0) {
  338. var suc = suc.data.data
  339. var index = that.data.indexes
  340. for (let i = 0; i < suc.length; i++) {
  341. if (index == i) {
  342. let Suc = suc[i]
  343. var newSwitch = that.data.newSwitch
  344. var timeValue = that.data.timeValue
  345. var newSwitchstate = that.data.newSwitchstate
  346. var choice = that.data.choice
  347. //光控启动条件
  348. if (Suc.lightControlCondition.includes(',') == true) {
  349. var light = Suc.lightControlCondition.split(',')
  350. for (let i = 0; i < light.length; i++) {
  351. switch (light[i]) {
  352. case '晴天':
  353. choice[0] = true
  354. break;
  355. case '多云':
  356. choice[1] = true
  357. break;
  358. case '阴天':
  359. choice[2] = true
  360. break;
  361. case '大阴天':
  362. choice[3] = true
  363. break;
  364. }
  365. }
  366. } else {
  367. choice = [false, false, false, false]
  368. switch (Suc.lightControlCondition) {
  369. case '晴天':
  370. choice[0] = true
  371. break;
  372. case '多云':
  373. choice[1] = true
  374. break;
  375. case '阴天':
  376. choice[2] = true
  377. break;
  378. case '大阴天':
  379. choice[3] = true
  380. break;
  381. }
  382. }
  383. that.setData({
  384. choice: choice
  385. })
  386. var lightCondition = Suc.lightControlCondition
  387. //光控启动条件
  388. looplightlist().then(res => {
  389. if (res.data.code == 0) {
  390. var lightlist = res.data.data
  391. that.setData({
  392. lightlist: lightlist
  393. })
  394. for (let i = 0; i < lightlist.length; i++) {
  395. choice[i] = false
  396. }
  397. if (lightCondition.includes(',') == true) {
  398. lightCondition = lightCondition.split(',')
  399. for (let j = 0; j < lightCondition.length; j++) {
  400. if (lightCondition[j] == '1') {
  401. choice[0] = true
  402. } else if (lightCondition[j] == '2') {
  403. choice[1] = true
  404. } else if (lightCondition[j] == '3') {
  405. choice[2] = true
  406. } else if (lightCondition[j] == '4') {
  407. choice[3] = true
  408. }
  409. }
  410. } else {
  411. if (lightCondition == '1') {
  412. choice[0] = true
  413. } else if (lightCondition == '2') {
  414. choice[1] = true
  415. } else if (lightCondition == '3') {
  416. choice[2] = true
  417. } else if (lightCondition == '4') {
  418. choice[3] = true
  419. }
  420. }
  421. that.setData({
  422. choice: choice
  423. })
  424. } else {
  425. wx.showModal({
  426. title: '错误',
  427. content: res.data.msg,
  428. showCancel: false
  429. })
  430. }
  431. })
  432. //时控1
  433. if (Suc.timeCondition1Switch == 1) {
  434. newSwitch[0] = true
  435. newSwitchstate[0] = 'time'
  436. } else {
  437. newSwitch[0] = false
  438. newSwitchstate[0] = ''
  439. }
  440. timeValue[0] = Suc.timeCondition1OnTime
  441. timeValue[1] = Suc.timeCondition1OffTime
  442. //时控2
  443. if (Suc.timeCondition2Switch == 1) {
  444. newSwitch[1] = true
  445. newSwitchstate[1] = 'time'
  446. } else {
  447. newSwitch[1] = false
  448. newSwitchstate[1] = ''
  449. }
  450. timeValue[2] = Suc.timeCondition2OnTime
  451. timeValue[3] = Suc.timeCondition2OffTime
  452. //光控
  453. if (Suc.lightControlSwitch == 1) {
  454. newSwitch[2] = true
  455. newSwitchstate[2] = 'time'
  456. } else {
  457. newSwitch[2] = false
  458. newSwitchstate[2] = ''
  459. }
  460. timeValue[4] = Suc.lightControlStart
  461. timeValue[5] = Suc.lightControlEnd
  462. for (let j = 0; j < timeValue.length; j++) {
  463. if (timeValue[j] == "") {
  464. timeValue[j] = '00:00'
  465. }
  466. }
  467. that.setData({
  468. crr: Message.loopnum,
  469. timeValue: timeValue,
  470. newSwitch: newSwitch
  471. })
  472. //监视新设备开关状态
  473. var newSwitchs = that.data.newSwitch
  474. var newfonts = that.data.newfont
  475. var newcolors = that.data.newcolor
  476. var newSwitchstates = that.data.newSwitchstate
  477. var disableds = that.data.disabled
  478. if (newSwitchs[0] == true) {
  479. newfonts[0] = "white"
  480. newcolors[0] = "blue"
  481. newSwitchstates[0] = "time"
  482. } else {
  483. newfonts[0] = "#cccccc"
  484. newcolors[0] = "#888888"
  485. newSwitchstates[0] = ""
  486. }
  487. if (newSwitchs[1] == true) {
  488. newfonts[1] = "white"
  489. newcolors[1] = "blue"
  490. newSwitchstates[1] = "time"
  491. } else {
  492. newfonts[1] = "#cccccc"
  493. newcolors[1] = "#888888"
  494. newSwitchstates[1] = ""
  495. }
  496. if (newSwitchs[2] == true) {
  497. newfonts[2] = "white"
  498. newcolors[2] = "blue"
  499. newSwitchstates[2] = "time"
  500. disableds = false
  501. } else {
  502. newfonts[2] = "#cccccc"
  503. newcolors[2] = "#888888"
  504. newSwitchstates[2] = ""
  505. disableds = true
  506. }
  507. that.setData({
  508. newcolor: newcolors,
  509. newfont: newfonts,
  510. newSwitch: newSwitchs,
  511. newSwitchstate: newSwitchstates,
  512. disabled: disableds
  513. })
  514. }
  515. }
  516. } else {
  517. console.log('获取新设备回路参数失败')
  518. wx.showModal({
  519. title: '错误',
  520. content: suc.data.msg,
  521. showCancel: false
  522. })
  523. }
  524. })
  525. } else {
  526. console.log('新设备获取信息失败')
  527. wx.showModal({
  528. title: '错误',
  529. content: nrg.data.msg,
  530. showCancel: false
  531. })
  532. }
  533. })
  534. }
  535. } else {
  536. wx.setStorageSync('deviceName', '')
  537. that.setData({
  538. status: '离线',
  539. deviceName: []
  540. })
  541. }
  542. }
  543. }
  544. },
  545. //设备下拉
  546. changedevice: function (e) {
  547. var that = this
  548. wx.showToast({
  549. title: '刷新中',
  550. icon: 'loading',
  551. duration: 2000
  552. })
  553. that.setData({
  554. deviceIndex: e.detail.value
  555. })
  556. var groupName = that.data.groupName[that.data.groupIndex]
  557. var deviceName = that.data.deviceName[that.data.deviceIndex]
  558. wx.setStorageSync('groupName', groupName) //分组名称
  559. wx.setStorageSync('deviceName', deviceName) //设备名称
  560. //获取设备信息
  561. var Message = enloop.deviceMessage(groupName, deviceName)
  562. that.setData({
  563. equipment: Message.Device,
  564. subset: Message.id,
  565. ID: Message.ID,
  566. indexes: 0
  567. }) //记录当前的设备id和分组id
  568. if (Message.modules == 0) {
  569. that.setData({
  570. play: 0,
  571. deviceKey: Message.deviceKey,
  572. deviceId: Message.deviceId
  573. })
  574. getBasic(Message.deviceId, Message.deviceKey).then(res => {
  575. if(res.data.errno == 0){
  576. if (res.data.data.online == true) {
  577. that.setData({
  578. status: '在线'
  579. })
  580. } else {
  581. that.setData({
  582. status: '离线'
  583. })
  584. }
  585. getData(Message.deviceId, Message.deviceKey).then(ever => {
  586. if(ever.data.errno == 0){
  587. let {
  588. data
  589. } = ever.data
  590. //判断设备是否处于初始化状态
  591. var initialization = true
  592. for (let t = 0; t < data.length; t++) {
  593. if ('current_value' in data[t] == false) {
  594. initialization = false
  595. }
  596. }
  597. if (initialization == true) {
  598. let loopnum = Message.loopnum
  599. var Summary = enloop.deviceinfo(data, loopnum, that.data.arr, that.data.brr, that.data.time, that.data.state,
  600. that.data.state1, that.data.fixed1, that.data.fixed2, that.data.fixed3,
  601. that.data.fixed4, that.data.address, that.data.radio1, that.data.radio2,
  602. that.data.radio3, that.data.index, that.data.indexs)
  603. that.setData({
  604. crr: Summary.crr,
  605. arr: Summary.arr,
  606. brr: Summary.brr,
  607. fixed1: Summary.fixed1,
  608. fixed2: Summary.fixed2,
  609. fixed3: Summary.fixed3,
  610. fixed4: Summary.fixed4,
  611. index: Summary.index,
  612. indexs: Summary.indexs,
  613. radio1: Summary.radio1,
  614. radio2: Summary.radio2,
  615. radio3: Summary.radio3,
  616. recorddate: Summary.recorddate,
  617. state: Summary.state,
  618. state1: Summary.state1,
  619. time: Summary.time,
  620. address: Summary.address,
  621. play: 0
  622. })
  623. //监视开关状态(改变颜色,调整功能)
  624. switch (that.data.state[0]) {
  625. case true:
  626. that.setData({
  627. type1: "time",
  628. timecontrolcolor1: "blue",
  629. fontcolor1: "white",
  630. })
  631. break;
  632. default:
  633. that.setData({
  634. type1: "",
  635. timecontrolcolor1: "#888888",
  636. fontcolor1: "#cccccc",
  637. })
  638. break;
  639. }
  640. switch (that.data.state[1]) {
  641. case true:
  642. that.setData({
  643. type2: "time",
  644. timecontrolcolor2: "blue",
  645. fontcolor2: "white",
  646. })
  647. break;
  648. default:
  649. that.setData({
  650. type2: "",
  651. timecontrolcolor2: "#888888",
  652. fontcolor2: "#cccccc",
  653. })
  654. break;
  655. }
  656. switch (that.data.state1[0]) {
  657. case true:
  658. that.setData({
  659. type3: "time",
  660. timecontrolcolor3: "blue",
  661. fontcolor3: "white",
  662. })
  663. break;
  664. default:
  665. that.setData({
  666. type3: "",
  667. timecontrolcolor3: "#888888",
  668. fontcolor3: "#cccccc",
  669. })
  670. break;
  671. }
  672. switch (that.data.state1[1]) {
  673. case true:
  674. that.setData({
  675. type4: "time",
  676. timecontrolcolor4: "blue",
  677. fontcolor4: "white",
  678. })
  679. break;
  680. default:
  681. that.setData({
  682. type4: "",
  683. timecontrolcolor4: "#888888",
  684. fontcolor4: "#cccccc",
  685. })
  686. break;
  687. }
  688. switch (that.data.state[2]) {
  689. case true:
  690. that.setData({
  691. Lightcontrolcolor1: "blue",
  692. fontcolor5: "white",
  693. select1: "selector"
  694. })
  695. break;
  696. default:
  697. that.setData({
  698. Lightcontrolcolor1: "#888888",
  699. fontcolor5: "#cccccc",
  700. select1: ""
  701. })
  702. break;
  703. }
  704. switch (that.data.state[3]) {
  705. case true:
  706. that.setData({
  707. Lightcontrolcolor2: "blue",
  708. fontcolor6: "white",
  709. select2: "selector"
  710. })
  711. break;
  712. default:
  713. that.setData({
  714. Lightcontrolcolor2: "#888888",
  715. fontcolor6: "#cccccc",
  716. select2: ""
  717. })
  718. break;
  719. }
  720. } else {
  721. getDevice(Message.Device, Message.id).then(rgb => {
  722. if (rgb.data.code == 0) {
  723. var rgbs = rgb.data.data.circuits
  724. rgbs = rgbs.split(',')
  725. that.setData({
  726. crr: rgbs
  727. })
  728. } else {
  729. wx.showModal({
  730. title: '错误',
  731. content: rgb.data.msg,
  732. showCancel: false
  733. })
  734. }
  735. })
  736. }
  737. }
  738. else{
  739. wx.showModal({
  740. title: '错误',
  741. content: ever.data.error,
  742. showCancel:false
  743. })
  744. }
  745. })
  746. }
  747. else{
  748. wx.showModal({
  749. title: '错误',
  750. content: res.data.error,
  751. showCancel:false
  752. })
  753. }
  754. })
  755. } else {
  756. that.setData({
  757. play: 1
  758. })
  759. //新设备在线状态
  760. getDevice(Message.Device, Message.id).then(nrg => {
  761. if (nrg.data.code == 0) {
  762. var nrg = nrg.data.data
  763. if (nrg.status == 1) {
  764. that.setData({
  765. status: '在线'
  766. })
  767. } else {
  768. that.setData({
  769. status: '离线'
  770. })
  771. }
  772. getloop(Message.Device).then(suc => {
  773. if (suc.data.code == 0) {
  774. var suc = suc.data.data
  775. var index = that.data.indexes
  776. for (let i = 0; i < suc.length; i++) {
  777. if (index == i) {
  778. let Suc = suc[i]
  779. var newSwitch = that.data.newSwitch
  780. var timeValue = that.data.timeValue
  781. var newSwitchstate = that.data.newSwitchstate
  782. var choice = that.data.choice
  783. var lightCondition = Suc.lightControlCondition
  784. //光控启动条件
  785. looplightlist().then(res => {
  786. if (res.data.code == 0) {
  787. var lightlist = res.data.data
  788. that.setData({
  789. lightlist: lightlist
  790. })
  791. for (let i = 0; i < lightlist.length; i++) {
  792. choice[i] = false
  793. }
  794. if (lightCondition.includes(',') == true) {
  795. lightCondition = lightCondition.split(',')
  796. for (let j = 0; j < lightCondition.length; j++) {
  797. if (lightCondition[j] == '1') {
  798. choice[0] = true
  799. } else if (lightCondition[j] == '2') {
  800. choice[1] = true
  801. } else if (lightCondition[j] == '3') {
  802. choice[2] = true
  803. } else if (lightCondition[j] == '4') {
  804. choice[3] = true
  805. }
  806. }
  807. } else {
  808. if (lightCondition == '1') {
  809. choice[0] = true
  810. } else if (lightCondition == '2') {
  811. choice[1] = true
  812. } else if (lightCondition == '3') {
  813. choice[2] = true
  814. } else if (lightCondition == '4') {
  815. choice[3] = true
  816. }
  817. }
  818. that.setData({
  819. choice: choice
  820. })
  821. } else {
  822. wx.showModal({
  823. title: '错误',
  824. content: res.data.msg,
  825. showCancel: false
  826. })
  827. }
  828. })
  829. //时控1
  830. if (Suc.timeCondition1Switch == 1) {
  831. newSwitch[0] = true
  832. newSwitchstate[0] = 'time'
  833. } else {
  834. newSwitch[0] = false
  835. newSwitchstate[0] = ''
  836. }
  837. timeValue[0] = Suc.timeCondition1OnTime
  838. timeValue[1] = Suc.timeCondition1OffTime
  839. //时控2
  840. if (Suc.timeCondition2Switch == 1) {
  841. newSwitch[1] = true
  842. newSwitchstate[1] = 'time'
  843. } else {
  844. newSwitch[1] = false
  845. newSwitchstate[1] = ''
  846. }
  847. timeValue[2] = Suc.timeCondition2OnTime
  848. timeValue[3] = Suc.timeCondition2OffTime
  849. //光控
  850. if (Suc.lightControlSwitch == 1) {
  851. newSwitch[2] = true
  852. newSwitchstate[2] = 'time'
  853. } else {
  854. newSwitch[2] = false
  855. newSwitchstate[2] = ''
  856. }
  857. timeValue[4] = Suc.lightControlStart
  858. timeValue[5] = Suc.lightControlEnd
  859. for (let j = 0; j < timeValue.length; j++) {
  860. if (timeValue[j] == "") {
  861. timeValue[j] = '00:00'
  862. }
  863. }
  864. that.setData({
  865. crr: Message.loopnum,
  866. timeValue: timeValue,
  867. newSwitch: newSwitch
  868. })
  869. //监视新设备开关状态
  870. var newSwitchs = that.data.newSwitch
  871. var newfonts = that.data.newfont
  872. var newcolors = that.data.newcolor
  873. var newSwitchstates = that.data.newSwitchstate
  874. var disableds = that.data.disabled
  875. if (newSwitchs[0] == true) {
  876. newfonts[0] = "white"
  877. newcolors[0] = "blue"
  878. newSwitchstates[0] = "time"
  879. } else {
  880. newfonts[0] = "#cccccc"
  881. newcolors[0] = "#888888"
  882. newSwitchstates[0] = ""
  883. }
  884. if (newSwitchs[1] == true) {
  885. newfonts[1] = "white"
  886. newcolors[1] = "blue"
  887. newSwitchstates[1] = "time"
  888. } else {
  889. newfonts[1] = "#cccccc"
  890. newcolors[1] = "#888888"
  891. newSwitchstates[1] = ""
  892. }
  893. if (newSwitchs[2] == true) {
  894. newfonts[2] = "white"
  895. newcolors[2] = "blue"
  896. newSwitchstates[2] = "time"
  897. disableds = false
  898. } else {
  899. newfonts[2] = "#cccccc"
  900. newcolors[2] = "#888888"
  901. newSwitchstates[2] = ""
  902. disableds = true
  903. }
  904. that.setData({
  905. newcolor: newcolors,
  906. newfont: newfonts,
  907. newSwitch: newSwitchs,
  908. newSwitchstate: newSwitchstates,
  909. disabled: disableds
  910. })
  911. }
  912. }
  913. } else {
  914. console.log('获取新设备回路参数失败')
  915. wx.showModal({
  916. title: '错误',
  917. content: suc.data.msg,
  918. showCancel: false
  919. })
  920. }
  921. })
  922. } else {
  923. console.log('新设备获取信息失败')
  924. wx.showModal({
  925. title: '错误',
  926. content: nrg.data.msg,
  927. showCancel: false
  928. })
  929. }
  930. })
  931. }
  932. },
  933. //回路调控
  934. bindPickerChange3: function (e) {
  935. wx.showToast({
  936. title: '刷新中',
  937. icon: 'loading',
  938. duration: 2000
  939. })
  940. var that = this
  941. var play = that.data.play
  942. var indexes = parseInt(e.detail.value)
  943. that.setData({
  944. indexes: indexes
  945. })
  946. //旧设备
  947. if (play == 0) {
  948. getData(that.data.deviceId, that.data.deviceKey).then(res => {
  949. if(res.data.errno == 0){
  950. var {
  951. data
  952. } = res.data
  953. var Indexes = that.data.indexes
  954. Indexes = Indexes + 1
  955. var crr = that.data.crr.length
  956. if (Indexes == crr) {
  957. } else {
  958. //以下为回路
  959. for (let i = 1; i < data.length; i++) {
  960. //时控一开时间
  961. if (data[i].id == "R" + Indexes + "_DayOpenTime1") {
  962. var timeopen1 = data[i].current_value
  963. }
  964. //时控一关时间
  965. else if (data[i].id == "R" + Indexes + "_DayCloseTime1") {
  966. var timeshut1 = data[i].current_value
  967. }
  968. //时控二开时间
  969. else if (data[i].id == "R" + Indexes + "_DayOpenTime2") {
  970. var timeopen2 = data[i].current_value
  971. }
  972. //时控二关时间
  973. else if (data[i].id == "R" + Indexes + "_DayCloseTime2") {
  974. var timeshut2 = data[i].current_value
  975. }
  976. //日期调控
  977. else if (data[i].id == "R" + Indexes + "_Week") {
  978. var weeks = data[i].current_value
  979. that.setData({
  980. recorddate: weeks
  981. })
  982. weeks = parseInt(weeks)
  983. weeks = weeks.toString(2)
  984. weeks = weeks + ''
  985. if (weeks != '0') {
  986. weeks = weeks.slice(1)
  987. }
  988. }
  989. //功能一
  990. else if (data[i].id == "R" + Indexes + "_FunctionStatus1") {
  991. var Function1 = data[i].current_value
  992. var par = parseInt(Function1)
  993. par = par.toString(2)
  994. par = par + ''
  995. switch (par.length) {
  996. case 1:
  997. par = '00000' + par
  998. break;
  999. case 2:
  1000. par = '0000' + par
  1001. break;
  1002. case 3:
  1003. par = '000' + par
  1004. break;
  1005. case 4:
  1006. par = '00' + par
  1007. break;
  1008. case 5:
  1009. par = '0' + par
  1010. break;
  1011. default:
  1012. par = par
  1013. }
  1014. }
  1015. //功能二
  1016. else if (data[i].id == "R" + Indexes + "_FunctionStatus2") {
  1017. var Function2 = data[i].current_value
  1018. var qur = parseInt(Function2)
  1019. qur = qur.toString(2)
  1020. qur = qur + ''
  1021. switch (qur.length) {
  1022. case 1:
  1023. qur = '000' + qur
  1024. break;
  1025. case 2:
  1026. qur = '00' + qur
  1027. break;
  1028. case 3:
  1029. qur = '0' + qur
  1030. break;
  1031. case 4:
  1032. qur = qur
  1033. break;
  1034. }
  1035. }
  1036. //报警
  1037. else if (data[i].id == "R" + Indexes + "_RelayStatus") {
  1038. var police = data[i].current_value
  1039. }
  1040. //光控开
  1041. else if (data[i].id == "R" + Indexes + "_LcOn") {
  1042. var Lightcontrolopen = data[i].current_value
  1043. var trr = that.data.arr
  1044. for (let i = 0; i < 100; i++) {
  1045. trr[i] = i
  1046. }
  1047. Lightcontrolopen = parseInt(Lightcontrolopen)
  1048. that.setData({
  1049. arr: trr,
  1050. index: Lightcontrolopen
  1051. })
  1052. }
  1053. //光控关
  1054. else if (data[i].id == "R" + Indexes + "_LcOff") {
  1055. var Lightcontrolshut = data[i].current_value
  1056. var prr = that.data.brr
  1057. for (let j = 0; j < 100; j++) {
  1058. prr[j] = j
  1059. }
  1060. Lightcontrolshut = parseInt(Lightcontrolshut)
  1061. that.setData({
  1062. brr: prr,
  1063. indexs: Lightcontrolshut
  1064. })
  1065. }
  1066. }
  1067. //时控一开时间
  1068. var timeOpen1
  1069. switch (timeopen1.length) {
  1070. case 1:
  1071. timeOpen1 = '00' + ':' + '0' + timeopen1.substring(0, 1)
  1072. break;
  1073. case 2:
  1074. timeOpen1 = '00' + ':' + timeopen1.substring(0, 2)
  1075. break;
  1076. case 3:
  1077. var timeOpen1 = '0' + timeopen1.substring(0, 1) + ':' + timeopen1.substring(1, 3)
  1078. break;
  1079. case 4:
  1080. var timeOpen1 = timeopen1.substring(0, 2) + ':' + timeopen1.substring(2, 4)
  1081. break;
  1082. }
  1083. //时控一关时间
  1084. var timeShut1
  1085. switch (timeshut1.length) {
  1086. case 1:
  1087. timeShut1 = '00' + ':' + '0' + timeshut1.substring(0, 1)
  1088. break;
  1089. case 2:
  1090. timeShut1 = '00' + ':' + timeshut1.substring(0, 2)
  1091. break;
  1092. case 3:
  1093. var timeShut1 = '0' + timeshut1.substring(0, 1) + ':' + timeshut1.substring(1, 3)
  1094. break;
  1095. case 4:
  1096. var timeShut1 = timeshut1.substring(0, 2) + ':' + timeshut1.substring(2, 4)
  1097. break;
  1098. }
  1099. //时控二开时间
  1100. var timeOpen2
  1101. switch (timeopen2.length) {
  1102. case 1:
  1103. timeOpen2 = '00' + ':' + '0' + timeopen2.substring(0, 1)
  1104. break;
  1105. case 2:
  1106. timeOpen2 = '00' + ':' + timeopen2.substring(0, 2)
  1107. break;
  1108. case 3:
  1109. var timeOpen2 = '0' + timeopen2.substring(0, 1) + ':' + timeopen2.substring(1, 3)
  1110. break;
  1111. case 4:
  1112. var timeOpen2 = timeopen2.substring(0, 2) + ':' + timeopen2.substring(2, 4)
  1113. break;
  1114. }
  1115. //时控二关时间
  1116. var timeShut2
  1117. switch (timeshut2.length) {
  1118. case 1:
  1119. timeShut2 = '00' + ':' + '0' + timeshut2.substring(0, 1)
  1120. break;
  1121. case 2:
  1122. timeShut2 = '00' + ':' + timeshut2.substring(0, 2)
  1123. break;
  1124. case 3:
  1125. var timeShut2 = '0' + timeshut2.substring(0, 1) + ':' + timeshut2.substring(1, 3)
  1126. break;
  1127. case 4:
  1128. var timeShut2 = timeshut2.substring(0, 2) + ':' + timeshut2.substring(2, 4)
  1129. break;
  1130. }
  1131. //功能1
  1132. for (var i = 0; i < par.length; i++) {
  1133. var engry = that.data.state
  1134. switch (par.substring(i, i + 1)) {
  1135. case "0":
  1136. switch (i) {
  1137. case 0:
  1138. engry[3] = false
  1139. that.setData({
  1140. state: engry
  1141. })
  1142. break;
  1143. case 1:
  1144. engry[2] = false
  1145. that.setData({
  1146. state: engry
  1147. })
  1148. break;
  1149. case 2:
  1150. that.setData({
  1151. fixed2: "固定"
  1152. })
  1153. break;
  1154. case 3:
  1155. that.setData({
  1156. fixed1: "固定"
  1157. })
  1158. break;
  1159. case 4:
  1160. engry[1] = false
  1161. that.setData({
  1162. state: engry
  1163. })
  1164. break;
  1165. case 5:
  1166. engry[0] = false
  1167. that.setData({
  1168. state: engry
  1169. })
  1170. break;
  1171. }
  1172. break;
  1173. case "1":
  1174. switch (i) {
  1175. case 0:
  1176. engry[3] = true
  1177. that.setData({
  1178. state: engry
  1179. })
  1180. break;
  1181. case 1:
  1182. engry[2] = true
  1183. that.setData({
  1184. state: engry
  1185. })
  1186. break;
  1187. case 2:
  1188. that.setData({
  1189. fixed2: "经纬"
  1190. })
  1191. break;
  1192. case 3:
  1193. that.setData({
  1194. fixed1: "经纬"
  1195. })
  1196. break;
  1197. case 4:
  1198. engry[1] = true
  1199. that.setData({
  1200. state: engry
  1201. })
  1202. break;
  1203. case 5:
  1204. engry[0] = true
  1205. that.setData({
  1206. state: engry
  1207. })
  1208. break;
  1209. }
  1210. break;
  1211. }
  1212. }
  1213. //功能2
  1214. for (let j = 0; j < qur.length; j++) {
  1215. var Engry = that.data.state1
  1216. switch (qur.substring(j, j + 1)) {
  1217. case "0":
  1218. switch (j) {
  1219. case 0:
  1220. that.setData({
  1221. fixed4: "固定"
  1222. })
  1223. break;
  1224. case 1:
  1225. that.setData({
  1226. fixed3: "固定"
  1227. })
  1228. break;
  1229. case 2:
  1230. Engry[1] = false
  1231. that.setData({
  1232. state1: Engry
  1233. })
  1234. break;
  1235. case 3:
  1236. Engry[0] = false
  1237. that.setData({
  1238. state1: Engry
  1239. })
  1240. break;
  1241. }
  1242. break;
  1243. case "1":
  1244. switch (j) {
  1245. case 0:
  1246. that.setData({
  1247. fixed4: "经纬"
  1248. })
  1249. break;
  1250. case 1:
  1251. that.setData({
  1252. fixed3: "经纬"
  1253. })
  1254. break;
  1255. case 2:
  1256. Engry[1] = true
  1257. that.setData({
  1258. state1: Engry
  1259. })
  1260. break;
  1261. case 3:
  1262. Engry[0] = true
  1263. that.setData({
  1264. state1: Engry
  1265. })
  1266. break;
  1267. }
  1268. break;
  1269. }
  1270. }
  1271. //日期调控
  1272. var controladdress = that.data.address
  1273. if (weeks == '0') {
  1274. for (let x = 0; x < 7; x++) {
  1275. controladdress[x] = "/image/false.png"
  1276. }
  1277. that.setData({
  1278. address: controladdress,
  1279. })
  1280. } else {
  1281. for (let i = 0; i < weeks.length; i++) {
  1282. switch (weeks.substring(i, i + 1)) {
  1283. case '0':
  1284. controladdress[weeks.length - i - 1] = "/image/false.png"
  1285. that.setData({
  1286. address: controladdress,
  1287. })
  1288. break;
  1289. case '1':
  1290. controladdress[weeks.length - i - 1] = "/image/true.png"
  1291. that.setData({
  1292. address: controladdress,
  1293. })
  1294. break;
  1295. }
  1296. }
  1297. }
  1298. //报警状态
  1299. police = parseInt(police)
  1300. police = police.toString(2)
  1301. switch (police.length) {
  1302. case 1:
  1303. police = '000' + police
  1304. break;
  1305. case 2:
  1306. police = '00' + police
  1307. break;
  1308. case 3:
  1309. police = '0' + police
  1310. break;
  1311. default:
  1312. police = police
  1313. break;
  1314. }
  1315. if (police.substring(1, 2) == '0' && police.substring(0, 1) == '0') {
  1316. that.setData({
  1317. radio1: true
  1318. })
  1319. } else if (police.substring(1, 2) == '1' && police.substring(0, 1) == '0') {
  1320. that.setData({
  1321. radio2: true
  1322. })
  1323. } else if (police.substring(1, 2) == '0' && police.substring(0, 1) == '1') {
  1324. that.setData({
  1325. radio3: true
  1326. })
  1327. }
  1328. var time = that.data.time
  1329. time[0] = timeOpen1
  1330. time[1] = timeShut1
  1331. time[2] = timeOpen2
  1332. time[3] = timeShut2
  1333. that.setData({
  1334. time: time
  1335. })
  1336. switch (that.data.state[0]) {
  1337. case true:
  1338. that.setData({
  1339. type1: "time",
  1340. timecontrolcolor1: "blue",
  1341. fontcolor1: "white",
  1342. })
  1343. break;
  1344. default:
  1345. that.setData({
  1346. type1: "",
  1347. timecontrolcolor1: "#888888",
  1348. fontcolor1: "#cccccc",
  1349. })
  1350. break;
  1351. }
  1352. switch (that.data.state[1]) {
  1353. case true:
  1354. that.setData({
  1355. type2: "time",
  1356. timecontrolcolor2: "blue",
  1357. fontcolor2: "white",
  1358. })
  1359. break;
  1360. default:
  1361. that.setData({
  1362. type2: "",
  1363. timecontrolcolor2: "#888888",
  1364. fontcolor2: "#cccccc",
  1365. })
  1366. break;
  1367. }
  1368. switch (that.data.state1[0]) {
  1369. case true:
  1370. that.setData({
  1371. type3: "time",
  1372. timecontrolcolor3: "blue",
  1373. fontcolor3: "white",
  1374. })
  1375. break;
  1376. default:
  1377. that.setData({
  1378. type3: "",
  1379. timecontrolcolor3: "#888888",
  1380. fontcolor3: "#cccccc",
  1381. })
  1382. break;
  1383. }
  1384. switch (that.data.state1[1]) {
  1385. case true:
  1386. that.setData({
  1387. type4: "time",
  1388. timecontrolcolor4: "blue",
  1389. fontcolor4: "white",
  1390. })
  1391. break;
  1392. default:
  1393. that.setData({
  1394. type4: "",
  1395. timecontrolcolor4: "#888888",
  1396. fontcolor4: "#cccccc",
  1397. })
  1398. break;
  1399. }
  1400. switch (that.data.state[2]) {
  1401. case true:
  1402. that.setData({
  1403. Lightcontrolcolor1: "blue",
  1404. fontcolor5: "white",
  1405. select1: "selector"
  1406. })
  1407. break;
  1408. default:
  1409. that.setData({
  1410. Lightcontrolcolor1: "#888888",
  1411. fontcolor5: "#cccccc",
  1412. select1: ""
  1413. })
  1414. break;
  1415. }
  1416. switch (that.data.state[3]) {
  1417. case true:
  1418. that.setData({
  1419. Lightcontrolcolor2: "blue",
  1420. fontcolor6: "white",
  1421. select2: "selector"
  1422. })
  1423. break;
  1424. default:
  1425. that.setData({
  1426. Lightcontrolcolor2: "#888888",
  1427. fontcolor6: "#cccccc",
  1428. select2: ""
  1429. })
  1430. break;
  1431. }
  1432. }
  1433. }
  1434. else{
  1435. wx.showModal({
  1436. title: '错误',
  1437. content: res.data.error,
  1438. showCancel:false
  1439. })
  1440. }
  1441. })
  1442. }
  1443. //新设备
  1444. else {
  1445. var Equip = that.data.equipment //设备id
  1446. getloop(Equip).then(suc => {
  1447. if (suc.data.code == 0) {
  1448. var suc = suc.data.data
  1449. var index = that.data.indexes
  1450. for (let i = 0; i < suc.length; i++) {
  1451. if (index == i) {
  1452. let Suc = suc[i]
  1453. var newSwitch = that.data.newSwitch
  1454. var timeValue = that.data.timeValue
  1455. var newSwitchstate = that.data.newSwitchstate
  1456. var choice = that.data.choice
  1457. var lightCondition = Suc.lightControlCondition
  1458. //光控启动条件
  1459. looplightlist().then(res => {
  1460. if (res.data.code == 0) {
  1461. var lightlist = res.data.data
  1462. that.setData({
  1463. lightlist: lightlist
  1464. })
  1465. for (let i = 0; i < lightlist.length; i++) {
  1466. choice[i] = false
  1467. }
  1468. if (lightCondition.includes(',') == true) {
  1469. lightCondition = lightCondition.split(',')
  1470. for (let j = 0; j < lightCondition.length; j++) {
  1471. if (lightCondition[j] == '1') {
  1472. choice[0] = true
  1473. } else if (lightCondition[j] == '2') {
  1474. choice[1] = true
  1475. } else if (lightCondition[j] == '3') {
  1476. choice[2] = true
  1477. } else if (lightCondition[j] == '4') {
  1478. choice[3] = true
  1479. }
  1480. }
  1481. } else {
  1482. if (lightCondition == '1') {
  1483. choice[0] = true
  1484. } else if (lightCondition == '2') {
  1485. choice[1] = true
  1486. } else if (lightCondition == '3') {
  1487. choice[2] = true
  1488. } else if (lightCondition == '4') {
  1489. choice[3] = true
  1490. }
  1491. }
  1492. that.setData({
  1493. choice: choice
  1494. })
  1495. } else {
  1496. wx.showModal({
  1497. title: '错误',
  1498. content: res.data.msg,
  1499. showCancel: false
  1500. })
  1501. }
  1502. })
  1503. //时控1
  1504. if (Suc.timeCondition1Switch == 1) {
  1505. newSwitch[0] = true
  1506. newSwitchstate[0] = 'time'
  1507. } else {
  1508. newSwitch[0] = false
  1509. newSwitchstate[0] = ''
  1510. }
  1511. timeValue[0] = Suc.timeCondition1OnTime
  1512. timeValue[1] = Suc.timeCondition1OffTime
  1513. //时控2
  1514. if (Suc.timeCondition2Switch == 1) {
  1515. newSwitch[1] = true
  1516. newSwitchstate[1] = 'time'
  1517. } else {
  1518. newSwitch[1] = false
  1519. newSwitchstate[1] = ''
  1520. }
  1521. timeValue[2] = Suc.timeCondition2OnTime
  1522. timeValue[3] = Suc.timeCondition2OffTime
  1523. //光控
  1524. if (Suc.lightControlSwitch == 1) {
  1525. newSwitch[2] = true
  1526. newSwitchstate[2] = 'time'
  1527. newSwitchstate[3] = 'selector'
  1528. } else {
  1529. newSwitch[2] = false
  1530. newSwitchstate[2] = ''
  1531. newSwitchstate[3] = ''
  1532. }
  1533. timeValue[4] = Suc.lightControlStart
  1534. timeValue[5] = Suc.lightControlEnd
  1535. for (let j = 0; j < timeValue.length; j++) {
  1536. if (timeValue[j] == "") {
  1537. timeValue[j] = '00:00'
  1538. }
  1539. }
  1540. that.setData({
  1541. timeValue: timeValue,
  1542. newSwitch: newSwitch
  1543. })
  1544. //监视新设备开关状态
  1545. var newSwitchs = that.data.newSwitch
  1546. var newfonts = that.data.newfont
  1547. var newcolors = that.data.newcolor
  1548. var newSwitchstates = that.data.newSwitchstate
  1549. var disableds = that.data.disabled
  1550. if (newSwitchs[0] == true) {
  1551. newfonts[0] = "white"
  1552. newcolors[0] = "blue"
  1553. newSwitchstates[0] = "time"
  1554. } else {
  1555. newfonts[0] = "#cccccc"
  1556. newcolors[0] = "#888888"
  1557. newSwitchstates[0] = ""
  1558. }
  1559. if (newSwitchs[1] == true) {
  1560. newfonts[1] = "white"
  1561. newcolors[1] = "blue"
  1562. newSwitchstates[1] = "time"
  1563. } else {
  1564. newfonts[1] = "#cccccc"
  1565. newcolors[1] = "#888888"
  1566. newSwitchstates[1] = ""
  1567. }
  1568. if (newSwitchs[2] == true) {
  1569. newfonts[2] = "white"
  1570. newcolors[2] = "blue"
  1571. newSwitchstates[2] = "time"
  1572. disableds = false
  1573. } else {
  1574. newfonts[2] = "#cccccc"
  1575. newcolors[2] = "#888888"
  1576. newSwitchstates[2] = ""
  1577. disableds = true
  1578. }
  1579. that.setData({
  1580. newcolor: newcolors,
  1581. newfont: newfonts,
  1582. newSwitch: newSwitchs,
  1583. newSwitchstate: newSwitchstates,
  1584. disabled: disableds
  1585. })
  1586. }
  1587. }
  1588. } else {
  1589. console.log('获取新设备回路参数失败')
  1590. wx.showModal({
  1591. title: '错误',
  1592. content: suc.data.msg,
  1593. showCancel: false
  1594. })
  1595. }
  1596. })
  1597. }
  1598. },
  1599. //时间调控
  1600. //时控开关选择器(1-4旧设备,5-6新设备)
  1601. Controltime1: function () {
  1602. var obtain1 = this.data.state
  1603. obtain1[0] = !obtain1[0]
  1604. if (obtain1[0] == true) {
  1605. this.setData({
  1606. type1: "time",
  1607. timecontrolcolor1: "blue",
  1608. fontcolor1: "white",
  1609. state: obtain1
  1610. })
  1611. } else {
  1612. this.setData({
  1613. type1: "",
  1614. timecontrolcolor1: "#888888",
  1615. fontcolor1: "#cccccc",
  1616. state: obtain1
  1617. })
  1618. }
  1619. },
  1620. Controltime2: function () {
  1621. var obtain2 = this.data.state
  1622. obtain2[1] = !obtain2[1]
  1623. if (obtain2[1] == true) {
  1624. this.setData({
  1625. type2: "time",
  1626. timecontrolcolor2: "blue",
  1627. fontcolor2: "white",
  1628. state: obtain2
  1629. })
  1630. } else {
  1631. this.setData({
  1632. type2: "",
  1633. timecontrolcolor2: "#888888",
  1634. fontcolor2: "#cccccc",
  1635. state: obtain2
  1636. })
  1637. }
  1638. },
  1639. Controltime3: function () {
  1640. var obtain3 = this.data.state1
  1641. obtain3[0] = !obtain3[0]
  1642. if (obtain3[0] == true) {
  1643. this.setData({
  1644. type3: "time",
  1645. timecontrolcolor3: "blue",
  1646. fontcolor3: "white",
  1647. state1: obtain3
  1648. })
  1649. } else {
  1650. this.setData({
  1651. type3: "",
  1652. timecontrolcolor3: "#888888",
  1653. fontcolor3: "#cccccc",
  1654. state1: obtain3
  1655. })
  1656. }
  1657. },
  1658. Controltime4: function () {
  1659. var obtain4 = this.data.state1
  1660. obtain4[1] = !obtain4[1]
  1661. if (obtain4[1] == true) {
  1662. this.setData({
  1663. type4: "time",
  1664. timecontrolcolor4: "blue",
  1665. fontcolor4: "white",
  1666. state1: obtain4
  1667. })
  1668. } else {
  1669. this.setData({
  1670. type4: "",
  1671. timecontrolcolor4: "#888888",
  1672. fontcolor4: "#cccccc",
  1673. state1: obtain4
  1674. })
  1675. }
  1676. },
  1677. Controltime5: function () {
  1678. let newSwitch = this.data.newSwitch
  1679. let newcolor = this.data.newcolor
  1680. let newfont = this.data.newfont
  1681. let newSwitchstate = this.data.newSwitchstate
  1682. newSwitch[0] = !newSwitch[0]
  1683. if (newSwitch[0] == true) {
  1684. newcolor[0] = "blue"
  1685. newfont[0] = "white"
  1686. newSwitchstate[0] = "time"
  1687. } else {
  1688. newcolor[0] = "#888888"
  1689. newfont[0] = "#cccccc"
  1690. newSwitchstate[0] = ""
  1691. }
  1692. this.setData({
  1693. newSwitch: newSwitch,
  1694. newcolor: newcolor,
  1695. newfont,
  1696. newfont,
  1697. newSwitchstate: newSwitchstate
  1698. })
  1699. },
  1700. Controltime6: function () {
  1701. let newSwitch = this.data.newSwitch
  1702. let newcolor = this.data.newcolor
  1703. let newfont = this.data.newfont
  1704. let newSwitchstate = this.data.newSwitchstate
  1705. newSwitch[1] = !newSwitch[1]
  1706. if (newSwitch[1] == true) {
  1707. newcolor[1] = "blue"
  1708. newfont[1] = "white"
  1709. newSwitchstate[1] = "time"
  1710. } else {
  1711. newcolor[1] = "#888888"
  1712. newfont[1] = "#cccccc"
  1713. newSwitchstate[1] = ""
  1714. }
  1715. this.setData({
  1716. newSwitch: newSwitch,
  1717. newcolor: newcolor,
  1718. newfont: newfont,
  1719. newSwitchstate: newSwitchstate
  1720. })
  1721. },
  1722. Controltime7: function () {
  1723. let newSwitch = this.data.newSwitch
  1724. let newcolor = this.data.newcolor
  1725. let newfont = this.data.newfont
  1726. let newSwitchstate = this.data.newSwitchstate
  1727. let disabled = this.data.disabled
  1728. newSwitch[2] = !newSwitch[2]
  1729. if (newSwitch[2] == true) {
  1730. newcolor[2] = "blue"
  1731. newfont[2] = "white"
  1732. newSwitchstate[2] = "time"
  1733. newSwitchstate[3] = "selector"
  1734. disabled = false
  1735. } else {
  1736. newcolor[2] = "#888888"
  1737. newfont[2] = "#cccccc"
  1738. newSwitchstate[2] = ""
  1739. newSwitchstate[3] = ""
  1740. disabled = true
  1741. }
  1742. this.setData({
  1743. newSwitch: newSwitch,
  1744. newcolor: newcolor,
  1745. newfont: newfont,
  1746. newSwitchstate: newSwitchstate,
  1747. disabled: disabled
  1748. })
  1749. },
  1750. //固定与经纬的切换
  1751. change1: function () {
  1752. var change1 = this.data.fixed1
  1753. if (change1 == "固定" && this.data.state[0] == true) {
  1754. this.setData({
  1755. fixed1: "经纬"
  1756. })
  1757. } else if (change1 == "经纬" && this.data.state[0] == true) {
  1758. this.setData({
  1759. fixed1: "固定"
  1760. })
  1761. }
  1762. },
  1763. change2: function () {
  1764. var change2 = this.data.fixed2
  1765. if (change2 == "固定" && this.data.state[1] == true) {
  1766. this.setData({
  1767. fixed2: "经纬"
  1768. })
  1769. } else if (change2 == "经纬" && this.data.state[1] == true) {
  1770. this.setData({
  1771. fixed2: "固定"
  1772. })
  1773. }
  1774. },
  1775. change3: function () {
  1776. var change3 = this.data.fixed3
  1777. if (change3 == "固定") {
  1778. this.setData({
  1779. fixed3: "经纬"
  1780. })
  1781. } else {
  1782. this.setData({
  1783. fixed3: "固定"
  1784. })
  1785. }
  1786. },
  1787. change4: function () {
  1788. var change4 = this.data.fixed4
  1789. if (change4 == "固定") {
  1790. this.setData({
  1791. fixed4: "经纬"
  1792. })
  1793. } else {
  1794. this.setData({
  1795. fixed4: "固定"
  1796. })
  1797. }
  1798. },
  1799. //显示改变后的时间的值(1-4旧设备,5-11新设备)
  1800. bindTimeChange1: function (e) {
  1801. let time = this.data.time
  1802. time[0] = e.detail.value
  1803. this.setData({
  1804. time: time
  1805. })
  1806. },
  1807. bindTimeChange2: function (e) {
  1808. let time = this.data.time
  1809. time[1] = e.detail.value
  1810. this.setData({
  1811. time: time
  1812. })
  1813. },
  1814. bindTimeChange3: function (e) {
  1815. let time = this.data.time
  1816. time[2] = e.detail.value
  1817. this.setData({
  1818. time: time
  1819. })
  1820. },
  1821. bindTimeChange4: function (e) {
  1822. let time = this.data.time
  1823. time[3] = e.detail.value
  1824. this.setData({
  1825. time: time
  1826. })
  1827. },
  1828. bindTimeChange5: function (e) {
  1829. let time = this.data.timeValue
  1830. time[0] = e.detail.value
  1831. this.setData({
  1832. timeValue: time
  1833. })
  1834. },
  1835. bindTimeChange6: function (e) {
  1836. let time = this.data.timeValue
  1837. time[1] = e.detail.value
  1838. this.setData({
  1839. timeValue: time
  1840. })
  1841. },
  1842. bindTimeChange7: function (e) {
  1843. let time = this.data.timeValue
  1844. time[2] = e.detail.value
  1845. this.setData({
  1846. timeValue: time
  1847. })
  1848. },
  1849. bindTimeChange8: function (e) {
  1850. let time = this.data.timeValue
  1851. time[3] = e.detail.value
  1852. this.setData({
  1853. timeValue: time
  1854. })
  1855. },
  1856. bindTimeChange9: function (e) {
  1857. let time = this.data.timeValue
  1858. time[4] = e.detail.value
  1859. this.setData({
  1860. timeValue: time
  1861. })
  1862. },
  1863. bindTimeChange10: function (e) {
  1864. let time = this.data.timeValue
  1865. time[5] = e.detail.value
  1866. this.setData({
  1867. timeValue: time
  1868. })
  1869. },
  1870. //日期调控(图片切换)
  1871. setbuty0: function () {
  1872. var that = this
  1873. var a0 = that.data.address
  1874. if (that.data.address[0] == "/image/true.png") {
  1875. a0[0] = "/image/false.png"
  1876. this.setData({
  1877. address: a0,
  1878. })
  1879. } else {
  1880. a0[0] = "/image/true.png"
  1881. this.setData({
  1882. address: a0,
  1883. })
  1884. }
  1885. },
  1886. setbuty1: function () {
  1887. var that = this
  1888. var a1 = that.data.address
  1889. if (that.data.address[1] == "/image/true.png") {
  1890. a1[1] = "/image/false.png"
  1891. this.setData({
  1892. address: a1,
  1893. })
  1894. } else {
  1895. a1[1] = "/image/true.png"
  1896. this.setData({
  1897. address: a1,
  1898. })
  1899. }
  1900. },
  1901. setbuty2: function () {
  1902. var that = this
  1903. var a2 = that.data.address
  1904. if (that.data.address[2] == "/image/true.png") {
  1905. a2[2] = "/image/false.png"
  1906. this.setData({
  1907. address: a2,
  1908. })
  1909. } else {
  1910. a2[2] = "/image/true.png"
  1911. this.setData({
  1912. address: a2,
  1913. })
  1914. }
  1915. },
  1916. setbuty3: function () {
  1917. var that = this
  1918. var a3 = that.data.address
  1919. if (that.data.address[3] == "/image/true.png") {
  1920. a3[3] = "/image/false.png"
  1921. this.setData({
  1922. address: a3,
  1923. })
  1924. } else {
  1925. a3[3] = "/image/true.png"
  1926. this.setData({
  1927. address: a3,
  1928. })
  1929. }
  1930. },
  1931. setbuty4: function () {
  1932. var that = this
  1933. var a4 = that.data.address
  1934. if (that.data.address[4] == "/image/true.png") {
  1935. a4[4] = "/image/false.png"
  1936. this.setData({
  1937. address: a4,
  1938. })
  1939. } else {
  1940. a4[4] = "/image/true.png"
  1941. this.setData({
  1942. address: a4,
  1943. })
  1944. }
  1945. },
  1946. setbuty5: function () {
  1947. var that = this
  1948. var a5 = that.data.address
  1949. if (that.data.address[5] == "/image/true.png") {
  1950. a5[5] = "/image/false.png"
  1951. this.setData({
  1952. address: a5,
  1953. })
  1954. } else {
  1955. a5[5] = "/image/true.png"
  1956. this.setData({
  1957. address: a5,
  1958. })
  1959. }
  1960. },
  1961. setbuty6: function () {
  1962. var that = this
  1963. var a6 = that.data.address
  1964. if (that.data.address[6] == "/image/true.png") {
  1965. a6[6] = "/image/false.png"
  1966. this.setData({
  1967. address: a6,
  1968. })
  1969. } else {
  1970. a6[6] = "/image/true.png"
  1971. this.setData({
  1972. address: a6,
  1973. })
  1974. }
  1975. },
  1976. //光控
  1977. //光控开关选择器
  1978. Controllight1: function () {
  1979. var Lightstatus = this.data.state
  1980. Lightstatus[2] = !Lightstatus[2]
  1981. if (Lightstatus[2] == true) {
  1982. for (let a = 0; a < 100; a++) {
  1983. var arr1 = this.data.arr
  1984. arr1[a] = a
  1985. }
  1986. this.setData({
  1987. arr: arr1,
  1988. fontcolor5: "white",
  1989. Lightcontrolcolor1: "blue",
  1990. select1: "selector"
  1991. })
  1992. } else {
  1993. this.setData({
  1994. Lightcontrolcolor1: "#888888",
  1995. fontcolor5: "#cccccc",
  1996. select1: ""
  1997. })
  1998. }
  1999. },
  2000. Controllight2: function () {
  2001. var Lightstatus = this.data.state
  2002. Lightstatus[3] = !Lightstatus[3]
  2003. if (Lightstatus[3] == true) {
  2004. for (let a = 0; a < 100; a++) {
  2005. var arr1 = this.data.arr
  2006. arr1[a] = a
  2007. }
  2008. this.setData({
  2009. arr: arr1,
  2010. fontcolor6: "white",
  2011. Lightcontrolcolor2: "blue",
  2012. select2: "selector"
  2013. })
  2014. } else {
  2015. this.setData({
  2016. Lightcontrolcolor2: "#888888",
  2017. fontcolor6: "#cccccc",
  2018. select2: ""
  2019. })
  2020. }
  2021. },
  2022. //调整光控显示的值
  2023. bindPickerChange1: function (e) {
  2024. this.setData({
  2025. index: e.detail.value
  2026. })
  2027. },
  2028. bindPickerChange2: function (e) {
  2029. this.setData({
  2030. indexs: e.detail.value
  2031. })
  2032. },
  2033. //报警状态
  2034. Changestate1: function () {
  2035. this.setData({
  2036. radio1: true,
  2037. radio2: false,
  2038. radio3: false,
  2039. alert: "1"
  2040. })
  2041. },
  2042. Changestate2: function () {
  2043. this.setData({
  2044. radio1: false,
  2045. radio2: true,
  2046. radio3: false,
  2047. alert: "5"
  2048. })
  2049. },
  2050. Changestate3: function () {
  2051. this.setData({
  2052. radio1: false,
  2053. radio2: false,
  2054. radio3: true,
  2055. alert: "9"
  2056. })
  2057. },
  2058. //刷新页面
  2059. RefreshPage: function () {
  2060. wx.showToast({
  2061. title: '刷新中',
  2062. icon: 'loading',
  2063. duration: 2000
  2064. })
  2065. var that = this
  2066. //获取机型改变switch大小
  2067. wx.getSystemInfo({
  2068. success: function (res) {
  2069. if (res.model == 'iPad' || res.model == 'iPad Pro 10.5-inch' || res.model == 'iPad Pro 12.9-inch') {
  2070. that.setData({
  2071. zoom: 1
  2072. })
  2073. }
  2074. }
  2075. })
  2076. var group = wx.getStorageSync('group')
  2077. if (group != null && group.length != 0) {
  2078. //分组下拉
  2079. var group = wx.getStorageSync('group')
  2080. var groups = []
  2081. for (let i = 0; i < group.length; i++) {
  2082. groups.push(group[i].groupName)
  2083. }
  2084. that.setData({
  2085. groupName: groups
  2086. })
  2087. //改变分组下标
  2088. if (wx.getStorageSync('groupName') != '') {
  2089. let GroupName = groups
  2090. for (let n = 0; n < GroupName.length; n++) {
  2091. if (GroupName[n] == wx.getStorageSync('groupName')) {
  2092. that.setData({
  2093. groupIndex: n
  2094. })
  2095. }
  2096. }
  2097. } else {
  2098. wx.setStorageSync('groupName', groups[0])
  2099. }
  2100. //设备下拉
  2101. var device = []
  2102. var groupName = that.data.groupName
  2103. var groupIndex = that.data.groupIndex
  2104. for (let j = 0; j < group.length; j++) {
  2105. if (groupName[groupIndex] == group[j].groupName) {
  2106. if (group[j].devices != null && group[j].devices.length != 0) {
  2107. for (let p = 0; p < group[j].devices.length; p++) {
  2108. device.push(group[j].devices[p].deviceName)
  2109. }
  2110. that.setData({
  2111. deviceName: device
  2112. })
  2113. //改变设备下标
  2114. if (wx.getStorageSync('deviceName') != '') {
  2115. for (let m = 0; m < device.length; m++) {
  2116. if (device[m] == wx.getStorageSync('deviceName')) {
  2117. that.setData({
  2118. deviceIndex: m
  2119. })
  2120. }
  2121. }
  2122. } else {
  2123. wx.setStorageSync('deviceName', device[0])
  2124. }
  2125. //获取设备信息
  2126. var currentGroup = that.data.groupName[that.data.groupIndex]
  2127. var currentDevice = that.data.deviceName[that.data.deviceIndex]
  2128. var message = enloop.deviceMessage(currentGroup, currentDevice)
  2129. that.setData({
  2130. equipment: message.Device,
  2131. subset: message.id,
  2132. }) //记录当前的设备id和分组id
  2133. //旧设备
  2134. if (message.modules == 0) {
  2135. that.setData({
  2136. play: 0,
  2137. deviceKey: message.deviceKey,
  2138. deviceId: message.deviceId
  2139. })
  2140. getBasic(message.deviceId, message.deviceKey).then(res => {
  2141. if(res.data.errno == 0){
  2142. if (res.data.data.online == true) {
  2143. that.setData({
  2144. status: '在线'
  2145. })
  2146. } else {
  2147. that.setData({
  2148. status: '离线'
  2149. })
  2150. }
  2151. getData(message.deviceId, message.deviceKey).then(ever => {
  2152. if(ever.data.errno == 0){
  2153. var {
  2154. data
  2155. } = ever.data
  2156. //判断设备是否处于初始化状态
  2157. var initialization = true
  2158. for (let t = 0; t < data.length; t++) {
  2159. if ('current_value' in data[t] == false) {
  2160. initialization = false
  2161. }
  2162. }
  2163. if (initialization == true) {
  2164. var Indexes = that.data.indexes
  2165. Indexes = Indexes + 1
  2166. var crr = that.data.crr.length
  2167. if (Indexes == crr) {
  2168. } else {
  2169. //以下为回路
  2170. for (let i = 1; i < data.length; i++) {
  2171. //时控一开时间
  2172. if (data[i].id == "R" + Indexes + "_DayOpenTime1") {
  2173. var timeopen1 = data[i].current_value
  2174. }
  2175. //时控一关时间
  2176. else if (data[i].id == "R" + Indexes + "_DayCloseTime1") {
  2177. var timeshut1 = data[i].current_value
  2178. }
  2179. //时控二开时间
  2180. else if (data[i].id == "R" + Indexes + "_DayOpenTime2") {
  2181. var timeopen2 = data[i].current_value
  2182. }
  2183. //时控二关时间
  2184. else if (data[i].id == "R" + Indexes + "_DayCloseTime2") {
  2185. var timeshut2 = data[i].current_value
  2186. }
  2187. //日期调控
  2188. else if (data[i].id == "R" + Indexes + "_Week") {
  2189. var weeks = data[i].current_value
  2190. that.setData({
  2191. recorddate: weeks
  2192. })
  2193. weeks = parseInt(weeks)
  2194. weeks = weeks.toString(2)
  2195. weeks = weeks + ''
  2196. if (weeks != '0') {
  2197. weeks = weeks.slice(1)
  2198. }
  2199. }
  2200. //功能一
  2201. else if (data[i].id == "R" + Indexes + "_FunctionStatus1") {
  2202. var Function1 = data[i].current_value
  2203. var par = parseInt(Function1)
  2204. par = par.toString(2)
  2205. par = par + ''
  2206. switch (par.length) {
  2207. case 1:
  2208. par = '00000' + par
  2209. break;
  2210. case 2:
  2211. par = '0000' + par
  2212. break;
  2213. case 3:
  2214. par = '000' + par
  2215. break;
  2216. case 4:
  2217. par = '00' + par
  2218. break;
  2219. case 5:
  2220. par = '0' + par
  2221. break;
  2222. default:
  2223. par = par
  2224. }
  2225. }
  2226. //功能二
  2227. else if (data[i].id == "R" + Indexes + "_FunctionStatus2") {
  2228. var Function2 = data[i].current_value
  2229. var qur = parseInt(Function2)
  2230. qur = qur.toString(2)
  2231. qur = qur + ''
  2232. switch (qur.length) {
  2233. case 1:
  2234. qur = '000' + qur
  2235. break;
  2236. case 2:
  2237. qur = '00' + qur
  2238. break;
  2239. case 3:
  2240. qur = '0' + qur
  2241. break;
  2242. case 4:
  2243. qur = qur
  2244. break;
  2245. }
  2246. }
  2247. //报警
  2248. else if (data[i].id == "R" + Indexes + "_RelayStatus") {
  2249. var police = data[i].current_value
  2250. }
  2251. //光控开
  2252. else if (data[i].id == "R" + Indexes + "_LcOn") {
  2253. var Lightcontrolopen = data[i].current_value
  2254. var trr = that.data.arr
  2255. for (let i = 0; i < 100; i++) {
  2256. trr[i] = i
  2257. }
  2258. Lightcontrolopen = parseInt(Lightcontrolopen)
  2259. that.setData({
  2260. arr: trr,
  2261. index: Lightcontrolopen
  2262. })
  2263. }
  2264. //光控关
  2265. else if (data[i].id == "R" + Indexes + "_LcOff") {
  2266. var Lightcontrolshut = data[i].current_value
  2267. var prr = that.data.brr
  2268. for (let j = 0; j < 100; j++) {
  2269. prr[j] = j
  2270. }
  2271. Lightcontrolshut = parseInt(Lightcontrolshut)
  2272. that.setData({
  2273. brr: prr,
  2274. indexs: Lightcontrolshut
  2275. })
  2276. }
  2277. }
  2278. //时控一开时间
  2279. var timeOpen1
  2280. switch (timeopen1.length) {
  2281. case 1:
  2282. timeOpen1 = '00' + ':' + '0' + timeopen1.substring(0, 1)
  2283. break;
  2284. case 2:
  2285. timeOpen1 = '00' + ':' + timeopen1.substring(0, 2)
  2286. break;
  2287. case 3:
  2288. var timeOpen1 = '0' + timeopen1.substring(0, 1) + ':' + timeopen1.substring(1, 3)
  2289. break;
  2290. case 4:
  2291. var timeOpen1 = timeopen1.substring(0, 2) + ':' + timeopen1.substring(2, 4)
  2292. break;
  2293. }
  2294. //时控一关时间
  2295. var timeShut1
  2296. switch (timeshut1.length) {
  2297. case 1:
  2298. timeShut1 = '00' + ':' + '0' + timeshut1.substring(0, 1)
  2299. break;
  2300. case 2:
  2301. timeShut1 = '00' + ':' + timeshut1.substring(0, 2)
  2302. break;
  2303. case 3:
  2304. var timeShut1 = '0' + timeshut1.substring(0, 1) + ':' + timeshut1.substring(1, 3)
  2305. break;
  2306. case 4:
  2307. var timeShut1 = timeshut1.substring(0, 2) + ':' + timeshut1.substring(2, 4)
  2308. break;
  2309. }
  2310. //时控二开时间
  2311. var timeOpen2
  2312. switch (timeopen2.length) {
  2313. case 1:
  2314. timeOpen2 = '00' + ':' + '0' + timeopen2.substring(0, 1)
  2315. break;
  2316. case 2:
  2317. timeOpen2 = '00' + ':' + timeopen2.substring(0, 2)
  2318. break;
  2319. case 3:
  2320. var timeOpen2 = '0' + timeopen2.substring(0, 1) + ':' + timeopen2.substring(1, 3)
  2321. break;
  2322. case 4:
  2323. var timeOpen2 = timeopen2.substring(0, 2) + ':' + timeopen2.substring(2, 4)
  2324. break;
  2325. }
  2326. //时控二关时间
  2327. var timeShut2
  2328. switch (timeshut2.length) {
  2329. case 1:
  2330. timeShut2 = '00' + ':' + '0' + timeshut2.substring(0, 1)
  2331. break;
  2332. case 2:
  2333. timeShut2 = '00' + ':' + timeshut2.substring(0, 2)
  2334. break;
  2335. case 3:
  2336. var timeShut2 = '0' + timeshut2.substring(0, 1) + ':' + timeshut2.substring(1, 3)
  2337. break;
  2338. case 4:
  2339. var timeShut2 = timeshut2.substring(0, 2) + ':' + timeshut2.substring(2, 4)
  2340. break;
  2341. }
  2342. //功能1
  2343. for (var i = 0; i < par.length; i++) {
  2344. var engry = that.data.state
  2345. switch (par.substring(i, i + 1)) {
  2346. case "0":
  2347. switch (i) {
  2348. case 0:
  2349. engry[3] = false
  2350. that.setData({
  2351. state: engry
  2352. })
  2353. break;
  2354. case 1:
  2355. engry[2] = false
  2356. that.setData({
  2357. state: engry
  2358. })
  2359. break;
  2360. case 2:
  2361. that.setData({
  2362. fixed2: "固定"
  2363. })
  2364. break;
  2365. case 3:
  2366. that.setData({
  2367. fixed1: "固定"
  2368. })
  2369. break;
  2370. case 4:
  2371. engry[1] = false
  2372. that.setData({
  2373. state: engry
  2374. })
  2375. break;
  2376. case 5:
  2377. engry[0] = false
  2378. that.setData({
  2379. state: engry
  2380. })
  2381. break;
  2382. }
  2383. break;
  2384. case "1":
  2385. switch (i) {
  2386. case 0:
  2387. engry[3] = true
  2388. that.setData({
  2389. state: engry
  2390. })
  2391. break;
  2392. case 1:
  2393. engry[2] = true
  2394. that.setData({
  2395. state: engry
  2396. })
  2397. break;
  2398. case 2:
  2399. that.setData({
  2400. fixed2: "经纬"
  2401. })
  2402. break;
  2403. case 3:
  2404. that.setData({
  2405. fixed1: "经纬"
  2406. })
  2407. break;
  2408. case 4:
  2409. engry[1] = true
  2410. that.setData({
  2411. state: engry
  2412. })
  2413. break;
  2414. case 5:
  2415. engry[0] = true
  2416. that.setData({
  2417. state: engry
  2418. })
  2419. break;
  2420. }
  2421. break;
  2422. }
  2423. }
  2424. //功能2
  2425. for (let j = 0; j < qur.length; j++) {
  2426. var Engry = that.data.state1
  2427. switch (qur.substring(j, j + 1)) {
  2428. case "0":
  2429. switch (j) {
  2430. case 0:
  2431. that.setData({
  2432. fixed4: "固定"
  2433. })
  2434. break;
  2435. case 1:
  2436. that.setData({
  2437. fixed3: "固定"
  2438. })
  2439. break;
  2440. case 2:
  2441. Engry[1] = false
  2442. that.setData({
  2443. state1: Engry
  2444. })
  2445. break;
  2446. case 3:
  2447. Engry[0] = false
  2448. that.setData({
  2449. state1: Engry
  2450. })
  2451. break;
  2452. }
  2453. break;
  2454. case "1":
  2455. switch (j) {
  2456. case 0:
  2457. that.setData({
  2458. fixed4: "经纬"
  2459. })
  2460. break;
  2461. case 1:
  2462. that.setData({
  2463. fixed3: "经纬"
  2464. })
  2465. break;
  2466. case 2:
  2467. Engry[1] = true
  2468. that.setData({
  2469. state1: Engry
  2470. })
  2471. break;
  2472. case 3:
  2473. Engry[0] = true
  2474. that.setData({
  2475. state1: Engry
  2476. })
  2477. break;
  2478. }
  2479. break;
  2480. }
  2481. }
  2482. //日期调控
  2483. var controladdress = that.data.address
  2484. if (weeks == '0') {
  2485. for (let x = 0; x < 7; x++) {
  2486. controladdress[x] = "/image/false.png"
  2487. }
  2488. that.setData({
  2489. address: controladdress,
  2490. })
  2491. } else {
  2492. for (let i = 0; i < weeks.length; i++) {
  2493. switch (weeks.substring(i, i + 1)) {
  2494. case '0':
  2495. controladdress[weeks.length - i - 1] = "/image/false.png"
  2496. that.setData({
  2497. address: controladdress,
  2498. })
  2499. break;
  2500. case '1':
  2501. controladdress[weeks.length - i - 1] = "/image/true.png"
  2502. that.setData({
  2503. address: controladdress,
  2504. })
  2505. break;
  2506. }
  2507. }
  2508. }
  2509. //报警状态
  2510. police = parseInt(police)
  2511. police = police.toString(2)
  2512. switch (police.length) {
  2513. case 1:
  2514. police = '000' + police
  2515. break;
  2516. case 2:
  2517. police = '00' + police
  2518. break;
  2519. case 3:
  2520. police = '0' + police
  2521. break;
  2522. default:
  2523. police = police
  2524. break;
  2525. }
  2526. if (police.substring(1, 2) == '0' && police.substring(0, 1) == '0') {
  2527. that.setData({
  2528. radio1: true
  2529. })
  2530. } else if (police.substring(1, 2) == '1' && police.substring(0, 1) == '0') {
  2531. that.setData({
  2532. radio2: true
  2533. })
  2534. } else if (police.substring(1, 2) == '0' && police.substring(0, 1) == '1') {
  2535. that.setData({
  2536. radio3: true
  2537. })
  2538. }
  2539. var time = that.data.time
  2540. time[0] = timeOpen1
  2541. time[1] = timeShut1
  2542. time[2] = timeOpen2
  2543. time[3] = timeShut2
  2544. that.setData({
  2545. time: time
  2546. })
  2547. switch (that.data.state[0]) {
  2548. case true:
  2549. that.setData({
  2550. type1: "time",
  2551. timecontrolcolor1: "blue",
  2552. fontcolor1: "white",
  2553. })
  2554. break;
  2555. default:
  2556. that.setData({
  2557. type1: "",
  2558. timecontrolcolor1: "#888888",
  2559. fontcolor1: "#cccccc",
  2560. })
  2561. break;
  2562. }
  2563. switch (that.data.state[1]) {
  2564. case true:
  2565. that.setData({
  2566. type2: "time",
  2567. timecontrolcolor2: "blue",
  2568. fontcolor2: "white",
  2569. })
  2570. break;
  2571. default:
  2572. that.setData({
  2573. type2: "",
  2574. timecontrolcolor2: "#888888",
  2575. fontcolor2: "#cccccc",
  2576. })
  2577. break;
  2578. }
  2579. switch (that.data.state1[0]) {
  2580. case true:
  2581. that.setData({
  2582. type3: "time",
  2583. timecontrolcolor3: "blue",
  2584. fontcolor3: "white",
  2585. })
  2586. break;
  2587. default:
  2588. that.setData({
  2589. type3: "",
  2590. timecontrolcolor3: "#888888",
  2591. fontcolor3: "#cccccc",
  2592. })
  2593. break;
  2594. }
  2595. switch (that.data.state1[1]) {
  2596. case true:
  2597. that.setData({
  2598. type4: "time",
  2599. timecontrolcolor4: "blue",
  2600. fontcolor4: "white",
  2601. })
  2602. break;
  2603. default:
  2604. that.setData({
  2605. type4: "",
  2606. timecontrolcolor4: "#888888",
  2607. fontcolor4: "#cccccc",
  2608. })
  2609. break;
  2610. }
  2611. switch (that.data.state[2]) {
  2612. case true:
  2613. that.setData({
  2614. Lightcontrolcolor1: "blue",
  2615. fontcolor5: "white",
  2616. select1: "selector"
  2617. })
  2618. break;
  2619. default:
  2620. that.setData({
  2621. Lightcontrolcolor1: "#888888",
  2622. fontcolor5: "#cccccc",
  2623. select1: ""
  2624. })
  2625. break;
  2626. }
  2627. switch (that.data.state[3]) {
  2628. case true:
  2629. that.setData({
  2630. Lightcontrolcolor2: "blue",
  2631. fontcolor6: "white",
  2632. select2: "selector"
  2633. })
  2634. break;
  2635. default:
  2636. that.setData({
  2637. Lightcontrolcolor2: "#888888",
  2638. fontcolor6: "#cccccc",
  2639. select2: ""
  2640. })
  2641. break;
  2642. }
  2643. }
  2644. } else {
  2645. getDevice(message.Device, message.id).then(rgb => {
  2646. if (rgb.data.code == 0) {
  2647. var rgbs = rgb.data.data.circuits
  2648. rgbs = rgbs.split(',')
  2649. that.setData({
  2650. crr: rgbs
  2651. })
  2652. } else {
  2653. wx.showModal({
  2654. title: '错误',
  2655. content: rgb.data.msg,
  2656. showCancel: false
  2657. })
  2658. }
  2659. })
  2660. }
  2661. }
  2662. else{
  2663. wx.showModal({
  2664. title: '错误',
  2665. content: ever.data.error,
  2666. showCancel:false
  2667. })
  2668. }
  2669. })
  2670. }
  2671. else{
  2672. wx.showModal({
  2673. title: '错误',
  2674. content: res.data.error,
  2675. showCancel:false
  2676. })
  2677. }
  2678. })
  2679. }
  2680. //新设备
  2681. else {
  2682. that.setData({
  2683. play: 1
  2684. })
  2685. //新设备在线状态
  2686. getDevice(message.Device, message.id).then(nrg => {
  2687. if (nrg.data.code == 0) {
  2688. var nrg = nrg.data.data
  2689. if (nrg.status == 1) {
  2690. that.setData({
  2691. status: '在线'
  2692. })
  2693. } else {
  2694. that.setData({
  2695. status: '离线'
  2696. })
  2697. }
  2698. getloop(message.Device).then(suc => {
  2699. if (suc.data.code == 0) {
  2700. var suc = suc.data.data
  2701. var index = that.data.indexes
  2702. for (let i = 0; i < suc.length; i++) {
  2703. if (index == i) {
  2704. let Suc = suc[i]
  2705. var newSwitch = that.data.newSwitch
  2706. var timeValue = that.data.timeValue
  2707. var newSwitchstate = that.data.newSwitchstate
  2708. var choice = that.data.choice
  2709. var lightCondition = Suc.lightControlCondition
  2710. //光控启动条件
  2711. looplightlist().then(res => {
  2712. if (res.data.code == 0) {
  2713. var lightlist = res.data.data
  2714. that.setData({
  2715. lightlist: lightlist
  2716. })
  2717. for (let i = 0; i < lightlist.length; i++) {
  2718. choice[i] = false
  2719. }
  2720. if (lightCondition.includes(',') == true) {
  2721. lightCondition = lightCondition.split(',')
  2722. for (let j = 0; j < lightCondition.length; j++) {
  2723. if (lightCondition[j] == '1') {
  2724. choice[0] = true
  2725. } else if (lightCondition[j] == '2') {
  2726. choice[1] = true
  2727. } else if (lightCondition[j] == '3') {
  2728. choice[2] = true
  2729. } else if (lightCondition[j] == '4') {
  2730. choice[3] = true
  2731. }
  2732. }
  2733. } else {
  2734. if (lightCondition == '1') {
  2735. choice[0] = true
  2736. } else if (lightCondition == '2') {
  2737. choice[1] = true
  2738. } else if (lightCondition == '3') {
  2739. choice[2] = true
  2740. } else if (lightCondition == '4') {
  2741. choice[3] = true
  2742. }
  2743. }
  2744. that.setData({
  2745. choice: choice
  2746. })
  2747. } else {
  2748. wx.showModal({
  2749. title: '错误',
  2750. content: res.data.msg,
  2751. showCancel: false
  2752. })
  2753. }
  2754. })
  2755. //时控1
  2756. if (Suc.timeCondition1Switch == 1) {
  2757. newSwitch[0] = true
  2758. newSwitchstate[0] = 'time'
  2759. } else {
  2760. newSwitch[0] = false
  2761. newSwitchstate[0] = ''
  2762. }
  2763. timeValue[0] = Suc.timeCondition1OnTime
  2764. timeValue[1] = Suc.timeCondition1OffTime
  2765. //时控2
  2766. if (Suc.timeCondition2Switch == 1) {
  2767. newSwitch[1] = true
  2768. newSwitchstate[1] = 'time'
  2769. } else {
  2770. newSwitch[1] = false
  2771. newSwitchstate[1] = ''
  2772. }
  2773. timeValue[2] = Suc.timeCondition2OnTime
  2774. timeValue[3] = Suc.timeCondition2OffTime
  2775. //光控
  2776. if (Suc.lightControlSwitch == 1) {
  2777. newSwitch[2] = true
  2778. newSwitchstate[2] = 'time'
  2779. newSwitchstate[3] = 'selector'
  2780. } else {
  2781. newSwitch[2] = false
  2782. newSwitchstate[2] = ''
  2783. newSwitchstate[3] = ''
  2784. }
  2785. timeValue[4] = Suc.lightControlStart
  2786. timeValue[5] = Suc.lightControlEnd
  2787. for (let j = 0; j < timeValue.length; j++) {
  2788. if (timeValue[j] == "") {
  2789. timeValue[j] = '00:00'
  2790. }
  2791. }
  2792. that.setData({
  2793. crr: message.loopnum,
  2794. timeValue: timeValue,
  2795. newSwitch: newSwitch
  2796. })
  2797. //监视新设备开关状态
  2798. var newSwitchs = that.data.newSwitch
  2799. var newfonts = that.data.newfont
  2800. var newcolors = that.data.newcolor
  2801. var newSwitchstates = that.data.newSwitchstate
  2802. var disableds = that.data.disabled
  2803. if (newSwitchs[0] == true) {
  2804. newfonts[0] = "white"
  2805. newcolors[0] = "blue"
  2806. newSwitchstates[0] = "time"
  2807. } else {
  2808. newfonts[0] = "#cccccc"
  2809. newcolors[0] = "#888888"
  2810. newSwitchstates[0] = ""
  2811. }
  2812. if (newSwitchs[1] == true) {
  2813. newfonts[1] = "white"
  2814. newcolors[1] = "blue"
  2815. newSwitchstates[1] = "time"
  2816. } else {
  2817. newfonts[1] = "#cccccc"
  2818. newcolors[1] = "#888888"
  2819. newSwitchstates[1] = ""
  2820. }
  2821. if (newSwitchs[2] == true) {
  2822. newfonts[2] = "white"
  2823. newcolors[2] = "blue"
  2824. newSwitchstates[2] = "time"
  2825. disableds = false
  2826. } else {
  2827. newfonts[2] = "#cccccc"
  2828. newcolors[2] = "#888888"
  2829. newSwitchstates[2] = ""
  2830. disableds = true
  2831. }
  2832. that.setData({
  2833. newcolor: newcolors,
  2834. newfont: newfonts,
  2835. newSwitch: newSwitchs,
  2836. newSwitchstate: newSwitchstates,
  2837. disabled: disableds
  2838. })
  2839. }
  2840. }
  2841. } else {
  2842. console.log('获取新设备回路参数失败')
  2843. wx.showModal({
  2844. title: '错误',
  2845. content: suc.data.msg,
  2846. showCancel: false
  2847. })
  2848. }
  2849. })
  2850. } else {
  2851. console.log('新设备获取信息失败')
  2852. wx.showModal({
  2853. title: '错误',
  2854. content: nrg.data.msg,
  2855. showCancel: false
  2856. })
  2857. }
  2858. })
  2859. }
  2860. } else {
  2861. that.setData({
  2862. status: '离线',
  2863. deviceName: []
  2864. })
  2865. }
  2866. }
  2867. }
  2868. } else {
  2869. that.setData({
  2870. deviceName: [],
  2871. groupName: []
  2872. })
  2873. }
  2874. },
  2875. //新设备多选框
  2876. point1: function () {
  2877. var choice = this.data.choice
  2878. if (choice[0] == true) {
  2879. choice[0] = false
  2880. } else {
  2881. choice[0] = true
  2882. }
  2883. this.setData({
  2884. choice: choice
  2885. })
  2886. },
  2887. point2: function () {
  2888. var choice = this.data.choice
  2889. if (choice[1] == true) {
  2890. choice[1] = false
  2891. } else {
  2892. choice[1] = true
  2893. }
  2894. this.setData({
  2895. choice: choice
  2896. })
  2897. },
  2898. point3: function () {
  2899. var choice = this.data.choice
  2900. if (choice[2] == true) {
  2901. choice[2] = false
  2902. } else {
  2903. choice[2] = true
  2904. }
  2905. this.setData({
  2906. choice: choice
  2907. })
  2908. },
  2909. point4: function () {
  2910. var choice = this.data.choice
  2911. if (choice[3] == true) {
  2912. choice[3] = false
  2913. } else {
  2914. choice[3] = true
  2915. }
  2916. this.setData({
  2917. choice: choice
  2918. })
  2919. },
  2920. //存储数据
  2921. Storedata: function () {
  2922. wx.showToast({
  2923. title: '存储数据中',
  2924. icon: 'loading',
  2925. duration: 3000
  2926. })
  2927. var that = this
  2928. var play = that.data.play
  2929. //旧设备
  2930. if (play == 0) {
  2931. var indexes = that.data.indexes
  2932. var lamp = wx.getStorageSync('lamp')
  2933. var radio1 = that.data.radio1
  2934. var radio2 = that.data.radio2
  2935. var radio3 = that.data.radio3
  2936. var jude
  2937. if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png' && radio1 == true) {
  2938. jude = 0
  2939. } else if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png' && radio2 == true) {
  2940. jude = 4
  2941. } else if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp.png' && radio3 == true) {
  2942. jude = 8
  2943. } else if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png' && radio1 == true) {
  2944. jude = 1
  2945. } else if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png' && radio2 == true) {
  2946. jude = 5
  2947. } else if (lamp[indexes] == 'https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/lamp1.png' && radio3 == true) {
  2948. jude = 9
  2949. }
  2950. //功能一
  2951. var Storagetimeopen1
  2952. var Storagetimeshut1
  2953. var Storagetimeopenstate1
  2954. var Storagetimeshutstate1
  2955. var Storageopticalopen
  2956. var Storageopticalshut
  2957. //时控一开
  2958. switch (that.data.state[0]) {
  2959. case true:
  2960. Storagetimeopen1 = "1"
  2961. break;
  2962. case false:
  2963. Storagetimeopen1 = "0"
  2964. break;
  2965. }
  2966. //时控一关
  2967. switch (that.data.state[1]) {
  2968. case true:
  2969. Storagetimeshut1 = "1"
  2970. break;
  2971. case false:
  2972. Storagetimeshut1 = "0"
  2973. break;
  2974. }
  2975. //时控一开经纬
  2976. switch (that.data.fixed1) {
  2977. case "经纬":
  2978. Storagetimeopenstate1 = "1"
  2979. break;
  2980. case "固定":
  2981. Storagetimeopenstate1 = "0"
  2982. break;
  2983. }
  2984. //时控一关经纬
  2985. switch (that.data.fixed2) {
  2986. case "经纬":
  2987. Storagetimeshutstate1 = "1"
  2988. break;
  2989. case "固定":
  2990. Storagetimeshutstate1 = "0"
  2991. break;
  2992. }
  2993. //光控开
  2994. switch (that.data.state[2]) {
  2995. case true:
  2996. Storageopticalopen = "1"
  2997. break;
  2998. case false:
  2999. Storageopticalopen = "0"
  3000. break;
  3001. }
  3002. //光控关
  3003. switch (that.data.state[3]) {
  3004. case true:
  3005. Storageopticalshut = "1"
  3006. break;
  3007. case false:
  3008. Storageopticalshut = "0"
  3009. break;
  3010. }
  3011. var use1 = Storageopticalshut + Storageopticalopen + Storagetimeshutstate1 + Storagetimeopenstate1 + Storagetimeshut1 + Storagetimeopen1
  3012. use1 = parseInt(use1, 2)
  3013. use1 = use1 //传给后台的功能一数据
  3014. //功能二
  3015. var Storagetimeopen2
  3016. var Storagetimeshut2
  3017. var Storagetimeopenstate2
  3018. var Storagetimeshutstate2
  3019. //时控二开
  3020. switch (that.data.state1[0]) {
  3021. case true:
  3022. Storagetimeopen2 = "1"
  3023. break;
  3024. case false:
  3025. Storagetimeopen2 = "0"
  3026. break;
  3027. }
  3028. //时控二关
  3029. switch (that.data.state1[1]) {
  3030. case true:
  3031. Storagetimeshut2 = "1"
  3032. break;
  3033. case false:
  3034. Storagetimeshut2 = "0"
  3035. break;
  3036. }
  3037. //时控二开经纬
  3038. switch (that.data.fixed3) {
  3039. case "经纬":
  3040. Storagetimeopenstate2 = "1"
  3041. break;
  3042. case "固定":
  3043. Storagetimeopenstate2 = "0"
  3044. break;
  3045. }
  3046. //时控二关经纬
  3047. switch (that.data.fixed4) {
  3048. case "经纬":
  3049. Storagetimeshutstate2 = "1"
  3050. break;
  3051. case "固定":
  3052. Storagetimeshutstate2 = "0"
  3053. break;
  3054. }
  3055. var use2 = Storagetimeshutstate2 + Storagetimeopenstate2 + Storagetimeshut2 + Storagetimeopen2
  3056. use2 = parseInt(use2, 2)
  3057. use2 = use2 //传给后台的功能二数据
  3058. //时控一开时间
  3059. var Ontime1 = that.data.time[0]
  3060. var ontime1 //传给后台的时控一开时间
  3061. if (Ontime1.substring(0, 2) == '00' && Ontime1.substring(3, 5) == '00') {
  3062. ontime1 = '0'
  3063. } else if (Ontime1.substring(0, 1) != '0') {
  3064. ontime1 = Ontime1.substring(0, 2) + Ontime1.substring(3, 5)
  3065. } else if (Ontime1.substring(0, 1) == '0' && Ontime1.substring(1, 2) != '0') {
  3066. ontime1 = Ontime1.substring(1, 2) + Ontime1.substring(3, 5)
  3067. } else if (Ontime1.substring(0, 2) == '00' && Ontime1.substring(3, 4) != '0') {
  3068. ontime1 = Ontime1.substring(3, 5)
  3069. } else {
  3070. ontime1 = Ontime1.substring(4, 5)
  3071. }
  3072. ontime1 = parseInt(ontime1)
  3073. //时控一关时间
  3074. var Closingtime1 = that.data.time[1]
  3075. var closingtime1 //传给后台的时控一关时间
  3076. if (Closingtime1.substring(0, 2) == '00' && Closingtime1.substring(3, 5) == '00') {
  3077. closingtime1 = '0'
  3078. } else if (Closingtime1.substring(0, 1) != '0') {
  3079. closingtime1 = Closingtime1.substring(0, 2) + Closingtime1.substring(3, 5)
  3080. } else if (Closingtime1.substring(0, 1) == '0' && Closingtime1.substring(1, 2) != '0') {
  3081. closingtime1 = Closingtime1.substring(1, 2) + Closingtime1.substring(3, 5)
  3082. } else if (Closingtime1.substring(0, 2) == '00' && Closingtime1.substring(3, 4) != '0') {
  3083. closingtime1 = Closingtime1.substring(3, 5)
  3084. } else {
  3085. closingtime1 = Closingtime1.substring(4, 5)
  3086. }
  3087. closingtime1 = parseInt(closingtime1)
  3088. //时控二开时间
  3089. var Ontime2 = that.data.time[2]
  3090. var ontime2 //传给后台的时控二开时间
  3091. if (Ontime2.substring(0, 2) == '00' && Ontime2.substring(3, 5) == '00') {
  3092. ontime2 = '0'
  3093. } else if (Ontime2.substring(0, 1) != '0') {
  3094. ontime2 = Ontime2.substring(0, 2) + Ontime2.substring(3, 5)
  3095. } else if (Ontime2.substring(0, 1) == '0' && Ontime2.substring(1, 2) != '0') {
  3096. ontime2 = Ontime2.substring(1, 2) + Ontime2.substring(3, 5)
  3097. } else if (Ontime2.substring(0, 2) == '00' && Ontime2.substring(3, 4) != '0') {
  3098. ontime2 = Ontime2.substring(3, 5)
  3099. } else {
  3100. ontime2 = Ontime2.substring(4, 5)
  3101. }
  3102. ontime2 = parseInt(ontime2)
  3103. //时控二关时间
  3104. var Closingtime2 = that.data.time[3]
  3105. var closingtime2 //传给后台的时控二关时间
  3106. if (Closingtime2.substring(0, 2) == '00' && Closingtime2.substring(3, 5) == '00') {
  3107. closingtime2 = '0'
  3108. } else if (Closingtime2.substring(0, 1) != '0') {
  3109. closingtime2 = Closingtime2.substring(0, 2) + Closingtime2.substring(3, 5)
  3110. } else if (Closingtime2.substring(0, 1) == '0' && Closingtime2.substring(1, 2) != '0') {
  3111. closingtime2 = Closingtime2.substring(1, 2) + Closingtime2.substring(3, 5)
  3112. } else if (Closingtime2.substring(0, 2) == '00' && Closingtime2.substring(3, 4) != '0') {
  3113. closingtime2 = Closingtime2.substring(3, 5)
  3114. } else {
  3115. closingtime2 = Closingtime2.substring(4, 5)
  3116. }
  3117. closingtime2 = parseInt(closingtime2)
  3118. //光控开
  3119. var Lightcontrolon = that.data.arr[that.data.index]
  3120. Lightcontrolon = Lightcontrolon
  3121. //光控关
  3122. var Lightcontroloff = that.data.brr[that.data.indexs]
  3123. Lightcontroloff = Lightcontroloff
  3124. //星期
  3125. var myweek = ""
  3126. var address = that.data.address
  3127. for (let w = 0; w < address.length; w++) {
  3128. switch (address[w]) {
  3129. case "/image/false.png":
  3130. myweek += '0'
  3131. break;
  3132. default:
  3133. myweek += '1'
  3134. break;
  3135. }
  3136. }
  3137. if (myweek == "0000000") {
  3138. myweek = 0
  3139. } else {
  3140. myweek = "1" + myweek.split("").reverse().join("")
  3141. myweek = parseInt(myweek, 2)
  3142. myweek = myweek
  3143. }
  3144. //发起post请求
  3145. getBasic(that.data.deviceId,that.data.deviceKey).then(res =>{
  3146. if(res.data.errno == 0){
  3147. if(res.data.data.online == true){
  3148. that.setData({status:'在线'})
  3149. }
  3150. else{
  3151. that.setData({status:'离线'})
  3152. }
  3153. }
  3154. else{
  3155. wx.showModal({
  3156. title: '错误',
  3157. content: res.data.error,
  3158. showCancel:false
  3159. })
  3160. }
  3161. })
  3162. if (that.data.status == "在线") {
  3163. var indexes = that.data.indexes
  3164. indexes = parseInt(indexes)
  3165. var crr = that.data.crr
  3166. if (crr[indexes] != '所有回路') {
  3167. var reflash = [11, 12, 13, 14, 15, 16, 17, 18]
  3168. var i = indexes + 1
  3169. var week = "R" + i + "_Week"
  3170. var FunctionStatus1 = 'R' + i + '_FunctionStatus1'
  3171. var FunctionStatus2 = 'R' + i + '_FunctionStatus2'
  3172. var DayOpenTime1 = 'R' + i + '_DayOpenTime1'
  3173. var DayCloseTime1 = 'R' + i + '_DayCloseTime1'
  3174. var DayOpenTime2 = 'R' + i + '_DayOpenTime2'
  3175. var DayCloseTime2 = 'R' + i + '_DayCloseTime2'
  3176. var LcOn = 'R' + i + '_LcOn'
  3177. var LcOff = 'R' + i + '_LcOff'
  3178. var RelayStatus = 'R' + i + '_RelayStatus'
  3179. var object = {
  3180. "Reflash": reflash[indexes],
  3181. [week]: myweek,
  3182. [FunctionStatus1]: use1,
  3183. [FunctionStatus2]: use2,
  3184. [DayOpenTime1]: ontime1,
  3185. [DayCloseTime1]: closingtime1,
  3186. [DayOpenTime2]: ontime2,
  3187. [DayCloseTime2]: closingtime2,
  3188. [LcOn]: Lightcontrolon,
  3189. [LcOff]: Lightcontroloff,
  3190. [RelayStatus]: jude,
  3191. }
  3192. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object)).then(res => {
  3193. if(res.data.errno != 0){
  3194. wx.showModal({
  3195. title: '错误',
  3196. content: res.data.error,
  3197. showCancel:false
  3198. })
  3199. }
  3200. })
  3201. } else {
  3202. var object1 = {
  3203. "Reflash": 11,
  3204. "R1_Week": myweek, //星期
  3205. "R1_FunctionStatus1": use1, //功能1
  3206. "R1_FunctionStatus2": use2, //功能2
  3207. "R1_DayOpenTime1": ontime1, //时控1开
  3208. "R1_DayCloseTime1": closingtime1, //时控1关
  3209. "R1_DayOpenTime2": ontime2, //时控2开
  3210. "R1_DayCloseTime2": closingtime2, //时控2关
  3211. "R1_LcOn": Lightcontrolon, //光控开
  3212. "R1_LcOff": Lightcontroloff, //光控关
  3213. "R1_RelayStatus": jude, //开关状态
  3214. }
  3215. var object2 = {
  3216. "Reflash": 12,
  3217. "R2_FunctionStatus1": use1, //功能1
  3218. "R2_FunctionStatus2": use2, //功能2
  3219. "R2_DayOpenTime1": ontime1, //时控1开
  3220. "R2_DayCloseTime1": closingtime1, //时控1关
  3221. "R2_DayOpenTime2": ontime2, //时控2开
  3222. "R2_DayCloseTime2": closingtime2, //时控2关
  3223. "R2_Week": myweek, //星期
  3224. "R2_LcOn": Lightcontrolon, //光控开
  3225. "R2_LcOff": Lightcontroloff, //光控关
  3226. "R2_RelayStatus": jude, //开关状态
  3227. }
  3228. var object3 = {
  3229. "Reflash": 13,
  3230. "R3_FunctionStatus1": use1, //功能1
  3231. "R3_FunctionStatus2": use2, //功能2
  3232. "R3_DayOpenTime1": ontime1, //时控1开
  3233. "R3_DayCloseTime1": closingtime1, //时控1关
  3234. "R3_DayOpenTime2": ontime2, //时控2开
  3235. "R3_DayCloseTime2": closingtime2, //时控2关
  3236. "R3_Week": myweek, //星期
  3237. "R3_LcOn": Lightcontrolon, //光控开
  3238. "R3_LcOff": Lightcontroloff, //光控关
  3239. "R3_RelayStatus": jude, //开关状态
  3240. }
  3241. var object4 = {
  3242. "Reflash": 14,
  3243. "R4_FunctionStatus1": use1, //功能1
  3244. "R4_FunctionStatus2": use2, //功能2
  3245. "R4_DayOpenTime1": ontime1, //时控1开
  3246. "R4_DayCloseTime1": closingtime1, //时控1关
  3247. "R4_DayOpenTime2": ontime2, //时控2开
  3248. "R4_DayCloseTime2": closingtime2, //时控2关
  3249. "R4_Week": myweek, //星期
  3250. "R4_LcOn": Lightcontrolon, //光控开
  3251. "R4_LcOff": Lightcontroloff, //光控关
  3252. "R4_RelayStatus": jude, //开关状态
  3253. }
  3254. var object5 = {
  3255. "Reflash": 15,
  3256. "R5_FunctionStatus1": use1, //功能1
  3257. "R5_FunctionStatus2": use2, //功能2
  3258. "R5_DayOpenTime1": ontime1, //时控1开
  3259. "R5_DayCloseTime1": closingtime1, //时控1关
  3260. "R5_DayOpenTime2": ontime2, //时控2开
  3261. "R5_DayCloseTime2": closingtime2, //时控2关
  3262. "R5_Week": myweek, //星期
  3263. "R5_LcOn": Lightcontrolon, //光控开
  3264. "R5_LcOff": Lightcontroloff, //光控关
  3265. "R5_RelayStatus": jude, //开关状态
  3266. }
  3267. var object6 = {
  3268. "Reflash": 16,
  3269. "R6_FunctionStatus1": use1, //功能1
  3270. "R6_FunctionStatus2": use2, //功能2
  3271. "R6_DayOpenTime1": ontime1, //时控1开
  3272. "R6_DayCloseTime1": closingtime1, //时控1关
  3273. "R6_DayOpenTime2": ontime2, //时控2开
  3274. "R6_DayCloseTime2": closingtime2, //时控2关
  3275. "R6_Week": myweek, //星期
  3276. "R6_LcOn": Lightcontrolon, //光控开
  3277. "R6_LcOff": Lightcontroloff, //光控关
  3278. "R6_RelayStatus": jude, //开关状态
  3279. }
  3280. var object7 = {
  3281. "Reflash": 17,
  3282. "R7_FunctionStatus1": use1, //功能1
  3283. "R7_FunctionStatus2": use2, //功能2
  3284. "R7_DayOpenTime1": ontime1, //时控1开
  3285. "R7_DayCloseTime1": closingtime1, //时控1关
  3286. "R7_DayOpenTime2": ontime2, //时控2开
  3287. "R7_DayCloseTime2": closingtime2, //时控2关
  3288. "R7_Week": myweek, //星期
  3289. "R7_LcOn": Lightcontrolon, //光控开
  3290. "R7_LcOff": Lightcontroloff, //光控关
  3291. "R7_RelayStatus": jude, //开关状态
  3292. }
  3293. var object8 = {
  3294. "Reflash": 18,
  3295. "R8_FunctionStatus1": use1, //功能1
  3296. "R8_FunctionStatus2": use2, //功能2
  3297. "R8_DayOpenTime1": ontime1, //时控1开
  3298. "R8_DayCloseTime1": closingtime1, //时控1关
  3299. "R8_DayOpenTime2": ontime2, //时控2开
  3300. "R8_DayCloseTime2": closingtime2, //时控2关
  3301. "R8_Week": myweek, //星期
  3302. "R8_LcOn": Lightcontrolon, //光控开
  3303. "R8_LcOff": Lightcontroloff, //光控关
  3304. "R8_RelayStatus": jude, //开关状态
  3305. }
  3306. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object1)).then(res => {
  3307. if(res.data.errno != 0){
  3308. wx.showModal({
  3309. title: '错误',
  3310. content: res.data.error,
  3311. showCancel:false
  3312. })
  3313. }
  3314. })
  3315. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object2)).then(res => {
  3316. if(res.data.errno != 0){
  3317. wx.showModal({
  3318. title: '错误',
  3319. content: res.data.error,
  3320. showCancel:false
  3321. })
  3322. }
  3323. })
  3324. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object3)).then(res => {
  3325. if(res.data.errno != 0){
  3326. wx.showModal({
  3327. title: '错误',
  3328. content: res.data.error,
  3329. showCancel:false
  3330. })
  3331. }
  3332. })
  3333. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object4)).then(res => {
  3334. if(res.data.errno != 0){
  3335. wx.showModal({
  3336. title: '错误',
  3337. content: res.data.error,
  3338. showCancel:false
  3339. })
  3340. }
  3341. })
  3342. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object5)).then(res => {
  3343. if(res.data.errno != 0){
  3344. wx.showModal({
  3345. title: '错误',
  3346. content: res.data.error,
  3347. showCancel:false
  3348. })
  3349. }
  3350. })
  3351. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object6)).then(res => {
  3352. if(res.data.errno != 0){
  3353. wx.showModal({
  3354. title: '错误',
  3355. content: res.data.error,
  3356. showCancel:false
  3357. })
  3358. }
  3359. })
  3360. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object7)).then(res => {
  3361. if(res.data.errno != 0){
  3362. wx.showModal({
  3363. title: '错误',
  3364. content: res.data.error,
  3365. showCancel:false
  3366. })
  3367. }
  3368. })
  3369. postData(that.data.deviceId, that.data.deviceKey, JSON.stringify(object8)).then(res => {
  3370. if(res.data.errno != 0){
  3371. wx.showModal({
  3372. title: '错误',
  3373. content: res.data.error,
  3374. showCancel:false
  3375. })
  3376. }
  3377. })
  3378. }
  3379. } else {
  3380. setTimeout(function () {
  3381. wx.showModal({
  3382. title: '提示',
  3383. content: '存储数据失败,请检查设备是否在线或者刷新页面',
  3384. showCancel: false,
  3385. })
  3386. }, 3000)
  3387. }
  3388. }
  3389. //新设备
  3390. else {
  3391. getDevice(that.data.equipment,that.data.subset).then(nrg => {
  3392. if (nrg.data.code == 0) {
  3393. var nrg = nrg.data.data
  3394. if (nrg.status == 1) {
  3395. that.setData({
  3396. status: '在线'
  3397. })
  3398. } else {
  3399. that.setData({
  3400. status: '离线'
  3401. })
  3402. }
  3403. }
  3404. else{
  3405. wx.showModal({
  3406. title: '错误',
  3407. content: res.data.msg,
  3408. showCancel:false
  3409. })
  3410. }
  3411. })
  3412. if (that.data.status == "在线") {
  3413. var timeValues = that.data.timeValue //时间
  3414. var crrs = that.data.crr //回路名称集合
  3415. var Crrindex = that.data.indexes //回路下标
  3416. Crrindex = Crrindex + 1
  3417. var ID = that.data.equipment
  3418. ID = parseInt(ID)
  3419. var newSwitch = that.data.newSwitch //设备开关
  3420. for (let x = 0; x < newSwitch.length; x++) {
  3421. if (newSwitch[x] == true) {
  3422. newSwitch[x] = 1
  3423. } else {
  3424. newSwitch[x] = 0
  3425. }
  3426. }
  3427. //开启条件(天气)
  3428. var choice = that.data.choice
  3429. var Choice = ''
  3430. for(let q = 0;q< choice.length;q++){
  3431. if(choice[q] == true){
  3432. Choice += ((q + 1) + ',')
  3433. }
  3434. }
  3435. if (Choice.length > 0) {
  3436. Choice = Choice.slice(0, Choice.length - 1)
  3437. }
  3438. var postobject = {
  3439. "deviceId": ID,
  3440. "relays": [{
  3441. "relayId": Crrindex,
  3442. "name": crrs[Crrindex - 1],
  3443. "timeCondition1Switch": newSwitch[0],
  3444. "timeCondition1OnTime": timeValues[0],
  3445. "timeCondition1OffTime": timeValues[1],
  3446. "timeCondition2Switch": newSwitch[1],
  3447. "timeCondition2OnTime": timeValues[2],
  3448. "timeCondition2OffTime": timeValues[3],
  3449. "lightControlSwitch": newSwitch[2],
  3450. "lightControlStart": timeValues[4],
  3451. "lightControlEnd": timeValues[5],
  3452. "lightControlCondition": Choice,
  3453. "status": null
  3454. }]
  3455. }
  3456. postloop(postobject).then(upload => {
  3457. if (upload.data.code != 0) {
  3458. wx.showModal({
  3459. title: '错误',
  3460. content: upload.data.msg,
  3461. showCancel: false
  3462. })
  3463. }
  3464. })
  3465. } else {
  3466. wx.showModal({
  3467. title: '提示',
  3468. content: '存储数据失败,请检查设备是否在线或者刷新页面',
  3469. showCancel: false,
  3470. })
  3471. }
  3472. }
  3473. },
  3474. //开启条件按钮
  3475. Opening: function () {
  3476. var disabled = this.data.disabled
  3477. if (disabled == true) {
  3478. this.setData({
  3479. popup: false
  3480. })
  3481. } else {
  3482. this.setData({
  3483. popup: true
  3484. })
  3485. }
  3486. },
  3487. //对话框确定回调
  3488. complete: function () {
  3489. this.setData({
  3490. popup: false
  3491. })
  3492. },
  3493. /**
  3494. * 生命周期函数--监听页面加载
  3495. */
  3496. onLoad(options) {},
  3497. /**
  3498. * 生命周期函数--监听页面初次渲染完成
  3499. */
  3500. onReady() {
  3501. },
  3502. /**
  3503. * 生命周期函数--监听页面显示
  3504. */
  3505. onShow() {
  3506. wx.showToast({
  3507. title: '获取数据中',
  3508. icon: 'loading',
  3509. duration: 2000
  3510. })
  3511. var that = this
  3512. //获取机型改变switch大小
  3513. wx.getSystemInfo({
  3514. success: function (res) {
  3515. if (res.model == 'iPad' || res.model == 'iPad Pro 10.5-inch' || res.model == 'iPad Pro 12.9-inch') {
  3516. that.setData({
  3517. zoom: 1
  3518. })
  3519. }
  3520. }
  3521. })
  3522. var group = wx.getStorageSync('group')
  3523. if (group != null && group.length != 0) {
  3524. //分组下拉
  3525. var group = wx.getStorageSync('group')
  3526. var groups = []
  3527. for (let i = 0; i < group.length; i++) {
  3528. groups.push(group[i].groupName)
  3529. }
  3530. that.setData({
  3531. groupName: groups
  3532. })
  3533. //改变分组下标
  3534. if (wx.getStorageSync('groupName') != '') {
  3535. let GroupName = groups
  3536. for (let n = 0; n < GroupName.length; n++) {
  3537. if (GroupName[n] == wx.getStorageSync('groupName')) {
  3538. that.setData({
  3539. groupIndex: n
  3540. })
  3541. }
  3542. }
  3543. } else {
  3544. that.setData({groupIndex:0})
  3545. wx.setStorageSync('groupName', that.data.groupName[that.data.groupIndex])
  3546. }
  3547. //设备下拉
  3548. var device = []
  3549. var groupName = that.data.groupName
  3550. var groupIndex = that.data.groupIndex
  3551. for (let j = 0; j < group.length; j++) {
  3552. if (groupName[groupIndex] == group[j].groupName) {
  3553. if (group[j].devices != null && group[j].devices.length != 0) {
  3554. for (let p = 0; p < group[j].devices.length; p++) {
  3555. device.push(group[j].devices[p].deviceName)
  3556. }
  3557. that.setData({
  3558. deviceName: device
  3559. })
  3560. //改变设备下标
  3561. if (wx.getStorageSync('deviceName') != '') {
  3562. for (let m = 0; m < device.length; m++) {
  3563. if (device[m] == wx.getStorageSync('deviceName')) {
  3564. that.setData({
  3565. deviceIndex: m
  3566. })
  3567. }
  3568. }
  3569. } else {
  3570. that.setData({deviceIndex:0})
  3571. wx.setStorageSync('deviceName', that.data.deviceName[that.data.deviceIndex])
  3572. }
  3573. //获取设备信息
  3574. var currentGroup = that.data.groupName[that.data.groupIndex]
  3575. var currentDevice = that.data.deviceName[that.data.deviceIndex]
  3576. var message = enloop.deviceMessage(currentGroup, currentDevice)
  3577. that.setData({
  3578. equipment: message.Device,
  3579. subset: message.id,
  3580. ID: message.ID,
  3581. indexes: 0 //将回路重新调回回路1
  3582. }) //记录当前的设备id和分组id
  3583. //旧设备
  3584. if (message.modules == 0) {
  3585. that.setData({
  3586. play: 0,
  3587. deviceKey: message.deviceKey,
  3588. deviceId: message.deviceId
  3589. })
  3590. getBasic(message.deviceId, message.deviceKey).then(res => {
  3591. if(res.data.errno == 0){
  3592. if (res.data.data.online == true) {
  3593. that.setData({
  3594. status: '在线'
  3595. })
  3596. } else {
  3597. that.setData({
  3598. status: '离线'
  3599. })
  3600. }
  3601. getData(message.deviceId, message.deviceKey).then(ever => {
  3602. if(ever.data.errno == 0){
  3603. let {
  3604. data
  3605. } = ever.data
  3606. //判断设备是否处于初始化状态
  3607. var initialization = true
  3608. for (let t = 0; t < data.length; t++) {
  3609. if ('current_value' in data[t] == false) {
  3610. initialization = false
  3611. }
  3612. }
  3613. if (initialization == true) {
  3614. let loopnum = message.loopnum
  3615. var Summary = enloop.deviceinfo(data, loopnum, that.data.arr, that.data.brr, that.data.time, that.data.state,
  3616. that.data.state1, that.data.fixed1, that.data.fixed2, that.data.fixed3,
  3617. that.data.fixed4, that.data.address, that.data.radio1, that.data.radio2,
  3618. that.data.radio3, that.data.index, that.data.indexs)
  3619. that.setData({
  3620. crr: Summary.crr,
  3621. arr: Summary.arr,
  3622. brr: Summary.brr,
  3623. fixed1: Summary.fixed1,
  3624. fixed2: Summary.fixed2,
  3625. fixed3: Summary.fixed3,
  3626. fixed4: Summary.fixed4,
  3627. index: Summary.index,
  3628. indexs: Summary.indexs,
  3629. radio1: Summary.radio1,
  3630. radio2: Summary.radio2,
  3631. radio3: Summary.radio3,
  3632. recorddate: Summary.recorddate,
  3633. state: Summary.state,
  3634. state1: Summary.state1,
  3635. time: Summary.time,
  3636. address: Summary.address,
  3637. play: 0
  3638. })
  3639. //监视开关状态(改变颜色,调整功能)
  3640. switch (that.data.state[0]) {
  3641. case true:
  3642. that.setData({
  3643. type1: "time",
  3644. timecontrolcolor1: "blue",
  3645. fontcolor1: "white",
  3646. })
  3647. break;
  3648. default:
  3649. that.setData({
  3650. type1: "",
  3651. timecontrolcolor1: "#888888",
  3652. fontcolor1: "#cccccc",
  3653. })
  3654. break;
  3655. }
  3656. switch (that.data.state[1]) {
  3657. case true:
  3658. that.setData({
  3659. type2: "time",
  3660. timecontrolcolor2: "blue",
  3661. fontcolor2: "white",
  3662. })
  3663. break;
  3664. default:
  3665. that.setData({
  3666. type2: "",
  3667. timecontrolcolor2: "#888888",
  3668. fontcolor2: "#cccccc",
  3669. })
  3670. break;
  3671. }
  3672. switch (that.data.state1[0]) {
  3673. case true:
  3674. that.setData({
  3675. type3: "time",
  3676. timecontrolcolor3: "blue",
  3677. fontcolor3: "white",
  3678. })
  3679. break;
  3680. default:
  3681. that.setData({
  3682. type3: "",
  3683. timecontrolcolor3: "#888888",
  3684. fontcolor3: "#cccccc",
  3685. })
  3686. break;
  3687. }
  3688. switch (that.data.state1[1]) {
  3689. case true:
  3690. that.setData({
  3691. type4: "time",
  3692. timecontrolcolor4: "blue",
  3693. fontcolor4: "white",
  3694. })
  3695. break;
  3696. default:
  3697. that.setData({
  3698. type4: "",
  3699. timecontrolcolor4: "#888888",
  3700. fontcolor4: "#cccccc",
  3701. })
  3702. break;
  3703. }
  3704. switch (that.data.state[2]) {
  3705. case true:
  3706. that.setData({
  3707. Lightcontrolcolor1: "blue",
  3708. fontcolor5: "white",
  3709. select1: "selector"
  3710. })
  3711. break;
  3712. default:
  3713. that.setData({
  3714. Lightcontrolcolor1: "#888888",
  3715. fontcolor5: "#cccccc",
  3716. select1: ""
  3717. })
  3718. break;
  3719. }
  3720. switch (that.data.state[3]) {
  3721. case true:
  3722. that.setData({
  3723. Lightcontrolcolor2: "blue",
  3724. fontcolor6: "white",
  3725. select2: "selector"
  3726. })
  3727. break;
  3728. default:
  3729. that.setData({
  3730. Lightcontrolcolor2: "#888888",
  3731. fontcolor6: "#cccccc",
  3732. select2: ""
  3733. })
  3734. break;
  3735. }
  3736. } else {
  3737. getDevice(message.Device, message.id).then(rgb => {
  3738. if (rgb.data.code == 0) {
  3739. var rgbs = rgb.data.data.circuits
  3740. rgbs = rgbs.split(',')
  3741. that.setData({
  3742. crr: rgbs
  3743. })
  3744. } else {
  3745. wx.showModal({
  3746. title: '错误',
  3747. content: rgb.data.msg,
  3748. showCancel: false
  3749. })
  3750. }
  3751. })
  3752. }
  3753. }
  3754. else{
  3755. wx.showModal({
  3756. title: '错误',
  3757. content: ever.data.error,
  3758. showCancel:false
  3759. })
  3760. }
  3761. })
  3762. }
  3763. else{
  3764. wx.showModal({
  3765. title: '错误',
  3766. content: res.data.error,
  3767. showCancel:false
  3768. })
  3769. }
  3770. })
  3771. }
  3772. //新设备
  3773. else {
  3774. that.setData({
  3775. play: 1
  3776. })
  3777. //新设备在线状态
  3778. getDevice(message.Device, message.id).then(nrg => {
  3779. if (nrg.data.code == 0) {
  3780. var nrg = nrg.data.data
  3781. if (nrg.status == 1) {
  3782. that.setData({
  3783. status: '在线'
  3784. })
  3785. } else {
  3786. that.setData({
  3787. status: '离线'
  3788. })
  3789. }
  3790. getloop(message.Device).then(suc => {
  3791. if (suc.data.code == 0) {
  3792. var suc = suc.data.data
  3793. var index = that.data.indexes
  3794. for (let i = 0; i < suc.length; i++) {
  3795. if (index == i) {
  3796. let Suc = suc[i]
  3797. var newSwitch = that.data.newSwitch
  3798. var timeValue = that.data.timeValue
  3799. var newSwitchstate = that.data.newSwitchstate
  3800. var choice = that.data.choice
  3801. var lightCondition = Suc.lightControlCondition
  3802. //光控启动条件
  3803. looplightlist().then(res => {
  3804. if (res.data.code == 0) {
  3805. var lightlist = res.data.data
  3806. that.setData({
  3807. lightlist: lightlist
  3808. })
  3809. for (let i = 0; i < lightlist.length; i++) {
  3810. choice[i] = false
  3811. }
  3812. if (lightCondition.includes(',') == true) {
  3813. lightCondition = lightCondition.split(',')
  3814. for (let j = 0; j < lightCondition.length; j++) {
  3815. if (lightCondition[j] == '1') {
  3816. choice[0] = true
  3817. } else if (lightCondition[j] == '2') {
  3818. choice[1] = true
  3819. } else if (lightCondition[j] == '3') {
  3820. choice[2] = true
  3821. } else if (lightCondition[j] == '4') {
  3822. choice[3] = true
  3823. }
  3824. }
  3825. } else {
  3826. if (lightCondition == '1') {
  3827. choice[0] = true
  3828. } else if (lightCondition == '2') {
  3829. choice[1] = true
  3830. } else if (lightCondition == '3') {
  3831. choice[2] = true
  3832. } else if (lightCondition == '4') {
  3833. choice[3] = true
  3834. }
  3835. }
  3836. that.setData({
  3837. choice: choice
  3838. })
  3839. } else {
  3840. wx.showModal({
  3841. title: '错误',
  3842. content: res.data.msg,
  3843. showCancel: false
  3844. })
  3845. }
  3846. })
  3847. //时控1
  3848. if (Suc.timeCondition1Switch == 1) {
  3849. newSwitch[0] = true
  3850. newSwitchstate[0] = 'time'
  3851. } else {
  3852. newSwitch[0] = false
  3853. newSwitchstate[0] = ''
  3854. }
  3855. timeValue[0] = Suc.timeCondition1OnTime
  3856. timeValue[1] = Suc.timeCondition1OffTime
  3857. //时控2
  3858. if (Suc.timeCondition2Switch == 1) {
  3859. newSwitch[1] = true
  3860. newSwitchstate[1] = 'time'
  3861. } else {
  3862. newSwitch[1] = false
  3863. newSwitchstate[1] = ''
  3864. }
  3865. timeValue[2] = Suc.timeCondition2OnTime
  3866. timeValue[3] = Suc.timeCondition2OffTime
  3867. //光控
  3868. if (Suc.lightControlSwitch == 1) {
  3869. newSwitch[2] = true
  3870. newSwitchstate[2] = 'time'
  3871. newSwitchstate[3] = 'selector'
  3872. } else {
  3873. newSwitch[2] = false
  3874. newSwitchstate[2] = ''
  3875. newSwitchstate[3] = ''
  3876. }
  3877. timeValue[4] = Suc.lightControlStart
  3878. timeValue[5] = Suc.lightControlEnd
  3879. for (let j = 0; j < timeValue.length; j++) {
  3880. if (timeValue[j] == "") {
  3881. timeValue[j] = '00:00'
  3882. }
  3883. }
  3884. that.setData({
  3885. crr: message.loopnum,
  3886. timeValue: timeValue,
  3887. newSwitch: newSwitch
  3888. })
  3889. //监视新设备开关状态
  3890. var newSwitchs = that.data.newSwitch
  3891. var newfonts = that.data.newfont
  3892. var newcolors = that.data.newcolor
  3893. var newSwitchstates = that.data.newSwitchstate
  3894. var disableds = that.data.disabled
  3895. if (newSwitchs[0] == true) {
  3896. newfonts[0] = "white"
  3897. newcolors[0] = "blue"
  3898. newSwitchstates[0] = "time"
  3899. } else {
  3900. newfonts[0] = "#cccccc"
  3901. newcolors[0] = "#888888"
  3902. newSwitchstates[0] = ""
  3903. }
  3904. if (newSwitchs[1] == true) {
  3905. newfonts[1] = "white"
  3906. newcolors[1] = "blue"
  3907. newSwitchstates[1] = "time"
  3908. } else {
  3909. newfonts[1] = "#cccccc"
  3910. newcolors[1] = "#888888"
  3911. newSwitchstates[1] = ""
  3912. }
  3913. if (newSwitchs[2] == true) {
  3914. newfonts[2] = "white"
  3915. newcolors[2] = "blue"
  3916. newSwitchstates[2] = "time"
  3917. disableds = false
  3918. } else {
  3919. newfonts[2] = "#cccccc"
  3920. newcolors[2] = "#888888"
  3921. newSwitchstates[2] = ""
  3922. disableds = true
  3923. }
  3924. that.setData({
  3925. newcolor: newcolors,
  3926. newfont: newfonts,
  3927. newSwitch: newSwitchs,
  3928. newSwitchstate: newSwitchstates,
  3929. disabled: disableds
  3930. })
  3931. }
  3932. }
  3933. } else {
  3934. console.log('获取新设备回路参数失败')
  3935. wx.showModal({
  3936. title: '错误',
  3937. content: suc.data.msg,
  3938. showCancel: false
  3939. })
  3940. }
  3941. })
  3942. } else {
  3943. console.log('新设备获取信息失败')
  3944. wx.showModal({
  3945. title: '错误',
  3946. content: nrg.data.msg,
  3947. showCancel: false
  3948. })
  3949. }
  3950. })
  3951. }
  3952. } else {
  3953. that.setData({
  3954. status: '离线',
  3955. deviceName: []
  3956. })
  3957. }
  3958. }
  3959. }
  3960. } else {
  3961. that.setData({
  3962. status:'离线',
  3963. deviceName: [],
  3964. groupName: []
  3965. })
  3966. }
  3967. },
  3968. /**
  3969. * 生命周期函数--监听页面隐藏
  3970. */
  3971. onHide() {
  3972. },
  3973. /**
  3974. * 生命周期函数--监听页面卸载
  3975. */
  3976. onUnload() {
  3977. },
  3978. /**
  3979. * 页面相关事件处理函数--监听用户下拉动作
  3980. */
  3981. onPullDownRefresh() {
  3982. },
  3983. /**
  3984. * 页面上拉触底事件的处理函数
  3985. */
  3986. onReachBottom() {
  3987. },
  3988. /**
  3989. * 用户点击右上角分享
  3990. */
  3991. onShareAppMessage() {
  3992. }
  3993. })