smsRecord.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <!-- pages/smsRecord/smsRecord.wxml -->
  3. <view class="container">
  4. <view class="top_view flex-row flex-between">
  5. <view v-if="changeIndex == 0" class="flex-row">
  6. <view class="info_group">设备编号:</view>
  7. <view class="info_group_mark">{{ macid }}</view>
  8. </view>
  9. <view @tap="bindChangeDevice" v-if="changeIndex == 0" class="changeDevice">切换查看所有设备</view>
  10. <view v-if="changeIndex == 1" class="flex-row">
  11. <view class="info_group">所有设备</view>
  12. </view>
  13. <view @tap="bindChangeDevice" v-if="changeIndex == 1" class="changeDevice">切换设备编号:{{ macid }}</view>
  14. </view>
  15. <view v-for="(item, index) in alarmList" :key="index">
  16. <view class="info-group bg_view">
  17. <view class="flex-row flex-between">
  18. <view class="flex-row">
  19. <view class="info_group">设备名称:</view>
  20. <view class="info_group_mark">{{ item.gpsbms_name }}</view>
  21. </view>
  22. <view class="flex-row">
  23. <view class="info_group">设备编号:</view>
  24. <view class="info_group_mark">{{ item.battery_sn }}</view>
  25. </view>
  26. </view>
  27. <view class="flex-row">
  28. <view class="info_group">报警类型:</view>
  29. <view class="info_red">{{ item.alarm_type }}</view>
  30. </view>
  31. <view class="flex-row">
  32. <view class="info_group">报警时间:</view>
  33. <view class="info_group_mark">{{ tools.formatTime(item.alarm_time) }}</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  40. <script>
  41. // pages/smsRecord/smsRecord.js
  42. var appConfig = require('../../common/appConfig.js');
  43. const config = require('../../common/config.js');
  44. const http = require('../../common/http.js');
  45. const common = require('../../common/common.js');
  46. var storage = require('../../common/storage.js');
  47. const LIMT_PAGE = 20;
  48. export default {
  49. data() {
  50. return {
  51. isLoading: false,
  52. alarmList: [],
  53. start_page: 1,
  54. limit_page: LIMT_PAGE,
  55. changeIndex: 0,
  56. macid: ''
  57. };
  58. }
  59. /**
  60. * 生命周期函数--监听页面加载
  61. */,
  62. onLoad: function (options) {
  63. this.setData({
  64. macid: options.macid || ''
  65. });
  66. this.refreshLoadSmsAlarmList();
  67. },
  68. /**
  69. * 生命周期函数--监听页面显示
  70. */
  71. onShow: function () {},
  72. /**
  73. * 页面相关事件处理函数--监听用户下拉动作
  74. */
  75. onPullDownRefresh: function () {
  76. this.refreshLoadSmsAlarmList();
  77. },
  78. /**
  79. * 页面上拉触底事件的处理函数
  80. */
  81. onReachBottom: function () {
  82. if (this.isLoading) {
  83. return;
  84. }
  85. this.setData({
  86. isLoading: true
  87. });
  88. this.start_page++;
  89. this.loadWarnList();
  90. },
  91. methods: {
  92. bindChangeDevice: function (e) {
  93. if (this.changeIndex === 0) {
  94. this.setData({
  95. changeIndex: 1
  96. });
  97. } else {
  98. this.setData({
  99. changeIndex: 0
  100. });
  101. }
  102. this.refreshLoadSmsAlarmList();
  103. },
  104. refreshLoadSmsAlarmList: function () {
  105. if (this.isLoading) {
  106. return;
  107. }
  108. this.setData({
  109. alarmList: [],
  110. isLoading: true
  111. });
  112. common.loading();
  113. this.limit_page = LIMT_PAGE;
  114. this.start_page = 1;
  115. this.loadWarnList();
  116. },
  117. loadWarnList() {
  118. const me = this;
  119. var dataMacId = '';
  120. if (me.changeIndex === 0) {
  121. dataMacId = me.macid;
  122. }
  123. const pData = {
  124. size: me.limit_page,
  125. page: me.start_page,
  126. macid: dataMacId
  127. };
  128. common.loading();
  129. http.postRequest(config.API_RECORD_LIST, pData, function (resp) {
  130. uni.stopPullDownRefresh();
  131. uni.hideLoading();
  132. if (resp.data.code === 200) {
  133. let alarmList = me.alarmList;
  134. alarmList.push.apply(alarmList, resp.data.data.list);
  135. me.setData({
  136. alarmList: alarmList,
  137. isLoading: false
  138. });
  139. } else {
  140. common.simpleToast(resp.data.msg);
  141. }
  142. });
  143. }
  144. }
  145. };
  146. </script>
  147. <style>
  148. @import './smsRecord.css';
  149. </style>