scene.js 21 KB

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