|
@@ -18,8 +18,8 @@
|
|
|
<view class="space-name">{{item.spaceName}}</view>
|
|
|
<view class="signal">
|
|
|
<text>{{item.deviceStatus|device2Status}}</text>
|
|
|
- <image v-if="item.deviceBattery<lowBattery" class="img" src="../../../static/img/electricity-r.png" mode="heightFix"></image>
|
|
|
- <image v-else class="img" src="../../../static/img/electricity-g.png" mode="heightFix"></image>
|
|
|
+ <image v-if="item.deviceBattery&&item.deviceBattery<lowBattery" class="img" src="../../../static/img/electricity-r.png" mode="heightFix"></image>
|
|
|
+ <image v-else-if="item.deviceBattery&&item.deviceBattery>=lowBattery" class="img" src="../../../static/img/electricity-g.png" mode="heightFix"></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="vehicleNo">{{item.vehicleNo}}</view>
|
|
@@ -49,18 +49,18 @@
|
|
|
tabCurrent:0,
|
|
|
breakStatus:'',
|
|
|
tabList:[
|
|
|
- {name:'全部',status:''},
{name:'挡板状态',status:'0'},
{name:'低电量',status:'3200_b'},
{name:'低信号',status:'-100_s'}
|
|
|
+ {name:'全部',status:''},
{name:'挡板状态',status:'0'},
{name:'低电量',status:'3200_b'},
{name:'有故障',status:'0'}
|
|
|
],
|
|
|
deviceStatusSelect:false,
|
|
|
deviceStatusList:[
|
|
|
- {value:'0',label:'降板'},
|
|
|
- {value:'1',label:'升板'},
|
|
|
- {value:'2',label:'心跳'},
|
|
|
- {value:'5',label:'车辆入位'},
|
|
|
- {value:'6',label:'车辆出位'},
|
|
|
- {value:'7',label:'复位'},
|
|
|
- {value:'8',label:'逃费'},
|
|
|
- {value:'10',label:'状态上报'},
|
|
|
+ // {value:'0',label:'降板'},
|
|
|
+ // {value:'1',label:'升板'},
|
|
|
+ // {value:'2',label:'心跳'},
|
|
|
+ // {value:'5',label:'车辆入位'},
|
|
|
+ // {value:'6',label:'车辆出位'},
|
|
|
+ // {value:'7',label:'复位'},
|
|
|
+ // {value:'8',label:'逃费'},
|
|
|
+ // {value:'10',label:'状态上报'},
|
|
|
],
|
|
|
deviceStatus:'',
|
|
|
downOption:{
|
|
@@ -86,7 +86,8 @@
|
|
|
},
|
|
|
onLoad(page){
|
|
|
console.log('page',page);
|
|
|
- this.getGeoDeviceStatust()
|
|
|
+ this.getLockDeviceStatust();
|
|
|
+ this.getDeviceLockStatus();
|
|
|
if(page.roadName){
|
|
|
this.roadName = page.roadName;
|
|
|
this.title = page.roadName;
|
|
@@ -141,6 +142,12 @@
|
|
|
this.breakStatus = this.tabList[index].status;
|
|
|
this.refresh();
|
|
|
},
|
|
|
+ deviceStatusSelectConfirm(e){
|
|
|
+ this.deviceStatus =e[0].value;
|
|
|
+ this.tabList[1].name = e[0].label;
|
|
|
+ this.breakStatus = '';
|
|
|
+ this.refresh();
|
|
|
+ },
|
|
|
/*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
|
|
|
upCallback(page) {
|
|
|
// console.log('page',page);
|
|
@@ -177,12 +184,18 @@
|
|
|
refresh(){
|
|
|
this.mescroll.resetUpScroll( );
|
|
|
},
|
|
|
- getGeoDeviceStatust(){
|
|
|
- this.$u.api.geoDeviceStatust().then(res=>{
|
|
|
+ getLockDeviceStatust(){
|
|
|
+ this.$u.api.lockDeviceStatust().then(res=>{
|
|
|
let that = this;
|
|
|
res.data.data.forEach(function(item){
|
|
|
- if(item.dictLabel=='低电量'){that.lowBattery = Number( item.dictValue.split('_')[0] )}
|
|
|
- if(item.dictLabel=='低信号'){that.lowSignal = Number( item.dictValue.split('_')[0] )}
|
|
|
+ if(item.dictLabel=='低电量'){
|
|
|
+ that.lowBattery = Number( item.dictValue.split('_')[0] );
|
|
|
+ that.tabList[2].status= item.dictValue;
|
|
|
+ }
|
|
|
+ if(item.dictLabel=='有故障'){
|
|
|
+ // that.lowSignal = Number( item.dictValue.split('_')[0] );
|
|
|
+ that.tabList[3].status= item.dictValue;
|
|
|
+ }
|
|
|
});
|
|
|
console.log('this.lowBattery',this.lowBattery);
|
|
|
}).catch(()=>{
|
|
@@ -191,12 +204,21 @@
|
|
|
this.mescroll.endErr();
|
|
|
})
|
|
|
},
|
|
|
- deviceStatusSelectConfirm(e){
|
|
|
- this.deviceStatus =e[0].value;
|
|
|
- this.tabList[1].name = e[0].label;
|
|
|
- this.breakStatus = '';
|
|
|
- this.refresh();
|
|
|
- }
|
|
|
+ getDeviceLockStatus(){
|
|
|
+ this.$u.api.deviceLockStatus().then(res=>{
|
|
|
+ let that = this;
|
|
|
+ res.data.data.map(function(currentValue){
|
|
|
+ that.deviceStatusList.push({value:currentValue.dictValue,label:currentValue.dictLabel})
|
|
|
+ // console.log('currentValue',currentValue);
|
|
|
+ });
|
|
|
+ console.log('getDeviceLockStatus',res);
|
|
|
+ console.log('that.deviceStatusList',that.deviceStatusList);
|
|
|
+ }).catch(()=>{
|
|
|
+ console.log('catch');
|
|
|
+ //联网失败, 结束加载
|
|
|
+ this.mescroll.endErr();
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
}
|
|
|
}
|