scene.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  1. const {postGroup,getGroup,putGroup,delGroup} = require('../../api/group')
  2. const {postDevice,getDevice,putDevice,delDevice} = require('../../api/device')
  3. const {getBasic,getData,postData} = require('../../api/intell')
  4. // pages/scene/scene.js
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. remove:true,//删除工程
  11. Modify:true,//修改工程名称
  12. array:[],//分组
  13. brray:[],
  14. keyid:[],
  15. inputVal:[],
  16. getName:[],//发送往服务器的工程名称参数
  17. subscript:0,
  18. Id:[],
  19. key:[],
  20. developline:[],
  21. status:0,
  22. Status:"",
  23. phone:'',
  24. displaypicture:"https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/ling.png",
  25. display:[]
  26. },
  27. //刷新列表
  28. Refreshlist:function(){
  29. wx.showToast({
  30. title:'刷新中',
  31. icon:'loading',
  32. duration: 2000
  33. })
  34. var that = this
  35. getGroup().then(res => {
  36. if(res.data.code == 0){
  37. var data = res.data.data
  38. if(data != null){
  39. for(let i = 0;i <data.length;i++){
  40. if(data[i].devices != null){
  41. for(let j = 0;j < data[i].devices.length;j++){
  42. if(data[i].devices[j].module == 0){
  43. let id = data[i].devices[j].deviceId
  44. let key = data[i].devices[j].deviceKey
  45. getBasic(id,key).then(ever =>{
  46. if(ever.data.errno == 0){
  47. if(ever.data.data.online == true){
  48. data[i].devices[j].status = '在线'
  49. }
  50. else{
  51. data[i].devices[j].status = '离线'
  52. }
  53. wx.setStorageSync('group',data)
  54. let tgroups = wx.getStorageSync('group')
  55. for(let i = 0;i < tgroups.length;i++){
  56. if(tgroups[i].groupName.length > 10){
  57. tgroups[i].groupName = tgroups[i].groupName.slice(0,9) + '....'
  58. }
  59. }
  60. that.setData({array:tgroups})
  61. }
  62. else{
  63. wx.showModal({
  64. title:'错误',
  65. content:ever.data.error,
  66. showCancel:false
  67. })
  68. }
  69. })
  70. }
  71. else{
  72. let status = data[i].devices[j].status
  73. switch(status){
  74. case 0:
  75. data[i].devices[j].status = '离线'
  76. break;
  77. case 1:
  78. data[i].devices[j].status = '在线'
  79. break
  80. }
  81. wx.setStorageSync('group',data)
  82. let tgroups = wx.getStorageSync('group')
  83. for(let i = 0;i < tgroups.length;i++){
  84. if(tgroups[i].groupName.length > 10){
  85. tgroups[i].groupName = tgroups[i].groupName.slice(0,9) + '....'
  86. }
  87. }
  88. that.setData({array:tgroups})
  89. }
  90. }
  91. }
  92. else{
  93. wx.setStorageSync('group',data)
  94. let group = wx.getStorageSync('group')
  95. for(let i = 0;i < group.length;i++){
  96. if(group[i].groupName.length > 10){
  97. group[i].groupName = group[i].groupName.slice(0,9) + '....'
  98. }
  99. }
  100. that.setData({array:group})
  101. }
  102. }
  103. }
  104. }
  105. else{
  106. wx.showModal({
  107. title:'错误',
  108. content:res.data.msg,
  109. showCancel:false
  110. })
  111. }
  112. })
  113. },
  114. //添加分组
  115. apption:function(){
  116. var that = this
  117. wx.showModal({
  118. title:'添加工程',
  119. editable:true,
  120. placeholderText:'请输入名称',
  121. success:function(ever){
  122. if(ever.confirm){
  123. if (ever.content == '') {
  124. wx.showModal({
  125. title:'提示',
  126. content:'请输入工程名',
  127. showCancel:false
  128. })
  129. }
  130. else if(ever.content.length > 15){
  131. wx.showModal({
  132. title:'提示',
  133. content:'分组名称不能大于15个字符',
  134. showCancel:false
  135. })
  136. }
  137. else{
  138. postGroup({groupName:ever.content}).then((res)=>{
  139. if(res.data.code == 0){
  140. if(wx.getStorageSync('group') == ''){
  141. wx.setStorageSync('group', [])
  142. var a = wx.getStorageSync('group')
  143. a.push({id:res.data.data.id,groupName:ever.content,devices:[]})
  144. wx.setStorageSync('group', a)
  145. }
  146. else{
  147. var b = wx.getStorageSync('group')
  148. b.push({id:res.data.data.id,groupName:ever.content,devices:[]})
  149. wx.setStorageSync('group', b)
  150. }
  151. var group = wx.getStorageSync('group')
  152. for(let i = 0;i < group.length;i++){
  153. if(group[i].groupName.length > 10){
  154. group[i].groupName = group[i].groupName.slice(0,9) + '....'
  155. }
  156. }
  157. that.setData({array:group})
  158. }
  159. else{
  160. wx.showModal({
  161. title:'错误',
  162. content:res.data.msg,
  163. showCancel:false
  164. })
  165. }
  166. })
  167. }
  168. }
  169. }
  170. })
  171. },
  172. //删除分组
  173. removeapption:function(e){
  174. var that = this
  175. wx.showModal({
  176. title:'提示',
  177. content:'确定删除该工程',
  178. success:function(res){
  179. if (res.confirm) {
  180. var index = e.currentTarget.dataset.indexdel//获取对应下标
  181. var Idindex = that.data.array[index].id
  182. var groupName = that.data.array[index].groupName
  183. delGroup(Idindex).then((res)=>{
  184. if(res.data.code == 0){
  185. if(groupName == wx.getStorageSync('groupName')){
  186. wx.setStorageSync('groupName', '')
  187. wx.setStorageSync('deviceName', '')
  188. }
  189. var deleteid = wx.getStorageSync('group')
  190. deleteid.splice(index,1)
  191. wx.setStorageSync('group', deleteid)
  192. var Group = wx.getStorageSync('group')
  193. for(let i = 0;i < Group.length;i++){
  194. if(Group[i].groupName.length > 10){
  195. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  196. }
  197. }
  198. that.setData({array: Group})
  199. }
  200. else{
  201. wx.showModal({
  202. title:'提示',
  203. content:res.data.msg,
  204. showCancel:false
  205. })
  206. }
  207. })
  208. }
  209. }
  210. })
  211. },
  212. //修改分组名称
  213. ShowChanges:function(e){
  214. var that = this
  215. wx.showModal({
  216. title:'修改工程名称',
  217. editable:true,
  218. placeholderText:'请输入名称',
  219. success:res =>{
  220. if (res.confirm) {
  221. var index = e.currentTarget.dataset.indexdel//获取对应下标
  222. var Idindex = that.data.array[index].id//获取对应下标的id值
  223. var groupName = that.data.array[index].name
  224. if (res.content == '') {
  225. wx.showModal({
  226. title:'提示',
  227. content:'请输入工程名',
  228. showCancel:false
  229. })
  230. }
  231. else if(res.content.length > 15){
  232. wx.showModal({
  233. title:'提示',
  234. content:'分组名称不能大于15个字符',
  235. showCancel:false
  236. })
  237. }
  238. else{
  239. putGroup({id:Idindex,groupName:res.content}).then(ever=>{
  240. if (ever.data.code == 0) {
  241. if(groupName == wx.getStorageSync('groupName')){
  242. wx.setStorageSync('groupName',res.content)
  243. }
  244. let group = wx.getStorageSync('group')
  245. group[index].groupName = res.content
  246. wx.setStorageSync('group',group)
  247. var Group = wx.getStorageSync('group')
  248. for(let i = 0;i < Group.length;i++){
  249. if(Group[i].groupName.length > 10){
  250. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  251. }
  252. }
  253. that.setData({array:Group})
  254. }
  255. else{
  256. wx.showModal({
  257. title:'提示',
  258. content:ever.data.msg,
  259. showCancel:false
  260. })
  261. }
  262. })
  263. }
  264. }
  265. }
  266. })
  267. },
  268. //扫码(添加设备)
  269. scanCodeEvent: function(e){
  270. var that = this
  271. var index = e.currentTarget.dataset.indexdel//获取对应下标
  272. var Idindex = that.data.array[index].id//分组Id
  273. Idindex = parseInt(Idindex)
  274. var group = wx.getStorageSync('group')
  275. //获取设备
  276. wx.scanCode({
  277. success(res){
  278. if(res.result.substring(0,1) == '{'){
  279. let parameter = res.result.match(/\d+(\.\d+)?/g)
  280. let ID = parameter[0]
  281. let SN = parameter[1]
  282. //添加设备
  283. postDevice({groupId:Idindex,deviceSn:SN,deviceId:ID,module:1,deviceName:SN}).then(add =>{
  284. if(add.data.code == 0){
  285. //查询设备
  286. getDevice(add.data.data.id,Idindex).then(get =>{
  287. var Get = get.data.data
  288. switch(Get.status){
  289. case 0:
  290. Get.status = '离线'
  291. break
  292. case 1:
  293. Get.status = '在线'
  294. break
  295. }
  296. if(group[index].devices != null){
  297. group[index].devices.push(Get)
  298. }
  299. else{
  300. group[index].devices = []
  301. group[index].devices.push(Get)
  302. }
  303. wx.setStorageSync('group', group)
  304. var Group = wx.getStorageSync('group')
  305. for(let i = 0;i < Group.length;i++){
  306. if(Group[i].groupName.length > 10){
  307. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  308. }
  309. }
  310. that.setData({array: Group})
  311. })
  312. }
  313. else{
  314. wx.showModal({
  315. title:'提示',
  316. content:add.data.msg,
  317. showCancel:false
  318. })
  319. }
  320. })
  321. }
  322. //dsx添加的设备
  323. else if( res.result.substring(0,2) == 86 ){
  324.   let ID = res.result
  325.   let SN = res.result
  326.   //添加设备
  327.   postDevice({groupId:Idindex,deviceSn:SN,deviceId:ID,module:1,deviceName:SN}).then(add =>{
  328.     if(add.data.code == 0){
  329.       //查询设备
  330.       getDevice(add.data.data.id,Idindex).then(get =>{
  331.         var Get = get.data.data
  332.         console.log(Get)
  333.         switch(Get.status){
  334.           case 0:
  335.             Get.status = '离线'
  336.           break
  337.           case 1:
  338.             Get.status = '在线'
  339.           break
  340.         }
  341.         if(group[index].devices != null){
  342.           group[index].devices.push(Get)
  343.         }
  344.         else{
  345.           group[index].devices = []
  346.           group[index].devices.push(Get)
  347.         }
  348.         wx.setStorageSync('group', group)
  349.         var Group = wx.getStorageSync('group')
  350.         for(let i = 0;i < Group.length;i++){
  351.           if(Group[i].groupName.length > 10){
  352.             Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  353.           }
  354.         }
  355.         that.setData({array: Group})
  356.       })
  357.     }
  358.     else{
  359.       wx.showModal({
  360.         title:'提示',
  361.         content:add.data.msg,
  362.         showCancel:false
  363.       })
  364.     }
  365.   })
  366. }
  367. else{
  368. var arr = res.result.split(' ');
  369. var a = arr[0]//设备id
  370. var b = arr[1]//设备key
  371. //获取该设备的在线状态和编码
  372. getBasic(a,b).then(ever=>{
  373. if(ever.data.errno == 0){
  374. var online = ever.data.data.online//设备在线状态
  375. switch (online) {
  376. case true:
  377. that.setData({status:1})
  378. that.setData({Status:"在线"})
  379. break;
  380. default:
  381. that.setData({status:0})
  382. that.setData({Status:"离线"})
  383. break;
  384. }
  385. var title = ever.data.data.title//设备编码
  386. getData(a,b).then(gu =>{
  387. if(gu.data.errno == 0){
  388. let trys = gu.data.data
  389. for(let w = 0;w < trys.length;w++){
  390. if(trys[w].id == "RelayCount"){
  391. var num = trys[w].current_value
  392. num = parseInt(num)
  393. }
  394. }
  395. var numName = ''
  396. for(let p = 0;p < num;p++){
  397. numName = numName + '回路' + (p + 1) + ','
  398. }
  399. numName = numName.slice(0,numName.length - 1)
  400. //添加设备
  401. postDevice({groupId:Idindex,deviceSn:title,deviceName:title,deviceId:a,deviceKey:b,status:that.data.status,circuitNum:num,circuits:numName,module:0})
  402. .then(su => {
  403. if (su.data.code == 0){
  404. //将设备的信息储存至本地
  405. if(group[index].devices != null){
  406. group[index].devices.push({
  407. id:su.data.data.id,
  408. deviceSn:title,
  409. deviceName:title,
  410. status:that.data.Status,
  411. deviceId:a,
  412. deviceKey:b,
  413. circuitNum:num,
  414. circuits:numName,
  415. module:0
  416. })
  417. }
  418. else{
  419. group[index].devices = []
  420. group[index].devices.push({
  421. id:su.data.data.id,
  422. deviceSn:title,
  423. deviceName:title,
  424. status:that.data.Status,
  425. deviceId:a,
  426. deviceKey:b,
  427. circuitNum:num,
  428. circuits:numName,
  429. module:0
  430. })
  431. }
  432. wx.setStorageSync('group', group)
  433. var Group = wx.getStorageSync('group')
  434. for(let i = 0;i < Group.length;i++){
  435. if(Group[i].groupName.length > 10){
  436. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  437. }
  438. }
  439. that.setData({array: Group})
  440. }
  441. else{
  442. wx.showModal({
  443. title:'提示',
  444. content:su.data.msg,
  445. showCancel:false
  446. })
  447. }
  448. })
  449. }
  450. else{
  451. wx.showModal({
  452. title: '错误',
  453. content: gu.data.error,
  454. showCancel:false
  455. })
  456. }
  457. })
  458. }
  459. else{
  460. wx.showModal({
  461. title: '错误',
  462. content: ever.data.error,
  463. showCancel:false
  464. })
  465. }
  466. })
  467. }
  468. }
  469. })
  470. },
  471. //修改设备名称
  472. modifyequipmentname:function(e){
  473. var that = this
  474. var key = e.currentTarget.dataset.indexdel
  475. var group = wx.getStorageSync('group')
  476. var deviceId = group[key[0]].devices[key[1]].id
  477. var groupName = group[key[0]].groupName//获取当前的分组名称
  478. var groupId = group[key[0]].id
  479. var deviceName = group[key[0]].devices[key[1]].deviceName//获取当前的设备名称
  480. wx.showModal({
  481. title:'修改设备名称',
  482. editable:true,
  483. placeholderText:'请输入名称',
  484. success:res =>{
  485. if (res.confirm) {
  486. if (res.content == '') {
  487. wx.showModal({
  488. title:'提示',
  489. showCancel:false,
  490. content:'请输入名称'
  491. })
  492. }
  493. else if(res.content.length > 10){
  494. wx.showModal({
  495. title:'提示',
  496. showCancel:false,
  497. content:'设备名称不能大于10个字符'
  498. })
  499. }
  500. else{
  501. putDevice({deviceName:res.content,id:deviceId,groupId:groupId}).then(ever=>{
  502. if(ever.data.code == 0){
  503. if(groupName == wx.getStorageSync('groupName') && deviceName == wx.getStorageSync('deviceName')){
  504. wx.setStorageSync('deviceName',res.content)
  505. }
  506. group[key[0]].devices[key[1]].deviceName = res.content
  507. wx.setStorageSync('group', group)
  508. var Group = wx.getStorageSync('group')
  509. for(let i = 0;i < Group.length;i++){
  510. if(Group[i].groupName.length > 10){
  511. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  512. }
  513. }
  514. that.setData({array: Group})
  515. }
  516. else{
  517. wx.showModal({
  518. title:'错误',
  519. content:ever.data.msg,
  520. showCancel:false
  521. })
  522. }
  523. })
  524. }
  525. }
  526. }
  527. })
  528. },
  529. //删除设备
  530. Deletedevice:function(e){
  531. var that = this
  532. wx.showModal({
  533. title:'删除设备',
  534. content:'确定删除该设备吗?',
  535. success:function(res){
  536. if(res.confirm){
  537. let key = e.currentTarget.dataset.indexdel//获得分组和设备的下标值([分组下标,设备下标])
  538. let group = wx.getStorageSync('group')
  539. let subscript = group[key[0]].devices[key[1]].id//设备对应的id
  540. var groupName = group[key[0]].groupName
  541. var deviceName = group[key[0]].devices[key[1]].deviceName
  542. delDevice(subscript).then(nrg=>{
  543. if (nrg.data.code == 0) {
  544. group[key[0]].devices.splice(key[1],1)
  545. wx.setStorageSync('group', group)
  546. var Group = wx.getStorageSync('group')
  547. for(let i = 0;i < Group.length;i++){
  548. if(Group[i].groupName.length > 10){
  549. Group[i].groupName = Group[i].groupName.slice(0,9) + '....'
  550. }
  551. }
  552. that.setData({array: Group})
  553. if(groupName == wx.getStorageSync('groupName') && deviceName == wx.getStorageSync('deviceName')){
  554. wx.setStorageSync('deviceName','')
  555. }
  556. }
  557. else{
  558. wx.showModal({
  559. title:'提示',
  560. content:nrg.data.msg,
  561. showCancel:false
  562. })
  563. }
  564. })
  565. }
  566. }
  567. })
  568. },
  569. //设备的显示隐藏
  570. Develop:function(e){
  571. var that = this
  572. let array = that.data.array
  573. var pd = e.currentTarget.dataset.indexdel
  574. for(let item =0;item < array.length;item++){
  575. if (array[item].id == array[pd].id) {
  576. //判断当前对象中的insert是否为true(true为显示,其他为隐藏) insert是新增的一个值然后进行判断
  577. if (array[item].insert == "" || array[item].insert == undefined) {
  578. array[item].insert = "true"
  579. } else {
  580. array[item].insert = ""
  581. }
  582. }
  583. }
  584. that.setData({
  585. array:array
  586. })
  587. },
  588. /**
  589. * 生命周期函数--监听页面加载
  590. */
  591. onLoad(options) {
  592. wx.showToast({
  593. title:'获取数据中',
  594. icon:'loading',
  595. duration: 2000
  596. })
  597. var that = this
  598. getGroup().then(res => {
  599. if(res.data.code == 0){
  600. var data = res.data.data
  601. if(data != null){
  602. for(let i = 0;i <data.length;i++){
  603. if(data[i].devices != null){
  604. for(let j = 0;j < data[i].devices.length;j++){
  605. if(data[i].devices[j].module == 0){
  606. let id = data[i].devices[j].deviceId
  607. let key = data[i].devices[j].deviceKey
  608. getBasic(id,key).then(ever =>{
  609. if(ever.data.errno == 0){
  610. if(ever.data.data.online == true){
  611. data[i].devices[j].status = '在线'
  612. }
  613. else{
  614. data[i].devices[j].status = '离线'
  615. }
  616. wx.setStorageSync('group',data)
  617. let tgroups = wx.getStorageSync('group')
  618. for(let i = 0;i < tgroups.length;i++){
  619. if(tgroups[i].groupName.length > 10){
  620. tgroups[i].groupName = tgroups[i].groupName.slice(0,9) + '....'
  621. }
  622. }
  623. that.setData({array:tgroups})
  624. }
  625. else{
  626. wx.showModal({
  627. title:'错误',
  628. content:ever.data.error,
  629. showCancel:false
  630. })
  631. }
  632. })
  633. }
  634. else{
  635. let status = data[i].devices[j].status
  636. switch(status){
  637. case 0:
  638. data[i].devices[j].status = '离线'
  639. break;
  640. case 1:
  641. data[i].devices[j].status = '在线'
  642. break
  643. }
  644. wx.setStorageSync('group',data)
  645. let tgroups = wx.getStorageSync('group')
  646. for(let i = 0;i < tgroups.length;i++){
  647. if(tgroups[i].groupName.length > 10){
  648. tgroups[i].groupName = tgroups[i].groupName.slice(0,9) + '....'
  649. }
  650. }
  651. that.setData({array:tgroups})
  652. }
  653. }
  654. }
  655. else{
  656. wx.setStorageSync('group',data)
  657. let group = wx.getStorageSync('group')
  658. for(let i = 0;i < group.length;i++){
  659. if(group[i].groupName.length > 10){
  660. group[i].groupName = group[i].groupName.slice(0,9) + '....'
  661. }
  662. }
  663. that.setData({array:group})
  664. }
  665. }
  666. }
  667. }
  668. else{
  669. wx.showModal({
  670. title:'错误',
  671. content:res.data.msg,
  672. showCancel:false
  673. })
  674. }
  675. })
  676. },
  677. /**
  678. * 生命周期函数--监听页面初次渲染完成
  679. */
  680. onReady() {
  681. },
  682. /**
  683. * 生命周期函数--监听页面显示
  684. */
  685. onShow() {
  686. },
  687. /**
  688. * 生命周期函数--监听页面隐藏
  689. */
  690. onHide() {
  691. },
  692. /**
  693. * 生命周期函数--监听页面卸载
  694. */
  695. onUnload() {
  696. },
  697. /**
  698. * 页面相关事件处理函数--监听用户下拉动作
  699. */
  700. onPullDownRefresh() {
  701. },
  702. /**
  703. * 页面上拉触底事件的处理函数
  704. */
  705. onReachBottom() {
  706. },
  707. /**
  708. * 用户点击右上角分享
  709. */
  710. onShareAppMessage() {
  711. }
  712. })