warnList.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <view class="container">
  3. <view class="list-group">
  4. <view @tap="bindAlarmMap" :data-index="index" v-for="(item, index) in alarmList" :key="index">
  5. <button class="list-item flex-row flex-start no-btn">
  6. <view class="warn-info">
  7. <view class="dev-info flex-row flex-between">
  8. <view class="warn-desc">{{ item.macid }}</view>
  9. <view class="warn-item">
  10. <text class="warn-text">{{ item.alarm_desc ? item.alarm_desc : '' }}</text>
  11. </view>
  12. </view>
  13. <view class="warn-content">
  14. <view class="warn-desc">{{ tools.formatTime(item.send_time) }}</view>
  15. </view>
  16. </view>
  17. </button>
  18. </view>
  19. </view>
  20. <view class="no-more">没有更多信息</view>
  21. </view>
  22. </template>
  23. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  24. <script>
  25. // pages/warnList/warnList.js
  26. var appConfig = require('../../common/appConfig.js');
  27. const config = require('../../common/config.js');
  28. const http = require('../../common/http.js');
  29. const common = require('../../common/common.js');
  30. var storage = require('../../common/storage.js');
  31. export default {
  32. data() {
  33. return {
  34. macid: '',
  35. alarmList: [],
  36. alarmStatus: false,
  37. // false 0: 未关闭 true 1: 关闭
  38. haveAlarmStatus: false,
  39. style_deg: 0
  40. };
  41. }
  42. /**
  43. * 生命周期函数--监听页面加载
  44. */,
  45. onLoad: function (options) {
  46. this.macid = options.macid || '';
  47. console.log(options);
  48. common.loading();
  49. if (this.macid != '') {
  50. this.loadWarnList();
  51. }
  52. },
  53. /**
  54. * 生命周期函数--监听页面显示
  55. */
  56. onShow: function () {},
  57. /**
  58. * 页面相关事件处理函数--监听用户下拉动作
  59. */
  60. onPullDownRefresh: function () {
  61. if (this.macid != '') {
  62. this.loadWarnList();
  63. }
  64. },
  65. /**
  66. * 页面上拉触底事件的处理函数
  67. */
  68. onReachBottom: function () {},
  69. methods: {
  70. loadWarnList() {
  71. const me = this;
  72. common.loading();
  73. http.postRequest(
  74. config.API_GPS_ALARM,
  75. {
  76. macid: this.macid
  77. },
  78. function (resp) {
  79. uni.hideLoading();
  80. uni.stopPullDownRefresh();
  81. if (resp.data.code === 200) {
  82. me.setData({
  83. alarmList: resp.data.data.list
  84. });
  85. } else {
  86. common.simpleToast(resp.data.msg);
  87. }
  88. }
  89. );
  90. },
  91. navToPage(e) {
  92. const page = e.target.dataset.url;
  93. uni.navigateTo({
  94. url: page,
  95. success: function (res) {},
  96. fail: function (res) {},
  97. complete: function (res) {}
  98. });
  99. },
  100. bindChangeSetAlarm(e) {
  101. console.log(e);
  102. const status = e.detail.value ? 0 : 1;
  103. const pData = {
  104. macid: this.macid,
  105. status: status
  106. };
  107. http.postApi(config.API_BATTERY_SET_ALARM_PUSH, pData, function (resp) {
  108. if (resp.data.code === 200) {
  109. common.simpleToast('设置成功');
  110. }
  111. });
  112. },
  113. getAlarmStatus() {
  114. const pData = {
  115. macid: this.macid
  116. };
  117. const me = this;
  118. http.postApi(config.API_BATTERY_GET_ALARM_STATUS, pData, function (resp) {
  119. if (resp.data.code === 200) {
  120. me.setData({
  121. alarmStatus: resp.data.data.status == 0 ? false : true
  122. });
  123. }
  124. });
  125. },
  126. bindAlarmMap(e) {
  127. const alarmInfo = this.alarmList[e.currentTarget.dataset.index];
  128. storage.setAlarmInfo(alarmInfo);
  129. console.log(alarmInfo);
  130. uni.navigateTo({
  131. url: '/pages/warnMap/warnMap',
  132. success: function (res) {},
  133. fail: function (res) {},
  134. complete: function (res) {}
  135. });
  136. }
  137. }
  138. };
  139. </script>
  140. <style>
  141. @import './warnList.css';
  142. </style>