system.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. // pages/system/system.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. dates:"",//日期
  8. times:"",//时间
  9. Illuminance:"",//光照度
  10. Firealarmtext:"",//消防报警文字
  11. Firealarmcolor:"",//消防报警颜色
  12. longitude:"",//经度
  13. latitude:"",//纬度
  14. Sunrisetime:"",//日出时间
  15. Sunsettime:"",//日落时间
  16. array: ['0', '1', '2', '3','4','5','6','7','8','9','10',
  17. '11', '12', '13', '14','15','16','17','18','19','20'],//开关延时
  18. index: 0,
  19. longitudemodal:true,//经度弹窗显示隐藏
  20. latitudemodal:true,//纬度弹窗显示隐藏
  21. getLongitude:"",//获取文本框经度
  22. getLatitude:"",//获取文本框纬度
  23. Manualinput1:"00,00'",//经度显示
  24. Manualinput2:"00,00'",//纬度显示
  25. Title:"",
  26. statu:"false",
  27. status:"离线",
  28. loops:"",//记录回路数量
  29. Storage:[],//储存发送数据
  30. },
  31. bindPickerChange: function(e) {
  32. this.setData({
  33. index: e.detail.value,
  34. // Index: e.detail.value
  35. })
  36. },
  37. //扫码
  38. scanCodeEvent: function(){
  39. wx.scanCode({
  40. onlyFromCamera: true,// 只允许从相机扫码
  41. success(res){
  42. console.log("扫码成功:"+JSON.stringify(res))
  43. var arr = res.split(' ');
  44. var a = arr[0]
  45. var b = arr[1]
  46. wx.request({
  47. url: 'https://api.heclouds.com/devices/' + a,
  48. method:'GET',
  49. header:{
  50. 'api-key':b,
  51. },
  52. success(res){
  53. this.setData({
  54. Title:res.data.title,
  55. statu:res.data.online
  56. })
  57. if(this.data.statu == true){
  58. this.setData({
  59. status:"在线",
  60. })
  61. wx.request({
  62. url: 'https://api.heclouds.com/devices/' + '773359551' + '/datastreams',
  63. header: {"api-key": 'YhyMeWv90ODkHVsNrwdzlhrwV04='},
  64. method:'GET',
  65. success: (res) => {
  66. console.log(res.data)
  67. }
  68. })
  69. }
  70. else{
  71. this.setData({
  72. status:"离线"
  73. })
  74. }
  75. }
  76. })
  77. }
  78. })
  79. },
  80. //校准时间
  81. Calibrationtime:function(){
  82. var that = this
  83. wx.request({
  84. url: 'https://api.heclouds.com/devices/' + '773359551' + '/datastreams',
  85. header: {"api-key": 'YhyMeWv90ODkHVsNrwdzlhrwV04='},
  86. method:'GET',
  87. success: function(res){
  88. console.log(res.data)
  89. let {data} = res.data
  90. console.log(data[0].id)
  91. for(let i = 0; i < data.length; i++){
  92. if (data[i].id == "SysTime") {
  93. var times = data[i].current_value
  94. }
  95. }
  96. if(times.length == 5){
  97. var a = "0" + times.substring(0,1) + ':' + times.substring(1,3) + ':' + times.substring(3,5)
  98. }
  99. else if(times.length == 6){
  100. var a =times.substring(0,2) + ':' + times.substring(2,4) + ':' + times.substring(4,6)
  101. }
  102. else{
  103. a = times
  104. }
  105. that.setData({
  106. times:a,
  107. })
  108. }
  109. })
  110. },
  111. //经度弹窗
  112. simulation1:function(){
  113. this.setData({
  114. longitudemodal:false
  115. })
  116. },
  117. //获取经度
  118. GetLongitude:function(e){
  119. let a = e.detail.value
  120. this.setData({
  121. getLongitude:a
  122. })
  123. },
  124. //取消
  125. cancel1:function(){
  126. this.setData({
  127. longitudemodal:true
  128. })
  129. },
  130. //确认
  131. confirm1:function(){
  132. this.setData({
  133. longitudemodal:true,
  134. Manualinput1:this.data.getLongitude,
  135. })
  136. },
  137. //纬度弹窗
  138. simulation2:function(){
  139. this.setData({
  140. latitudemodal:false
  141. })
  142. },
  143. //取消
  144. cancel2:function(){
  145. this.setData({
  146. latitudemodal:true
  147. })
  148. },
  149. //确认
  150. confirm2:function(){
  151. this.setData({
  152. latitudemodal:true,
  153. Manualinput2:this.data.getLatitude
  154. })
  155. },
  156. //获取纬度
  157. GetLatitude:function(e){
  158. let b = e.detail.value
  159. this.setData({
  160. getLatitude:b
  161. })
  162. },
  163. //刷新页面
  164. RefreshPage:function(){
  165. var that = this
  166. var storage = that.data.Storage
  167. wx.request({
  168. url: 'https://api.heclouds.com/devices/' + '773359551' + '/datastreams',
  169. header: {"api-key": 'YhyMeWv90ODkHVsNrwdzlhrwV04='},
  170. method:'GET',
  171. success: function(res){
  172. let {data} = res.data
  173. for(let i = 0; i < data.length; i++){
  174. //时间
  175. if (data[i].id == "SysTime") {
  176. var times = data[i].current_value
  177. storage[0] = times
  178. }
  179. //日期
  180. else if(data[i].id == "SysDate"){
  181. var dates = data[i].current_value
  182. storage[1] = dates
  183. }
  184. //光照度
  185. else if(data[i].id == "lightLuxValue"){
  186. var Illuminance = data[i].current_value
  187. storage[2] = Illuminance
  188. }
  189. //日出时间
  190. else if(data[i].id == "RiseTime"){
  191. var Sunrisetime = data[i].current_value
  192. storage[3] = Sunrisetime
  193. }
  194. //日落时间
  195. else if(data[i].id == "SetTime"){
  196. var Sunsettime = data[i].current_value
  197. storage[4] = Sunsettime
  198. }
  199. //经度
  200. else if(data[i].id == "Longitude"){
  201. var longitude = data[i].current_value
  202. storage[5] = longitude
  203. }
  204. //纬度
  205. else if(data[i].id == "Latitude"){
  206. var latitude = data[i].current_value
  207. storage[6] = latitude
  208. }
  209. //消防报警
  210. else if(data[i].id == "AlarmState"){
  211. var Firealarm = data[i].current_value
  212. storage[7] = Firealarm
  213. }
  214. //回路数量
  215. else if(data[i].id == "RelayCount"){
  216. var loops = data[i].current_value
  217. storage[8] = loops
  218. }
  219. //开关延时
  220. else if (data[i].id == "DeviceID") {
  221. var device = data[i].current_value
  222. that.setData({index:device})
  223. }
  224. }
  225. //时间
  226. if(times.length == 5){
  227. var a = "0" + times.substring(0,1) + ':' + times.substring(1,3) + ':' + times.substring(3,5)
  228. }
  229. else if(times.length == 6){
  230. var a =times.substring(0,2) + ':' + times.substring(2,4) + ':' + times.substring(4,6)
  231. }
  232. else{
  233. a = times
  234. }
  235. //日期
  236. var b ='20' + dates.substring(0,2) + '-' + dates.substring(2,4) + '-' + dates.substring(4,6)
  237. //日出时间
  238. var c = Sunrisetime.substring(0,1) + ':' + Sunrisetime.substring(1,3)
  239. //日落时间
  240. var d = Sunsettime.substring(0,2) + ':' + Sunsettime.substring(2,4)
  241. //经度
  242. if (longitude.length == 5) {
  243. var e = longitude.substring(0,3) + "," + longitude.substring(3,5) + "'"
  244. }
  245. else{
  246. var e = longitude.substring(0,2) + "," + longitude.substring(3,4) + "'"
  247. }
  248. //纬度
  249. if (latitude.length == 5) {
  250. var f = latitude.substring(0,3) + "," + latitude.substring(2,5) + "'"
  251. }
  252. else{
  253. var f = latitude.substring(0,2) + "," + latitude.substring(2,4) + "'"
  254. }
  255. //光照度
  256. var g = Illuminance
  257. //消防报警
  258. if(Firealarm == "0"){
  259. that.setData({
  260. Firealarmtext:"正常",
  261. Firealarmcolor:"#5cfe03"
  262. })
  263. }
  264. else{
  265. that.setData({
  266. Firealarmtext:"异常",
  267. Firealarmcolor:"red"
  268. })
  269. }
  270. console.log(storage)
  271. that.setData({
  272. times:a,
  273. dates:b,
  274. Sunrisetime:c,
  275. Sunsettime:d,
  276. longitude:e,
  277. latitude:f,
  278. Illuminance:g,
  279. loops:loops,
  280. Storage:storage
  281. })
  282. }
  283. })
  284. },
  285. //存储数据
  286. Storedata: function(){
  287. var that = this
  288. var switchtime = that.data.array[that.data.index]
  289. console.log(switchtime)
  290. if(this.data.statu == true){
  291. wx.request({
  292. url: 'https://api.heclouds.com/cmds?device_id=' + '773359551',
  293. method:'POST',
  294. header:{"api-key":"YhyMeWv90ODkHVsNrwdzlhrwV04="},
  295. data:{
  296. "Reflash":0
  297. },
  298. success:function(res){
  299. console.log("发送成功")
  300. }
  301. })
  302. }
  303. else{
  304. wx.showModal({
  305. title:'提示',
  306. content:'存储数据失败,请检查设备是否在线或者刷新页面',
  307. showCancel:false,
  308. })
  309. }
  310. },
  311. /**
  312. * 生命周期函数--监听页面加载
  313. */
  314. onLoad(options) {
  315. // wx.showToast({
  316. // title: '加载中',
  317. // duration: 2000,
  318. // icon: 'loading',
  319. // mask: true
  320. // }
  321. var that = this
  322. wx.request({
  323. url: 'https://api.heclouds.com/devices/' + '773359551',
  324. method:'GET',
  325. header:{"api-key": 'YhyMeWv90ODkHVsNrwdzlhrwV04='},
  326. success:(res) =>{
  327. if (res.data.data.online == true) {
  328. that.setData({
  329. status:"在线"
  330. })
  331. }
  332. else{
  333. that.setData({
  334. status:"离线"
  335. })
  336. }
  337. }
  338. })
  339. var storage = that.data.Storage
  340. wx.request({
  341. url: 'https://api.heclouds.com/devices/' + '773359551' + '/datastreams',
  342. header: {"api-key": 'YhyMeWv90ODkHVsNrwdzlhrwV04='},
  343. method:'GET',
  344. success: function(res){
  345. let {data} = res.data
  346. for(let i = 0; i < data.length; i++){
  347. //时间
  348. if (data[i].id == "SysTime") {
  349. var times = data[i].current_value
  350. storage[0] = times
  351. }
  352. //日期
  353. else if(data[i].id == "SysDate"){
  354. var dates = data[i].current_value
  355. storage[1] = dates
  356. }
  357. //光照度
  358. else if(data[i].id == "lightLuxValue"){
  359. var Illuminance = data[i].current_value
  360. storage[2] = Illuminance
  361. }
  362. //日出时间
  363. else if(data[i].id == "RiseTime"){
  364. var Sunrisetime = data[i].current_value
  365. storage[3] = Sunrisetime
  366. }
  367. //日落时间
  368. else if(data[i].id == "SetTime"){
  369. var Sunsettime = data[i].current_value
  370. storage[4] = Sunsettime
  371. }
  372. //经度
  373. else if(data[i].id == "Longitude"){
  374. var longitude = data[i].current_value
  375. storage[5] = longitude
  376. }
  377. //纬度
  378. else if(data[i].id == "Latitude"){
  379. var latitude = data[i].current_value
  380. storage[6] = latitude
  381. }
  382. //消防报警
  383. else if(data[i].id == "AlarmState"){
  384. var Firealarm = data[i].current_value
  385. storage[7] = Firealarm
  386. }
  387. //回路数量
  388. else if(data[i].id == "RelayCount"){
  389. var loops = data[i].current_value
  390. storage[8] = loops
  391. }
  392. //开关延时
  393. else if (data[i].id == "DeviceID") {
  394. var device = data[i].current_value
  395. that.setData({index:device})
  396. }
  397. }
  398. //时间
  399. if(times.length == 5){
  400. var a = "0" + times.substring(0,1) + ':' + times.substring(1,3) + ':' + times.substring(3,5)
  401. }
  402. else if(times.length == 6){
  403. var a =times.substring(0,2) + ':' + times.substring(2,4) + ':' + times.substring(4,6)
  404. }
  405. else{
  406. a = times
  407. }
  408. //日期
  409. var b ='20' + dates.substring(0,2) + '-' + dates.substring(2,4) + '-' + dates.substring(4,6)
  410. //日出时间
  411. var c = Sunrisetime.substring(0,1) + ':' + Sunrisetime.substring(1,3)
  412. //日落时间
  413. var d = Sunsettime.substring(0,2) + ':' + Sunsettime.substring(2,4)
  414. //经度
  415. if (longitude.length == 5) {
  416. var e = longitude.substring(0,3) + "," + longitude.substring(3,5) + "'"
  417. }
  418. else{
  419. var e = longitude.substring(0,2) + "," + longitude.substring(3,4) + "'"
  420. }
  421. //纬度
  422. if (latitude.length == 5) {
  423. var f = latitude.substring(0,3) + "," + latitude.substring(2,5) + "'"
  424. }
  425. else{
  426. var f = latitude.substring(0,2) + "," + latitude.substring(2,4) + "'"
  427. }
  428. //光照度
  429. var g = Illuminance
  430. //消防报警
  431. if(Firealarm == "0"){
  432. that.setData({
  433. Firealarmtext:"正常",
  434. Firealarmcolor:"#5cfe03"
  435. })
  436. }
  437. else{
  438. that.setData({
  439. Firealarmtext:"异常",
  440. Firealarmcolor:"red"
  441. })
  442. }
  443. console.log(storage)
  444. that.setData({
  445. times:a,
  446. dates:b,
  447. Sunrisetime:c,
  448. Sunsettime:d,
  449. longitude:e,
  450. latitude:f,
  451. Illuminance:g,
  452. loops:loops,
  453. Storage:storage
  454. })
  455. }
  456. })
  457. },
  458. /**
  459. * 生命周期函数--监听页面初次渲染完成
  460. */
  461. onReady() {
  462. },
  463. /**
  464. * 生命周期函数--监听页面显示
  465. */
  466. onShow() {
  467. },
  468. /**
  469. * 生命周期函数--监听页面隐藏
  470. */
  471. onHide() {
  472. },
  473. /**
  474. * 生命周期函数--监听页面卸载
  475. */
  476. onUnload() {
  477. },
  478. /**
  479. * 页面相关事件处理函数--监听用户下拉动作
  480. */
  481. onPullDownRefresh() {
  482. },
  483. /**
  484. * 页面上拉触底事件的处理函数
  485. */
  486. onReachBottom() {
  487. },
  488. /**
  489. * 用户点击右上角分享
  490. */
  491. onShareAppMessage() {
  492. }
  493. })