commandList.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <!-- myPages/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 ? $t('发送成功') : $t('发送失败') }}</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 ? $t('正在加载...') : $t('没有更多信息啦~')" :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. // myPages/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: this.$t('断开油电'),
  39. OPENRELAY: this.$t('恢复油电'),
  40. SAFEON: this.$t('设备设防'),
  41. SAFEOFF: this.$t('设备撤防'),
  42. LOCATION: this.$t('立即定位'),
  43. RESTART: this.$t('设备重启'),
  44. RESET: this.$t('恢复出厂设置'),
  45. UPTIME: this.$t('调整上报间隔'),
  46. OPENBUZZER: this.$t('打开蜂鸣器'),
  47. CLOSEBUZZER: this.$t('关闭蜂鸣器'),
  48. SETLOWVOLTAGE: this.$t('设置休眠电压')
  49. },
  50. commandList: [],
  51. start_page: 1,
  52. limit_page: LIMT_PAGE
  53. };
  54. },
  55. /**
  56. * 生命周期函数--监听页面加载
  57. */
  58. onLoad: function (options) {
  59. uni.setNavigationBarTitle({
  60. title: this.$t('记录')
  61. });
  62. if (!options.macid) {
  63. uni.navigateBack({
  64. delta: 1
  65. });
  66. }
  67. this.setData({
  68. macid: options.macid
  69. });
  70. this.refreshLoadCommandList();
  71. },
  72. /**
  73. * 生命周期函数--监听页面初次渲染完成
  74. */
  75. onReady: function () {},
  76. /**
  77. * 生命周期函数--监听页面显示
  78. */
  79. onShow: function () {},
  80. /**
  81. * 生命周期函数--监听页面隐藏
  82. */
  83. onHide: function () {},
  84. /**
  85. * 生命周期函数--监听页面卸载
  86. */
  87. onUnload: function () {},
  88. /**
  89. * 页面相关事件处理函数--监听用户下拉动作
  90. */
  91. onPullDownRefresh: function () {
  92. this.refreshLoadCommandList();
  93. },
  94. /**
  95. * 页面上拉触底事件的处理函数
  96. */
  97. onReachBottom: function () {
  98. if (this.isLoading) {
  99. return;
  100. }
  101. this.setData({
  102. isLoading: true
  103. });
  104. this.start_page++;
  105. //common.loading()
  106. this.loadCommandList();
  107. },
  108. /**
  109. * 用户点击右上角分享
  110. */
  111. onShareAppMessage: function () {},
  112. methods: {
  113. refreshLoadCommandList: function () {
  114. if (this.isLoading) {
  115. return;
  116. }
  117. this.setData({
  118. commandList: [],
  119. isLoading: true
  120. });
  121. common.loading(this);
  122. this.limit_page = LIMT_PAGE;
  123. this.start_page = 1;
  124. this.loadCommandList();
  125. },
  126. loadCommandList: function () {
  127. const pData = {
  128. size: this.limit_page,
  129. page: this.start_page,
  130. macid: this.macid
  131. };
  132. http.postApi(config.API_BATTERY_COMMAND_LIST, pData, (resp) => {
  133. uni.hideLoading();
  134. uni.stopPullDownRefresh();
  135. if (resp.data.code === 200) {
  136. let commandList = this.commandList;
  137. commandList.push.apply(commandList, resp.data.data.list);
  138. this.setData({
  139. commandList: commandList,
  140. isLoading: false
  141. });
  142. } else {
  143. common.simpleToast(this,resp.data.msg);
  144. }
  145. });
  146. }
  147. }
  148. };
  149. </script>
  150. <style>
  151. @import './commandList.css';
  152. </style>