123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- <template>
- <view class="container">
- <view class="batterylist-container">
- <view v-if="search_type != 4" class="battery-item" v-for="(item, index) in deviceList" :key="index">
- <view class="batter-info-group flex-row" @tap="bindCredit" :data-index="index">
- <view style="width: calc(100% - 145rpx); padding-left: 23rpx">
- <view class="battery-text">编号:{{ item.mac_id }}</view>
- <view class="battery-text red-text">过期时间:{{ tools.formatTime(item.expire_time) }}</view>
- </view>
- </view>
- <view class="battery-text battery-credit flex-row" @tap="bindCredit" :data-index="index">续费</view>
- </view>
- </view>
- <i-load-more :tip="isLoading ? '正在加载 ...' : '没有更多信息啦'" :loading="isLoading" />
- </view>
- </template>
- <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
- <script>
- import noMore from '@/component/nomore/nomore';
- import iDrawer from '@/component/iview/drawer/index';
- import iCollapse from '@/component/iview/collapse/index';
- import iCollapseItem from '@/component/iview/collapse-item/index';
- import iLoadMore from '@/component/iview/load-more/index';
- import comEleQuantity from '@/component/comEleQuantity/comEleQuantity';
- // pages/willExpire/willExpireDevice.js
- // pages/device/device.js
- var config = require('../../common/config.js');
- var http = require('../../common/http.js');
- var common = require('../../common/common.js');
- var storage = require('../../common/storage.js');
- const LIMT_PAGE = 10;
- export default {
- components: {
- noMore,
- iDrawer,
- iCollapse,
- iCollapseItem,
- iLoadMore,
- comEleQuantity
- },
- data() {
- return {
- isLoading: false,
- isShowShopContainer: false,
- iconList: [],
- userInfo: {},
- selectedShopInfo: {},
- deviceList: [],
- start_page: 1,
- limit_page: LIMT_PAGE,
- search_type: 0,
- showSelectBtn: false,
- selectedAll: false,
- selectedNum: 0,
- all_count: 0,
- online_count: 0,
- offline_count: 0,
- expire_count: 0,
- groupTreeList: [],
- groupList: [],
- seach_value: '',
- search: ''
- };
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- const selectedShopInfo = storage.getSelectedShopInfo();
- if (selectedShopInfo) {
- this.setData({
- selectedShopInfo: selectedShopInfo
- });
- }
- this.loadIconList();
- this.loadUserInfo();
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- const is_fresh = storage.getRefreshDeviceoPage();
- if (is_fresh) {
- this.loadUserInfo();
- storage.setRefreshDeviceoPage(false);
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- console.log('dd');
- this.refreshLoadDeviceList();
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- if (this.isLoading) {
- return;
- }
- this.setData({
- isLoading: true
- });
- this.start_page++;
- //common.loading()
- this.loadDeviceList();
- },
- methods: {
- handleCloseShopContainer: function () {
- this.setData({
- isShowShopContainer: false
- });
- },
- handleShowShopContainer: function () {
- this.setData({
- isShowShopContainer: true
- });
- },
- bindClickMainShop: function () {
- if (this.selectedShopInfo == {}) {
- return;
- }
- this.setData({
- search: '',
- seach_value: '',
- selectedShopInfo: {}
- });
- this.refreshLoadDeviceList();
- },
- loadIconList: function () {
- this.iconList = storage.getIconList();
- if (!this.iconList) {
- http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
- if (resp.data.code === 200) {
- storage.setIconList(resp.data.data.list);
- this.setData({
- iconList: resp.data.data.list
- });
- } else {
- common.simpleToast(resp.data.msg);
- }
- });
- } else {
- this.setData({
- iconList: this.iconList
- });
- }
- },
- loadUserInfo: function () {
- const userInfo = storage.getUserInfo();
- if (!userInfo) {
- http.postApi(config.API_USER_INFO, {}, (resp) => {
- if (resp.data.code === 200) {
- storage.setUserInfo(resp.data.data);
- this.setData({
- userInfo: resp.data.data
- });
- this.refreshLoadDeviceList();
- /*this.setData({
- shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
- })*/
- } else {
- common.simpleToast(resp.data.msg);
- }
- });
- } else {
- this.setData({
- userInfo: userInfo
- });
- this.refreshLoadDeviceList();
- }
- },
- loadChildrenDevice: function (e) {
- this.setData({
- search: '',
- seach_value: '',
- selectedShopInfo: e.currentTarget.dataset.data
- });
- storage.setSelectedShopInfo(e.currentTarget.dataset.data);
- this.refreshLoadDeviceList();
- },
- refreshLoadDeviceList: function () {
- if (this.isLoading) {
- return;
- }
- this.setData({
- deviceList: [],
- isLoading: true
- });
- common.loading();
- this.limit_page = LIMT_PAGE;
- this.start_page = 1;
- this.loadDeviceList();
- },
- loadDeviceList: function () {
- const that = this;
- const pData = {
- size: that.limit_page,
- page: that.start_page
- };
- http.postApi(config.API_RENEW_LIST, pData, (resp) => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if (resp.data.code === 200) {
- let deviceList = that.deviceList;
- deviceList.push.apply(deviceList, resp.data.data.list);
- that.setData({
- deviceList: deviceList,
- isLoading: false
- });
- } else {
- common.simpleToast(resp.data.msg);
- }
- });
- },
- navigatorToPage: function (e) {
- const page = e.currentTarget.dataset.page;
- if (!page) {
- return;
- }
- uni.navigateTo({
- url: page
- });
- },
- handleReturn: function () {
- uni.navigateBack({
- delta: 1
- });
- },
- bindCredit: function (e) {
- const index = e.currentTarget.dataset.index;
- const deviceInfo = this.deviceList[index];
- uni.navigateTo({
- url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
- success: function (res) {},
- fail: function (res) {},
- complete: function (res) {}
- });
- }
- }
- };
- </script>
- <style>
- @import './willExpireDevice.css';
- </style>
|