commandList.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <!-- pages/commandList/commandList.wxml -->
  3. <view class="container">
  4. <view class="item-container">
  5. <view class="command-item flex-row" v-for="(item, index) in commandList" :key="index">
  6. <view style="width: 100%">
  7. <view class="flex-row flex-between" style="width: 100%; margin-bottom: 8rpx">
  8. <view class="command-title">{{ commandLabel[item.cmd] ? commandLabel[item.cmd] : item.cmd }}</view>
  9. <view class="command-status">{{ item.status == 0 ? '发送成功' : '发送失败' }}</view>
  10. </view>
  11. <view class="command-time">{{ tools.formatTime(item.ctime) }}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <i-load-more :tip="isLoading ? '正在加载 ...' : '没有更多信息啦'" :loading="isLoading" />
  16. </view>
  17. </template>
  18. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  19. <script>
  20. import noMore from '@/component/nomore/nomore';
  21. import iLoadMore from '@/component/iview/load-more/index';
  22. // pages/commandList/commandList.js
  23. var config = require('../../common/config.js');
  24. var http = require('../../common/http.js');
  25. var common = require('../../common/common.js');
  26. var storage = require('../../common/storage.js');
  27. const LIMT_PAGE = 20;
  28. export default {
  29. components: {
  30. noMore,
  31. iLoadMore
  32. },
  33. data() {
  34. return {
  35. isLoading: false,
  36. macid: '',
  37. commandLabel: {
  38. CLOSERELAY: '断开油电',
  39. OPENRELAY: '恢复油电',
  40. SAFEON: '设备设防',
  41. SAFEOFF: '设备撤防',
  42. LOCATION: '立即定位',
  43. RESTART: '设备重启',
  44. RESET: '恢复出厂设置',
  45. UPTIME: '调整上报间隔',
  46. OPENBUZZER: '打开蜂鸣器',
  47. CLOSEBUZZER: '关闭蜂鸣器',
  48. SETLOWVOLTAGE: '设置休眠电压'
  49. },
  50. commandList: [],
  51. start_page: 1,
  52. limit_page: LIMT_PAGE
  53. };
  54. },
  55. /**
  56. * 生命周期函数--监听页面加载
  57. */
  58. onLoad: function (options) {
  59. if (!options.macid) {
  60. uni.navigateBack({
  61. delta: 1
  62. });
  63. }
  64. this.setData({
  65. macid: options.macid
  66. });
  67. this.refreshLoadCommandList();
  68. },
  69. /**
  70. * 生命周期函数--监听页面初次渲染完成
  71. */
  72. onReady: function () {},
  73. /**
  74. * 生命周期函数--监听页面显示
  75. */
  76. onShow: function () {},
  77. /**
  78. * 生命周期函数--监听页面隐藏
  79. */
  80. onHide: function () {},
  81. /**
  82. * 生命周期函数--监听页面卸载
  83. */
  84. onUnload: function () {},
  85. /**
  86. * 页面相关事件处理函数--监听用户下拉动作
  87. */
  88. onPullDownRefresh: function () {
  89. this.refreshLoadCommandList();
  90. },
  91. /**
  92. * 页面上拉触底事件的处理函数
  93. */
  94. onReachBottom: function () {
  95. if (this.isLoading) {
  96. return;
  97. }
  98. this.setData({
  99. isLoading: true
  100. });
  101. this.start_page++;
  102. //common.loading()
  103. this.loadCommandList();
  104. },
  105. /**
  106. * 用户点击右上角分享
  107. */
  108. onShareAppMessage: function () {},
  109. methods: {
  110. refreshLoadCommandList: function () {
  111. if (this.isLoading) {
  112. return;
  113. }
  114. this.setData({
  115. commandList: [],
  116. isLoading: true
  117. });
  118. common.loading();
  119. this.limit_page = LIMT_PAGE;
  120. this.start_page = 1;
  121. this.loadCommandList();
  122. },
  123. loadCommandList: function () {
  124. const pData = {
  125. size: this.limit_page,
  126. page: this.start_page,
  127. macid: this.macid
  128. };
  129. http.postApi(config.API_BATTERY_COMMAND_LIST, pData, (resp) => {
  130. uni.hideLoading();
  131. uni.stopPullDownRefresh();
  132. if (resp.data.code === 200) {
  133. let commandList = this.commandList;
  134. commandList.push.apply(commandList, resp.data.data.list);
  135. this.setData({
  136. commandList: commandList,
  137. isLoading: false
  138. });
  139. } else {
  140. common.simpleToast(resp.data.msg);
  141. }
  142. });
  143. }
  144. }
  145. };
  146. </script>
  147. <style>
  148. @import './commandList.css';
  149. </style>