scene.js 19 KB

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