scene.js 21 KB

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