willExpireDevice.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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">编号:{{ item.mac_id }}</view>
  8. <view class="battery-text red-text">过期时间:{{ tools.formatTime(item.expire_time) }}</view>
  9. </view>
  10. </view>
  11. <view class="battery-text battery-credit flex-row" @tap="bindCredit" :data-index="index">续费</view>
  12. </view>
  13. </view>
  14. <i-load-more :tip="isLoading ? '正在加载 ...' : '没有更多信息啦'" :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. const selectedShopInfo = storage.getSelectedShopInfo();
  70. if (selectedShopInfo) {
  71. this.setData({
  72. selectedShopInfo: selectedShopInfo
  73. });
  74. }
  75. this.loadIconList();
  76. this.loadUserInfo();
  77. },
  78. /**
  79. * 生命周期函数--监听页面显示
  80. */
  81. onShow: function () {
  82. const is_fresh = storage.getRefreshDeviceoPage();
  83. if (is_fresh) {
  84. this.loadUserInfo();
  85. storage.setRefreshDeviceoPage(false);
  86. }
  87. },
  88. /**
  89. * 用户点击右上角分享
  90. */
  91. onShareAppMessage: function () {},
  92. /**
  93. * 页面相关事件处理函数--监听用户下拉动作
  94. */
  95. onPullDownRefresh: function () {
  96. console.log('dd');
  97. this.refreshLoadDeviceList();
  98. },
  99. /**
  100. * 页面上拉触底事件的处理函数
  101. */
  102. onReachBottom: function () {
  103. if (this.isLoading) {
  104. return;
  105. }
  106. this.setData({
  107. isLoading: true
  108. });
  109. this.start_page++;
  110. //common.loading()
  111. this.loadDeviceList();
  112. },
  113. methods: {
  114. handleCloseShopContainer: function () {
  115. this.setData({
  116. isShowShopContainer: false
  117. });
  118. },
  119. handleShowShopContainer: function () {
  120. this.setData({
  121. isShowShopContainer: true
  122. });
  123. },
  124. bindClickMainShop: function () {
  125. if (this.selectedShopInfo == {}) {
  126. return;
  127. }
  128. this.setData({
  129. search: '',
  130. seach_value: '',
  131. selectedShopInfo: {}
  132. });
  133. this.refreshLoadDeviceList();
  134. },
  135. loadIconList: function () {
  136. this.iconList = storage.getIconList();
  137. if (!this.iconList) {
  138. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  139. if (resp.data.code === 200) {
  140. storage.setIconList(resp.data.data.list);
  141. this.setData({
  142. iconList: resp.data.data.list
  143. });
  144. } else {
  145. common.simpleToast(resp.data.msg);
  146. }
  147. });
  148. } else {
  149. this.setData({
  150. iconList: this.iconList
  151. });
  152. }
  153. },
  154. loadUserInfo: function () {
  155. const userInfo = storage.getUserInfo();
  156. if (!userInfo) {
  157. http.postApi(config.API_USER_INFO, {}, (resp) => {
  158. if (resp.data.code === 200) {
  159. storage.setUserInfo(resp.data.data);
  160. this.setData({
  161. userInfo: resp.data.data
  162. });
  163. this.refreshLoadDeviceList();
  164. /*this.setData({
  165. shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
  166. })*/
  167. } else {
  168. common.simpleToast(resp.data.msg);
  169. }
  170. });
  171. } else {
  172. this.setData({
  173. userInfo: userInfo
  174. });
  175. this.refreshLoadDeviceList();
  176. }
  177. },
  178. loadChildrenDevice: function (e) {
  179. this.setData({
  180. search: '',
  181. seach_value: '',
  182. selectedShopInfo: e.currentTarget.dataset.data
  183. });
  184. storage.setSelectedShopInfo(e.currentTarget.dataset.data);
  185. this.refreshLoadDeviceList();
  186. },
  187. refreshLoadDeviceList: function () {
  188. if (this.isLoading) {
  189. return;
  190. }
  191. this.setData({
  192. deviceList: [],
  193. isLoading: true
  194. });
  195. common.loading();
  196. this.limit_page = LIMT_PAGE;
  197. this.start_page = 1;
  198. this.loadDeviceList();
  199. },
  200. loadDeviceList: function () {
  201. const that = this;
  202. const pData = {
  203. size: that.limit_page,
  204. page: that.start_page
  205. };
  206. http.postApi(config.API_RENEW_LIST, pData, (resp) => {
  207. uni.hideLoading();
  208. uni.stopPullDownRefresh();
  209. if (resp.data.code === 200) {
  210. let deviceList = that.deviceList;
  211. deviceList.push.apply(deviceList, resp.data.data.list);
  212. that.setData({
  213. deviceList: deviceList,
  214. isLoading: false
  215. });
  216. } else {
  217. common.simpleToast(resp.data.msg);
  218. }
  219. });
  220. },
  221. navigatorToPage: function (e) {
  222. const page = e.currentTarget.dataset.page;
  223. if (!page) {
  224. return;
  225. }
  226. uni.navigateTo({
  227. url: page
  228. });
  229. },
  230. handleReturn: function () {
  231. uni.navigateBack({
  232. delta: 1
  233. });
  234. },
  235. bindCredit: function (e) {
  236. const index = e.currentTarget.dataset.index;
  237. const deviceInfo = this.deviceList[index];
  238. uni.navigateTo({
  239. url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
  240. success: function (res) {},
  241. fail: function (res) {},
  242. complete: function (res) {}
  243. });
  244. }
  245. }
  246. };
  247. </script>
  248. <style>
  249. @import './willExpireDevice.css';
  250. </style>