warnList.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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">{{$t('没有更多信息啦~')}}</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. uni.setNavigationBarTitle({
  47. title: this.$t('报警列表')
  48. });
  49. this.macid = options.macid || '';
  50. console.log(options);
  51. common.loading(this);
  52. if (this.macid != '') {
  53. this.loadWarnList();
  54. }
  55. },
  56. /**
  57. * 生命周期函数--监听页面显示
  58. */
  59. onShow: function () {
  60. uni.setNavigationBarTitle({
  61. title: this.$t('报警列表')
  62. });
  63. },
  64. /**
  65. * 页面相关事件处理函数--监听用户下拉动作
  66. */
  67. onPullDownRefresh: function () {
  68. if (this.macid != '') {
  69. this.loadWarnList();
  70. }
  71. },
  72. /**
  73. * 页面上拉触底事件的处理函数
  74. */
  75. onReachBottom: function () {},
  76. methods: {
  77. loadWarnList() {
  78. const me = this;
  79. common.loading(this);
  80. http.postRequest(
  81. config.API_GPS_ALARM,
  82. {
  83. macid: this.macid
  84. },
  85. function (resp) {
  86. uni.hideLoading();
  87. uni.stopPullDownRefresh();
  88. if (resp.data.code === 200) {
  89. me.setData({
  90. alarmList: resp.data.data.list
  91. });
  92. } else {
  93. common.simpleToast(me,resp.data.msg);
  94. }
  95. }
  96. );
  97. },
  98. navToPage(e) {
  99. const page = e.target.dataset.url;
  100. uni.navigateTo({
  101. url: page,
  102. success: function (res) {},
  103. fail: function (res) {},
  104. complete: function (res) {}
  105. });
  106. },
  107. bindChangeSetAlarm(e) {
  108. console.log(e);
  109. const status = e.detail.value ? 0 : 1;
  110. const pData = {
  111. macid: this.macid,
  112. status: status
  113. };
  114. http.postApi(config.API_BATTERY_SET_ALARM_PUSH, pData, function (resp) {
  115. if (resp.data.code === 200) {
  116. common.simpleToast(this,this.$t('设置成功'));
  117. }
  118. });
  119. },
  120. getAlarmStatus() {
  121. const pData = {
  122. macid: this.macid
  123. };
  124. const me = this;
  125. http.postApi(config.API_BATTERY_GET_ALARM_STATUS, pData, function (resp) {
  126. if (resp.data.code === 200) {
  127. me.setData({
  128. alarmStatus: resp.data.data.status == 0 ? false : true
  129. });
  130. }
  131. });
  132. },
  133. bindAlarmMap(e) {
  134. const alarmInfo = this.alarmList[e.currentTarget.dataset.index];
  135. storage.setAlarmInfo(alarmInfo);
  136. console.log(alarmInfo);
  137. uni.navigateTo({
  138. url: '/pages/warnMap/warnMap',
  139. success: function (res) {},
  140. fail: function (res) {},
  141. complete: function (res) {}
  142. });
  143. }
  144. }
  145. };
  146. </script>
  147. <style>
  148. @import './warnList.css';
  149. </style>