willExpireDevice.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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. uni.setNavigationBarTitle({
  86. title: this.$t('即将到期')
  87. });
  88. const is_fresh = storage.getRefreshDeviceoPage();
  89. if (is_fresh) {
  90. this.loadUserInfo();
  91. storage.setRefreshDeviceoPage(false);
  92. }
  93. },
  94. /**
  95. * 用户点击右上角分享
  96. */
  97. onShareAppMessage: function () {},
  98. /**
  99. * 页面相关事件处理函数--监听用户下拉动作
  100. */
  101. onPullDownRefresh: function () {
  102. console.log('dd');
  103. this.refreshLoadDeviceList();
  104. },
  105. /**
  106. * 页面上拉触底事件的处理函数
  107. */
  108. onReachBottom: function () {
  109. if (this.isLoading) {
  110. return;
  111. }
  112. this.setData({
  113. isLoading: true
  114. });
  115. this.start_page++;
  116. //common.loading()
  117. this.loadDeviceList();
  118. },
  119. methods: {
  120. handleCloseShopContainer: function () {
  121. this.setData({
  122. isShowShopContainer: false
  123. });
  124. },
  125. handleShowShopContainer: function () {
  126. this.setData({
  127. isShowShopContainer: true
  128. });
  129. },
  130. bindClickMainShop: function () {
  131. if (this.selectedShopInfo == {}) {
  132. return;
  133. }
  134. this.setData({
  135. search: '',
  136. seach_value: '',
  137. selectedShopInfo: {}
  138. });
  139. this.refreshLoadDeviceList();
  140. },
  141. loadIconList: function () {
  142. this.iconList = storage.getIconList();
  143. if (!this.iconList) {
  144. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  145. if (resp.data.code === 200) {
  146. storage.setIconList(resp.data.data.list);
  147. this.setData({
  148. iconList: resp.data.data.list
  149. });
  150. } else {
  151. common.simpleToast(this,resp.data.msg);
  152. }
  153. });
  154. } else {
  155. this.setData({
  156. iconList: this.iconList
  157. });
  158. }
  159. },
  160. loadUserInfo: function () {
  161. const userInfo = storage.getUserInfo();
  162. if (!userInfo) {
  163. http.postApi(config.API_USER_INFO, {}, (resp) => {
  164. if (resp.data.code === 200) {
  165. storage.setUserInfo(resp.data.data);
  166. this.setData({
  167. userInfo: resp.data.data
  168. });
  169. this.refreshLoadDeviceList();
  170. /*this.setData({
  171. shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
  172. })*/
  173. } else {
  174. common.simpleToast(this,resp.data.msg);
  175. }
  176. });
  177. } else {
  178. this.setData({
  179. userInfo: userInfo
  180. });
  181. this.refreshLoadDeviceList();
  182. }
  183. },
  184. loadChildrenDevice: function (e) {
  185. this.setData({
  186. search: '',
  187. seach_value: '',
  188. selectedShopInfo: e.currentTarget.dataset.data
  189. });
  190. storage.setSelectedShopInfo(e.currentTarget.dataset.data);
  191. this.refreshLoadDeviceList();
  192. },
  193. refreshLoadDeviceList: function () {
  194. if (this.isLoading) {
  195. return;
  196. }
  197. this.setData({
  198. deviceList: [],
  199. isLoading: true
  200. });
  201. common.loading(this);
  202. this.limit_page = LIMT_PAGE;
  203. this.start_page = 1;
  204. this.loadDeviceList();
  205. },
  206. loadDeviceList: function () {
  207. const that = this;
  208. const pData = {
  209. size: that.limit_page,
  210. page: that.start_page
  211. };
  212. http.postApi(config.API_RENEW_LIST, pData, (resp) => {
  213. uni.hideLoading();
  214. uni.stopPullDownRefresh();
  215. if (resp.data.code === 200) {
  216. let deviceList = that.deviceList;
  217. deviceList.push.apply(deviceList, resp.data.data.list);
  218. that.setData({
  219. deviceList: deviceList,
  220. isLoading: false
  221. });
  222. } else {
  223. common.simpleToast(that,resp.data.msg);
  224. }
  225. });
  226. },
  227. navigatorToPage: function (e) {
  228. const page = e.currentTarget.dataset.page;
  229. if (!page) {
  230. return;
  231. }
  232. uni.navigateTo({
  233. url: page
  234. });
  235. },
  236. handleReturn: function () {
  237. uni.navigateBack({
  238. delta: 1
  239. });
  240. },
  241. bindCredit: function (e) {
  242. const index = e.currentTarget.dataset.index;
  243. const deviceInfo = this.deviceList[index];
  244. uni.navigateTo({
  245. url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
  246. success: function (res) {},
  247. fail: function (res) {},
  248. complete: function (res) {}
  249. });
  250. }
  251. }
  252. };
  253. </script>
  254. <style>
  255. @import './willExpireDevice.css';
  256. </style>