smsRecord.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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">{{$t('设备编号') + ':'}}</view>
  7. <view class="info_group_mark">{{ macid }}</view>
  8. </view>
  9. <view @tap="bindChangeDevice" v-if="changeIndex == 0" class="changeDevice">{{$t('切换查看所有设备')}}</view>
  10. <view v-if="changeIndex == 1" class="flex-row">
  11. <view class="info_group">{{$t('所有设备')}}</view>
  12. </view>
  13. <view @tap="bindChangeDevice" v-if="changeIndex == 1" class="changeDevice">{{ $t('切换设备编号') + ':'+ 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">{{$t('设备名称') + ':'}}</view>
  20. <view class="info_group_mark">{{ item.gpsbms_name }}</view>
  21. </view>
  22. <view class="flex-row">
  23. <view class="info_group">{{$t('设备编号') + ':'}}</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">{{$t('报警类型') + ':'}}</view>
  29. <view class="info_red">{{ item.alarm_type }}</view>
  30. </view>
  31. <view class="flex-row">
  32. <view class="info_group">{{$t('报警时间') + ':'}}</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. uni.setNavigationBarTitle({
  64. title: this.$t('短信报警记录')
  65. });
  66. this.setData({
  67. macid: options.macid || ''
  68. });
  69. this.refreshLoadSmsAlarmList();
  70. },
  71. /**
  72. * 生命周期函数--监听页面显示
  73. */
  74. onShow: function () {
  75. uni.setNavigationBarTitle({
  76. title: this.$t('短信报警记录')
  77. });
  78. },
  79. /**
  80. * 页面相关事件处理函数--监听用户下拉动作
  81. */
  82. onPullDownRefresh: function () {
  83. this.refreshLoadSmsAlarmList();
  84. },
  85. /**
  86. * 页面上拉触底事件的处理函数
  87. */
  88. onReachBottom: function () {
  89. if (this.isLoading) {
  90. return;
  91. }
  92. this.setData({
  93. isLoading: true
  94. });
  95. this.start_page++;
  96. this.loadWarnList();
  97. },
  98. methods: {
  99. bindChangeDevice: function (e) {
  100. if (this.changeIndex === 0) {
  101. this.setData({
  102. changeIndex: 1
  103. });
  104. } else {
  105. this.setData({
  106. changeIndex: 0
  107. });
  108. }
  109. this.refreshLoadSmsAlarmList();
  110. },
  111. refreshLoadSmsAlarmList: function () {
  112. if (this.isLoading) {
  113. return;
  114. }
  115. this.setData({
  116. alarmList: [],
  117. isLoading: true
  118. });
  119. common.loading(this);
  120. this.limit_page = LIMT_PAGE;
  121. this.start_page = 1;
  122. this.loadWarnList();
  123. },
  124. loadWarnList() {
  125. const me = this;
  126. var dataMacId = '';
  127. if (me.changeIndex === 0) {
  128. dataMacId = me.macid;
  129. }
  130. const pData = {
  131. size: me.limit_page,
  132. page: me.start_page,
  133. macid: dataMacId
  134. };
  135. common.loading(this);
  136. http.postRequest(config.API_RECORD_LIST, pData, function (resp) {
  137. uni.stopPullDownRefresh();
  138. uni.hideLoading();
  139. if (resp.data.code === 200) {
  140. let alarmList = me.alarmList;
  141. alarmList.push.apply(alarmList, resp.data.data.list);
  142. me.setData({
  143. alarmList: alarmList,
  144. isLoading: false
  145. });
  146. } else {
  147. common.simpleToast(me,resp.data.msg);
  148. }
  149. });
  150. }
  151. }
  152. };
  153. </script>
  154. <style>
  155. @import './smsRecord.css';
  156. </style>