loop.js 101 KB

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