willExpireDevice.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <template>
  2. <view class="container">
  3. <view class="batterylist-container">
  4. <view v-if="search_type != 4" class="battery-item" v-for="(item, index) in deviceList" :key="index">
  5. <view class="batter-info-group flex-row" @tap="bindCredit" :data-index="index">
  6. <view style="width: calc(100% - 145rpx); padding-left: 23rpx">
  7. <view class="battery-text">{{ $t('编号')+':'+item.mac_id }}</view>
  8. <view class="battery-text red-text">{{ $t('过期时间')+':'+tools.formatTime(item.expire_time) }}</view>
  9. </view>
  10. </view>
  11. <view class="battery-text battery-credit flex-row" @tap="bindCredit" :data-index="index">{{$t('')}}续费</view>
  12. </view>
  13. </view>
  14. <i-load-more :tip="isLoading ? $t('正在加载...') : $t('没有更多信息啦~')" :loading="isLoading" />
  15. </view>
  16. </template>
  17. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  18. <script>
  19. import noMore from '@/component/nomore/nomore';
  20. import iDrawer from '@/component/iview/drawer/index';
  21. import iCollapse from '@/component/iview/collapse/index';
  22. import iCollapseItem from '@/component/iview/collapse-item/index';
  23. import iLoadMore from '@/component/iview/load-more/index';
  24. import comEleQuantity from '@/component/comEleQuantity/comEleQuantity';
  25. // pages/willExpire/willExpireDevice.js
  26. // pages/device/device.js
  27. var config = require('../../common/config.js');
  28. var http = require('../../common/http.js');
  29. var common = require('../../common/common.js');
  30. var storage = require('../../common/storage.js');
  31. const LIMT_PAGE = 10;
  32. export default {
  33. components: {
  34. noMore,
  35. iDrawer,
  36. iCollapse,
  37. iCollapseItem,
  38. iLoadMore,
  39. comEleQuantity
  40. },
  41. data() {
  42. return {
  43. isLoading: false,
  44. isShowShopContainer: false,
  45. iconList: [],
  46. userInfo: {},
  47. selectedShopInfo: {},
  48. deviceList: [],
  49. start_page: 1,
  50. limit_page: LIMT_PAGE,
  51. search_type: 0,
  52. showSelectBtn: false,
  53. selectedAll: false,
  54. selectedNum: 0,
  55. all_count: 0,
  56. online_count: 0,
  57. offline_count: 0,
  58. expire_count: 0,
  59. groupTreeList: [],
  60. groupList: [],
  61. seach_value: '',
  62. search: ''
  63. };
  64. },
  65. /**
  66. * 生命周期函数--监听页面加载
  67. */
  68. onLoad: function (options) {
  69. uni.setNavigationBarTitle({
  70. title: this.$t('即将到期')
  71. });
  72. const selectedShopInfo = storage.getSelectedShopInfo();
  73. if (selectedShopInfo) {
  74. this.setData({
  75. selectedShopInfo: selectedShopInfo
  76. });
  77. }
  78. this.loadIconList();
  79. this.loadUserInfo();
  80. },
  81. /**
  82. * 生命周期函数--监听页面显示
  83. */
  84. onShow: function () {
  85. const is_fresh = storage.getRefreshDeviceoPage();
  86. if (is_fresh) {
  87. this.loadUserInfo();
  88. storage.setRefreshDeviceoPage(false);
  89. }
  90. },
  91. /**
  92. * 用户点击右上角分享
  93. */
  94. onShareAppMessage: function () {},
  95. /**
  96. * 页面相关事件处理函数--监听用户下拉动作
  97. */
  98. onPullDownRefresh: function () {
  99. console.log('dd');
  100. this.refreshLoadDeviceList();
  101. },
  102. /**
  103. * 页面上拉触底事件的处理函数
  104. */
  105. onReachBottom: function () {
  106. if (this.isLoading) {
  107. return;
  108. }
  109. this.setData({
  110. isLoading: true
  111. });
  112. this.start_page++;
  113. //common.loading()
  114. this.loadDeviceList();
  115. },
  116. methods: {
  117. handleCloseShopContainer: function () {
  118. this.setData({
  119. isShowShopContainer: false
  120. });
  121. },
  122. handleShowShopContainer: function () {
  123. this.setData({
  124. isShowShopContainer: true
  125. });
  126. },
  127. bindClickMainShop: function () {
  128. if (this.selectedShopInfo == {}) {
  129. return;
  130. }
  131. this.setData({
  132. search: '',
  133. seach_value: '',
  134. selectedShopInfo: {}
  135. });
  136. this.refreshLoadDeviceList();
  137. },
  138. loadIconList: function () {
  139. this.iconList = storage.getIconList();
  140. if (!this.iconList) {
  141. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  142. if (resp.data.code === 200) {
  143. storage.setIconList(resp.data.data.list);
  144. this.setData({
  145. iconList: resp.data.data.list
  146. });
  147. } else {
  148. common.simpleToast(this,resp.data.msg);
  149. }
  150. });
  151. } else {
  152. this.setData({
  153. iconList: this.iconList
  154. });
  155. }
  156. },
  157. loadUserInfo: function () {
  158. const userInfo = storage.getUserInfo();
  159. if (!userInfo) {
  160. http.postApi(config.API_USER_INFO, {}, (resp) => {
  161. if (resp.data.code === 200) {
  162. storage.setUserInfo(resp.data.data);
  163. this.setData({
  164. userInfo: resp.data.data
  165. });
  166. this.refreshLoadDeviceList();
  167. /*this.setData({
  168. shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
  169. })*/
  170. } else {
  171. common.simpleToast(this,resp.data.msg);
  172. }
  173. });
  174. } else {
  175. this.setData({
  176. userInfo: userInfo
  177. });
  178. this.refreshLoadDeviceList();
  179. }
  180. },
  181. loadChildrenDevice: function (e) {
  182. this.setData({
  183. search: '',
  184. seach_value: '',
  185. selectedShopInfo: e.currentTarget.dataset.data
  186. });
  187. storage.setSelectedShopInfo(e.currentTarget.dataset.data);
  188. this.refreshLoadDeviceList();
  189. },
  190. refreshLoadDeviceList: function () {
  191. if (this.isLoading) {
  192. return;
  193. }
  194. this.setData({
  195. deviceList: [],
  196. isLoading: true
  197. });
  198. common.loading(this);
  199. this.limit_page = LIMT_PAGE;
  200. this.start_page = 1;
  201. this.loadDeviceList();
  202. },
  203. loadDeviceList: function () {
  204. const that = this;
  205. const pData = {
  206. size: that.limit_page,
  207. page: that.start_page
  208. };
  209. http.postApi(config.API_RENEW_LIST, pData, (resp) => {
  210. uni.hideLoading();
  211. uni.stopPullDownRefresh();
  212. if (resp.data.code === 200) {
  213. let deviceList = that.deviceList;
  214. deviceList.push.apply(deviceList, resp.data.data.list);
  215. that.setData({
  216. deviceList: deviceList,
  217. isLoading: false
  218. });
  219. } else {
  220. common.simpleToast(that,resp.data.msg);
  221. }
  222. });
  223. },
  224. navigatorToPage: function (e) {
  225. const page = e.currentTarget.dataset.page;
  226. if (!page) {
  227. return;
  228. }
  229. uni.navigateTo({
  230. url: page
  231. });
  232. },
  233. handleReturn: function () {
  234. uni.navigateBack({
  235. delta: 1
  236. });
  237. },
  238. bindCredit: function (e) {
  239. const index = e.currentTarget.dataset.index;
  240. const deviceInfo = this.deviceList[index];
  241. uni.navigateTo({
  242. url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
  243. success: function (res) {},
  244. fail: function (res) {},
  245. complete: function (res) {}
  246. });
  247. }
  248. }
  249. };
  250. </script>
  251. <style>
  252. @import './willExpireDevice.css';
  253. </style>