|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <template>
- <view class="cented">
- <view class="header">
- <view style="width: 690rpx;margin: 0 auto;margin-top: 20rpx;">
- <u-search @search='shecs()' :show-action='false' placeholder="请输入设备编号或领用人进行搜索" v-model="imei">
- </u-search>
- </view>
-
- <view class="tab-box">
- <u-tabs-swiper ref="tabs" font-size="30" :bold="true" swiper-width="700" :current="activeClass"
- @change="clocktab()" inactive-color="#b1b1b1" active-color="#008ef2" :list="tablist"
- :is-scroll="true">
- </u-tabs-swiper>
- </view>
- </view>
-
-
- <view class="infoet">
- <view class="infoviewbox" v-for="(item,index) in newListdata" :key="index">
- <view class="infobox1">
- <view class="box1-zuo">领用人:{{item.accName || '--'}}</view>
- <view class="box1-you">
- <view class="you1" v-if="item.electricity>20">
- <view class="youimg" :style="{ height: item.electricity + '%' }"></view>
- </view>
- <view class="you11" v-if="item.electricity<20">
- <view class="youimg" :style="{ height: item.electricity + '%' }"></view>
- </view>
- <view class="you2">电量:
- <text v-if="item.electricity>20">{{item.electricity}}%</text>
- <text v-if="item.electricity<20" style="color: red;">{{item.electricity}}%</text>
- </view>
-
- <view class="you3">
- <image v-if="item.signalDevice==''" class="youimg"
- src="../../../static/images/newimg/xinhao0.png" mode=""></image>
- <image v-if="item.signalDevice<20 && item.signalDevice>0" class="youimg"
- src="../../../static/images/newimg/xinhao1.png" mode=""></image>
- <image v-if="item.signalDevice<50 && item.signalDevice>20" class="youimg"
- src="../../../static/images/newimg/xinhao2.png" mode=""></image>
- <image v-if="item.signalDevice<70 && item.signalDevice>50" class="youimg"
- src="../../../static/images/newimg/xinhao3.png" mode=""></image>
- <image v-if="item.signalDevice<90 && item.signalDevice>70" class="youimg"
- src="../../../static/images/newimg/xinhao4.png" mode=""></image>
- <image v-if="item.signalDevice<=100 && item.signalDevice>90" class="youimg"
- src="../../../static/images/newimg/xinhao5.png" mode=""></image>
- </view>
- <view class="you4" v-if="item.signalDevice=='' ">信号:0</view>
- <view class="you4" v-else>信号:{{item.signalDevice}}</view>
- </view>
-
- </view>
- <view class="infobox2">
- <view class="box2-zuo">设备编号</view>
- <view class="box2-you">{{item.imei}}</view>
- </view>
- <view class="infobox2">
- <view class="box2-zuo">录音状态</view>
- <view class="box2-you" v-if="item.audioStatus=='false'">关闭</view>
- <view class="box2-you" v-if="item.audioStatus=='true'">开启</view>
- <view class="box2-you" v-if="!item.audioStatus">关闭</view>
- </view>
- <view class="infobox2">
- <view class="box2-zuo">待上传</view>
- <template v-if="item.fileCount && item.fileCount > 0">
- <text class="stayupload box2-you">{{ item.fileCount }}条</text>
- </template>
- <template v-else>
- <text class="box2-you">0</text>
- </template>
- <!-- <view class="box2-you" v-if="item.audioUploadStatus=='false'">无上传</view>
- <view class="box2-you" v-if="item.audioUploadStatus=='true'">上传中</view>
- <view class="box2-you" v-if="item.audioUploadStatus=='' ">无上传</view> -->
- </view>
- <view class="infobox2">
- <view class="box2-zuo">更新时间</view>
- <view class="box2-you">{{item.updateTime}}</view>
- </view>
- <view class="infobox2" v-if="activeClass==1">
- <view class="box2-zuo">最后在线时间</view>
- <view class="box2-you" style="font-size: 28rpx;color: red;">{{item.updateTime | formatDate}}</view>
- </view>
- </view>
- </view>
-
-
-
- </view>
- </template>
-
- <script>
- var util = require("../../../utils/util.js");
- export default {
- data() {
- return {
- tablist: [{
- name: "全部(0)",
- },
- {
- name: "在线(0)",
- },
- {
- name: "低电量(0)",
- },
- {
- name: "今日活跃(0)",
- },
- {
- name: "离线(0)",
- }
- ],
- activeClass: 0,
- pageNum: 1,
- pageSize: 20,
- imei: "",
- orgcode: "",
- newListdata: [],
- buildingID: '',
- jump: ''
- };
- },
- onReachBottom() {
- this.pageNum += 1;
- this.init()
- },
- onPullDownRefresh() {
- this.init()
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- },
- onLoad(options) {
- if (options.active) {
- this.activeClass = options.active
- } else {
- this.activeClass = 0
- }
- this.newListdata = []
- this.pageNum = 1;
- this.pageSize = 20;
- this.init()
- },
- filters: {
- formatDate: (dateTimeStamp) => {
- var newDate = new Date(dateTimeStamp.replace(/-/g, '/')).getTime();
- var minute = 1000 * 60;
- var hour = minute * 60;
- var day = hour * 24;
- var halfamonth = day * 15;
- var month = day * 30;
- var now = new Date().getTime();
- var diffValue = now - newDate;
- if (diffValue < 0) {
- return;
- }
- var monthC = diffValue / month;
- var weekC = diffValue / (7 * day);
- var dayC = diffValue / day;
- var hourC = diffValue / hour;
- var minC = diffValue / minute;
- var result = '';
- if (weekC >= 1) {
- result = "1周前";
- } else if (dayC >= 1) {
- result = "" + parseInt(dayC) + "天前";
- } else if (hourC >= 1) {
- result = "" + parseInt(hourC) + "小时前";
- } else if (minC >= 1) {
- result = "" + parseInt(minC) + "分钟前";
- } else {
- result = "刚刚";
- }
- return result;
- }
- },
- methods: {
- shecs() {
- this.newListdata = []
- this.pageNum = 1;
- this.pageSize = 20;
- this.init()
- },
- // tab
- clocktab(index) {
- this.activeClass = index;
- this.newListdata = []
- this.pageNum = 1;
- this.pageSize = 20;
- this.init()
- },
- init() {
- this.buildingID = uni.getStorageSync('buildingID').id;
- const parames = {
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- query: {
- imei: this.imei,
- onLine: this.activeClass,
- propertyId: this.buildingID,
- orderType: 1,
- accountId: uni.getStorageSync('weapp_session_userInfo_data').accountId,
- }
- }
-
- if (this.activeClass == 0) {
- parames.query.onLine = null
- }
- this.$u.post("/equipment/apiFindByPage", parames).then(res => {
- this.tablist[0].name = "全部(" + res.allCount + ")";
- this.tablist[1].name = "在线(" + res.eqOnLineCount + ")";
- this.tablist[2].name = "低电量(" + res.lowElectricityCount + ")";
- this.tablist[3].name = "今日活跃(" + res.activeCount + ")";
- this.tablist[4].name = "离线(" + res.eqOffLineCount + ")";
- if (res.obj.list.results == null) {
- if (this.pageNum == 1) {
- return
- } else {
- uni.showToast({
- title: '已经到底了!',
- icon: 'none',
- duration: 2000
- });
- }
- } else {
- res.obj.list.results.forEach(item => {
- if (item.onLine == 0) {
- item.signalDevice = 0
- }
-
- if (item.electricity == '') {
- item.electricity = 0
- }
- if (item.electricity > 100) {
- item.electricity = 100
- }
- let num = this.ascformatDate(item.updateTime)
- if (num > 12) {
- item.electricity = 0
- }
-
- })
-
- if (this.pageNum == 1) {
- this.newListdata = res.obj.list.results
- } else {
- this.newListdata = [...this.newListdata, ...res.obj.list.results];
- }
- }
- })
- },
- ascformatDate(dateTimeStamp) {
- let newDate = new Date(dateTimeStamp.replace(/-/g, '/')).getTime();
- let minute = 1000 * 60;
- let hour = minute * 60;
- let day = hour * 24;
- let halfamonth = day * 15;
- let month = day * 30;
- let now = new Date().getTime();
- let diffValue = now - newDate;
- let result = diffValue / hour;
- return result;
- }
- },
- }
- </script>
-
- <style lang="scss">
- .cented {
- width: 100%;
- min-height: 100vh;
- background: #FFFFFF;
-
- .header {
- position: sticky;
- top: var(--window-top);
- z-index: 999;
- }
- }
-
- .tab-box {
- width: 100%;
- .tab-item-wrap {
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- justify-content: space-around;
- font-size: 4vw;
- background: linear-gradient(180deg, #e5e5e5, #e5e5e5, rgba(229, 229, 229, 0)) bottom left no-repeat;
- background-size: 100% 1px;
- color: #959dad;
- }
- }
-
- .bottom {
- color: #209fff;
- position: relative;
- }
-
- .bottomLine {
- position: absolute;
- width: 156rpx;
- height: 6rpx;
- top: 80rpx;
- background-color: #298dff;
- border-radius: 8rpx 8rpx 0rpx 0rpx;
- left: 16rpx;
- }
-
- .infoet {
- width: 100%;
-
- .infoviewbox {
- width: 690rpx;
- padding-bottom: 20rpx;
- background: #FFFFFF;
- box-shadow: 0px 0px 8rpx 6rpx rgba(0, 0, 0, 0.06);
- border-radius: 20rpx;
- margin: 0 auto;
- margin-top: 20rpx;
-
- .infobox1 {
- width: 652rpx;
- height: 88rpx;
- border-bottom: 1rpx solid #D9D9D9;
- margin: 0 auto;
- display: flex;
-
- .box1-zuo {
- width: 50%;
- height: 100%;
- font-size: 30rpx;
- color: #333333;
- line-height: 88rpx;
- }
-
- .box1-you {
- width: 50%;
- height: 100%;
- display: flex;
- align-items: center;
-
- .you1 {
- width: 20rpx;
- height: 28rpx;
- margin-left: 32rpx;
- background-image: url(../../../static/images/newimg/dianliang.png);
- background-size: 100% 100%;
- display: flex;
- flex-direction: column-reverse;
-
- .youimg {
- width: 100%;
- background-color: #333333;
- }
- }
-
- .you11 {
- width: 20rpx;
- height: 28rpx;
- margin-left: 32rpx;
- background-image: url(../../../static/images/newimg/dianliang456.png);
- background-size: 100% 100%;
- display: flex;
- flex-direction: column-reverse;
-
- .youimg {
- width: 100%;
- background-color: red;
- }
- }
-
- .you2 {
- width: 114rpx;
- height: 30rpx;
- font-size: 20rpx;
- color: #333333;
- margin-left: 6rpx;
- }
-
- .you22 {
- width: 114rpx;
- height: 30rpx;
- font-size: 20rpx;
- color: red;
- margin-left: 6rpx;
- }
-
- .you3 {
- width: 30rpx;
- height: 28rpx;
- margin-left: 16rpx;
-
- .youimg {
- display: block;
- width: 30rpx;
- height: 28rpx;
- }
- }
-
- .you4 {
- width: 100rpx;
- height: 30rpx;
- font-size: 20rpx;
- color: #333333;
- margin-left: 6rpx;
- }
-
- }
- }
-
- .infobox2 {
- width: 652rpx;
- height: 33rpx;
- margin: 0 auto;
- display: flex;
- margin-top: 19rpx;
-
- .box2-zuo {
- width: 40%;
- height: 100%;
- line-height: 33rpx;
- font-size: 24rpx;
- color: #333333;
- }
-
- .box2-you {
- width: 60%;
- height: 100%;
- line-height: 33rpx;
- font-size: 24rpx;
- color: #333333;
-
- .stayupload {
- display: block;
- color: #F41313;
- }
- }
- }
- }
- }
- </style>
|