446 lines
13 KiB
Vue
446 lines
13 KiB
Vue
|
<template>
|
|||
|
<page-meta>
|
|||
|
<navigation-bar :title="$tt('navBar.eventLog')" title-align="center" background-color="#F1F3F9"
|
|||
|
front-color="#000000" />
|
|||
|
</page-meta>
|
|||
|
|
|||
|
<view class="device-log-event">
|
|||
|
<u-sticky>
|
|||
|
<view class="tabs-wrap">
|
|||
|
<u-tabs :list="tabsList" :scrollable="true" lineWidth="60" lineHeight="2" :duration="100"
|
|||
|
:activeStyle="{ fontSize: '36rpx', color: '#486ff2', fontWeight: 'bold' }" lineColor="transparent"
|
|||
|
@click="handleTabsClick">
|
|||
|
</u-tabs>
|
|||
|
</view>
|
|||
|
</u-sticky>
|
|||
|
|
|||
|
<view class="log-content">
|
|||
|
<view class="item-wrap" v-for="(item, index) in datas" :key="index">
|
|||
|
<view class="title">
|
|||
|
<view class="name">{{deviceName}}</view>
|
|||
|
<view class="status"
|
|||
|
:class="{'success': item.logType === 5, 'warning': item.logType === 3, 'error': item.logType === 6}">
|
|||
|
{{ getStatusDisplay(item) }}
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="describe">
|
|||
|
<view class="top-line">
|
|||
|
<view class="item">{{$tt('deviceDetail.identifier')}}:{{item.identify}}</view>
|
|||
|
</view>
|
|||
|
<view class="item">{{$tt('deviceDetail.value')}}:{{formatValueDisplay(item)}}</view>
|
|||
|
<view class="item">{{$tt('deviceDetail.logContent')}}:{{item.remark}}</view>
|
|||
|
<view class="item">{{$tt('deviceDetail.reportTime')}}:{{item.createTime}}</view>
|
|||
|
</view>
|
|||
|
<view class="tools">
|
|||
|
<view v-if="item.status === 2" class="btn"><u-button type="primary" size="mini"
|
|||
|
:text="$tt('alert.process')"></u-button>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
<u-empty mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png" :show="total === 0"
|
|||
|
marginTop="30"></u-empty>
|
|||
|
<u-loadmore :status="loadmoreStatus" v-if="total > 0" marginTop="20" />
|
|||
|
<u-loading-page :loading="loading" bg-color="#eef3f7" loadingText="iot-xcwl.cn"></u-loading-page>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import {
|
|||
|
getEventLogList
|
|||
|
} from '@/apis/modules/deviceLog.js';
|
|||
|
import {
|
|||
|
getCacheThingsModel
|
|||
|
} from '@/apis/modules/device.js'
|
|||
|
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
deviceName: '',
|
|||
|
tabsList: [{
|
|||
|
id: '0',
|
|||
|
name: this.$tt('log.all')
|
|||
|
},
|
|||
|
{
|
|||
|
id: '3',
|
|||
|
name: this.$tt('log.event')
|
|||
|
},
|
|||
|
{
|
|||
|
id: '5',
|
|||
|
name: this.$tt('log.online')
|
|||
|
},
|
|||
|
{
|
|||
|
id: '6',
|
|||
|
name: this.$tt('log.offline')
|
|||
|
}
|
|||
|
],
|
|||
|
queryParams: {
|
|||
|
pageNum: 1,
|
|||
|
pageSize: 10,
|
|||
|
serialNumber: '',
|
|||
|
identity: null,
|
|||
|
logType: null
|
|||
|
},
|
|||
|
loading: true,
|
|||
|
thingsModels: {}, // 物模型
|
|||
|
datas: [], // log列表数据
|
|||
|
total: 0, // 总条数
|
|||
|
loadmoreStatus: 'loadmore',
|
|||
|
};
|
|||
|
},
|
|||
|
onLoad: async function(option) {
|
|||
|
this.deviceName = option.deviceName;
|
|||
|
this.queryParams.serialNumber = String(option.serialNumber);
|
|||
|
const productId = Number(option.productId);
|
|||
|
this.thingsModels = await this.getThingsModdel(productId);
|
|||
|
this.getDatas();
|
|||
|
},
|
|||
|
methods: {
|
|||
|
// 获取列表数据
|
|||
|
getDatas() {
|
|||
|
this.loading = true;
|
|||
|
getEventLogList(this.queryParams).then(res => {
|
|||
|
if (this.queryParams.pageNum == 1) {
|
|||
|
this.datas = res.rows;
|
|||
|
} else {
|
|||
|
this.datas = this.datas.concat(res.rows);
|
|||
|
}
|
|||
|
this.total = res.total;
|
|||
|
this.loading = false;
|
|||
|
uni.stopPullDownRefresh();
|
|||
|
});
|
|||
|
},
|
|||
|
// 获取缓存物模型
|
|||
|
getThingsModdel(productId) {
|
|||
|
return new Promise((resolve, reject) => {
|
|||
|
getCacheThingsModel(productId).then(res => {
|
|||
|
resolve(JSON.parse(res.data));
|
|||
|
}).catch(err => {
|
|||
|
reject(err);
|
|||
|
})
|
|||
|
})
|
|||
|
},
|
|||
|
// 单击查询
|
|||
|
handleTabsClick(e) {
|
|||
|
if (e.id == '0') {
|
|||
|
this.queryParams.logType = null;
|
|||
|
} else {
|
|||
|
this.queryParams.logType = e.id;
|
|||
|
}
|
|||
|
this.datas = [];
|
|||
|
this.queryParams.pageNum = 1;
|
|||
|
this.getDatas();
|
|||
|
},
|
|||
|
// 格式化显示数据定义
|
|||
|
formatValueDisplay(row) {
|
|||
|
// 类型(1=属性上报,2=调用功能,3=事件上报,4=设备升级,5=设备上线,6=设备离线)
|
|||
|
if (row.logType === 1) {
|
|||
|
let propertyItem = this.getThingsModelItem(1, row.identity);
|
|||
|
if (propertyItem != "") {
|
|||
|
return (propertyItem.parentName ? '[' + propertyItem.parentName + (propertyItem.arrayIndex ?
|
|||
|
propertyItem.arrayIndex : '') + '] ' : '') +
|
|||
|
propertyItem.name +
|
|||
|
':' + this.getThingsModelItemValue(propertyItem, row.logValue) +
|
|||
|
' ' +
|
|||
|
(propertyItem.datatype.unit != undefined ? propertyItem.datatype.unit : '');
|
|||
|
}
|
|||
|
} else if (row.logType === 2) {
|
|||
|
let functionItem = this.getThingsModelItem(2, row.identity);
|
|||
|
if (functionItem != "") {
|
|||
|
return (functionItem.parentName ? '[' + functionItem.parentName + (functionItem.arrayIndex ?
|
|||
|
functionItem.arrayIndex : '') + '] ' : '') +
|
|||
|
functionItem.name +
|
|||
|
':' + this.getThingsModelItemValue(functionItem, row.logValue) +
|
|||
|
' ' +
|
|||
|
(functionItem.datatype.unit != undefined ? functionItem.datatype.unit : '');
|
|||
|
}
|
|||
|
} else if (row.logType === 3) {
|
|||
|
let eventItem = this.getThingsModelItem(3, row.identity);
|
|||
|
if (eventItem != "") {
|
|||
|
return (eventItem.parentName ? '[' + eventItem.parentName + (eventItem.arrayIndex ? eventItem
|
|||
|
.arrayIndex : '') + '] ' : '') +
|
|||
|
eventItem.name +
|
|||
|
':' + this.getThingsModelItemValue(eventItem, row.logValue) +
|
|||
|
' ' +
|
|||
|
(eventItem.datatype.unit != undefined ? eventItem.datatype.unit : '');
|
|||
|
}
|
|||
|
} else if (row.logType === 4) {
|
|||
|
return this.$tt('log.upgrade');
|
|||
|
} else if (row.logType === 5) {
|
|||
|
return this.$tt('log.online');
|
|||
|
} else if (row.logType === 6) {
|
|||
|
return this.$tt('log.offline');
|
|||
|
}
|
|||
|
return '';
|
|||
|
},
|
|||
|
// 获取物模型中的项
|
|||
|
getThingsModelItem(type, identity) {
|
|||
|
if (type == 1 && this.thingsModels.properties) {
|
|||
|
for (let i = 0; i < this.thingsModels.properties.length; i++) {
|
|||
|
//普通类型 integer/decimal/string/emum//bool
|
|||
|
if (this.thingsModels.properties[i].id == identity) {
|
|||
|
return this.thingsModels.properties[i];
|
|||
|
}
|
|||
|
// 对象 object
|
|||
|
if (this.thingsModels.properties[i].datatype.type == "object") {
|
|||
|
for (let j = 0; j < this.thingsModels.properties[i].datatype.params.length; j++) {
|
|||
|
if (this.thingsModels.properties[i].datatype.params[j].id == identity) {
|
|||
|
this.thingsModels.properties[i].datatype.params[j].parentName = this.thingsModels
|
|||
|
.properties[i].name;
|
|||
|
return this.thingsModels.properties[i].datatype.params[j];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
// 数组 array
|
|||
|
if (this.thingsModels.properties[i].datatype.type == "array" && this.thingsModels.properties[i]
|
|||
|
.datatype.arrayType) {
|
|||
|
if (this.thingsModels.properties[i].datatype.arrayType == "object") {
|
|||
|
// 数组元素格式:array_01_parentId_humidity,array_01_前缀终端上报时加上,物模型中没有
|
|||
|
let realIdentity = identity;
|
|||
|
let arrayIndex = 0;
|
|||
|
if (identity.indexOf("array_") > -1) {
|
|||
|
arrayIndex = identity.substring(6, 8);
|
|||
|
realIdentity = identity.substring(9);
|
|||
|
}
|
|||
|
for (let j = 0; j < this.thingsModels.properties[i].datatype.params.length; j++) {
|
|||
|
if (this.thingsModels.properties[i].datatype.params[j].id == realIdentity) {
|
|||
|
// 标注索引和父级名称
|
|||
|
this.thingsModels.properties[i].datatype.params[j].arrayIndex = Number(
|
|||
|
arrayIndex) +
|
|||
|
1;
|
|||
|
this.thingsModels.properties[i].datatype.params[j].parentName = this.thingsModels
|
|||
|
.properties[i].name;
|
|||
|
return this.thingsModels.properties[i].datatype.params[j];
|
|||
|
}
|
|||
|
}
|
|||
|
} else {
|
|||
|
// 普通类型
|
|||
|
for (let j = 0; j < this.thingsModels.properties[i].datatype.arrayCount.length; j++) {
|
|||
|
if (this.thingsModels.properties[i].id == realIdentity) {
|
|||
|
this.thingsModels.properties[i].arrayIndex = Number(arrayIndex) + 1;
|
|||
|
this.thingsModels.properties[i].parentName = this.$tt('log.element');
|
|||
|
return this.thingsModels.properties[i];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
} else if (type == 2 && this.thingsModels.functions) {
|
|||
|
for (let i = 0; i < this.thingsModels.functions.length; i++) {
|
|||
|
//普通类型 integer/decimal/string/emum/bool
|
|||
|
if (this.thingsModels.functions[i].id == identity) {
|
|||
|
return this.thingsModels.functions[i];
|
|||
|
}
|
|||
|
// 对象 object
|
|||
|
if (this.thingsModels.functions[i].datatype.type == "object") {
|
|||
|
for (let j = 0; j < this.thingsModels.functions[i].datatype.params.length; j++) {
|
|||
|
if (this.thingsModels.functions[i].datatype.params[j].id == identity) {
|
|||
|
this.thingsModels.functions[i].datatype.params[j].parentName = this.thingsModels
|
|||
|
.functions[i].name;
|
|||
|
return this.thingsModels.functions[i].datatype.params[j];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
// 数组 array
|
|||
|
if (this.thingsModels.functions[i].datatype.type == "array" && this.thingsModels.functions[i]
|
|||
|
.datatype.arrayType) {
|
|||
|
// 数组元素格式:array_01_parentId_humidity,array_01_前缀终端上报时加上,物模型中没有
|
|||
|
let realIdentity = identity;
|
|||
|
let arrayIndex = 0;
|
|||
|
if (identity.indexOf("array_") > -1) {
|
|||
|
arrayIndex = identity.substring(6, 8);
|
|||
|
realIdentity = identity.substring(9);
|
|||
|
}
|
|||
|
if (this.thingsModels.functions[i].datatype.arrayType == "object") {
|
|||
|
for (let j = 0; j < this.thingsModels.functions[i].datatype.params.length; j++) {
|
|||
|
if (this.thingsModels.functions[i].datatype.params[j].id == realIdentity) {
|
|||
|
// 标注索引和父级名称
|
|||
|
this.thingsModels.functions[i].datatype.params[j].arrayIndex = Number(arrayIndex) +
|
|||
|
1;
|
|||
|
this.thingsModels.functions[i].datatype.params[j].parentName = this.thingsModels
|
|||
|
.functions[i].name;
|
|||
|
return this.thingsModels.functions[i].datatype.params[j];
|
|||
|
}
|
|||
|
}
|
|||
|
} else {
|
|||
|
// 普通类型
|
|||
|
for (let j = 0; j < this.thingsModels.functions[i].datatype.arrayCount.length; j++) {
|
|||
|
if (this.thingsModels.functions[i].id == realIdentity) {
|
|||
|
this.thingsModels.functions[i].arrayIndex = Number(arrayIndex) + 1;
|
|||
|
this.thingsModels.functions[i].parentName = this.$tt('log.element');
|
|||
|
return this.thingsModels.functions[i];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
} else if (type == 3 && this.thingsModels.events) {
|
|||
|
for (let i = 0; i < this.thingsModels.events.length; i++) {
|
|||
|
if (this.thingsModels.events[i].id == identity) {
|
|||
|
return this.thingsModels.events[i];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return "";
|
|||
|
},
|
|||
|
// 获取物模型项中的值
|
|||
|
getThingsModelItemValue(item, oldValue) {
|
|||
|
if (item.datatype.type == 'bool') {
|
|||
|
if (oldValue == '0') {
|
|||
|
return item.datatype.falseText;
|
|||
|
} else if (oldValue == '1') {
|
|||
|
return item.datatype.trueText;
|
|||
|
}
|
|||
|
} else if (item.datatype.type == 'enum') {
|
|||
|
for (let i = 0; i < item.datatype.enumList.length; i++) {
|
|||
|
if (oldValue == item.datatype.enumList[i].value) {
|
|||
|
return item.datatype.enumList[i].text;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return oldValue;
|
|||
|
},
|
|||
|
// 获取状态显示
|
|||
|
getStatusDisplay(item) {
|
|||
|
const {
|
|||
|
logType
|
|||
|
} = item;
|
|||
|
if (logType === 3) {
|
|||
|
return this.$tt('log.event')
|
|||
|
} else if (logType === 5) {
|
|||
|
return this.$tt('log.online')
|
|||
|
} else if (logType === 6) {
|
|||
|
return this.$tt('log.offline')
|
|||
|
}
|
|||
|
},
|
|||
|
// 上拉加载
|
|||
|
onReachBottom() {
|
|||
|
this.loadmoreStatus = 'loading';
|
|||
|
this.queryParams.pageNum = this.queryParams.pageNum + 1;
|
|||
|
if ((this.queryParams.pageNum - 1) * this.queryParams.pageSize > this.total) {
|
|||
|
this.loadmoreStatus = 'nomore';
|
|||
|
} else {
|
|||
|
this.getDatas();
|
|||
|
this.loadmoreStatus = 'loadmore';
|
|||
|
}
|
|||
|
},
|
|||
|
// 下拉刷新
|
|||
|
onPullDownRefresh() {
|
|||
|
this.datas = [];
|
|||
|
this.queryParams.pageNum = 1;
|
|||
|
this.getDatas();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss">
|
|||
|
page {
|
|||
|
background: $uni-bg-color-grey;
|
|||
|
}
|
|||
|
|
|||
|
.device-log-event {
|
|||
|
width: 100%;
|
|||
|
padding-bottom: 30rpx;
|
|||
|
|
|||
|
.tabs-wrap {
|
|||
|
background: $uni-bg-color-grey;
|
|||
|
padding: 16rpx 10rpx 10rpx;
|
|||
|
}
|
|||
|
|
|||
|
.log-content {
|
|||
|
width: 100%;
|
|||
|
|
|||
|
.item-wrap {
|
|||
|
border-radius: 20rpx;
|
|||
|
padding: 0 34rpx;
|
|||
|
background-color: #ffffff;
|
|||
|
margin: 0 26rpx 20rpx;
|
|||
|
|
|||
|
.title {
|
|||
|
display: flex;
|
|||
|
flex-direction: row;
|
|||
|
justify-content: space-between;
|
|||
|
align-items: center;
|
|||
|
border-bottom: 1px solid #eaecef;
|
|||
|
position: relative;
|
|||
|
height: 100rpx;
|
|||
|
|
|||
|
.name {
|
|||
|
flex: 1;
|
|||
|
font-size: 32rpx;
|
|||
|
margin-right: 20rpx;
|
|||
|
white-space: nowrap;
|
|||
|
overflow: hidden;
|
|||
|
text-overflow: ellipsis;
|
|||
|
}
|
|||
|
|
|||
|
.status {
|
|||
|
position: absolute;
|
|||
|
right: -34rpx;
|
|||
|
top: 0rpx;
|
|||
|
font-size: 20rpx;
|
|||
|
width: 128rpx;
|
|||
|
height: 48rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
border-radius: 0 20rpx 0 20rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.describe {
|
|||
|
font-size: 28rpx;
|
|||
|
|
|||
|
.top-line {
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
|
|||
|
.item {
|
|||
|
line-height: 40rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
margin-top: 24rpx;
|
|||
|
width: 64%;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.item {
|
|||
|
display: flex;
|
|||
|
line-height: 40rpx;
|
|||
|
margin-top: 24rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
width: 100%;
|
|||
|
white-space: nowrap;
|
|||
|
overflow: hidden;
|
|||
|
text-overflow: ellipsis;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.tools {
|
|||
|
display: flex;
|
|||
|
flex-direction: row;
|
|||
|
justify-content: flex-end;
|
|||
|
padding-bottom: 36rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.success {
|
|||
|
color: #fff;
|
|||
|
background-color: #3378FE;
|
|||
|
}
|
|||
|
|
|||
|
.warning {
|
|||
|
color: #fff;
|
|||
|
background-color: #f9ae3d;
|
|||
|
}
|
|||
|
|
|||
|
.error {
|
|||
|
color: #fff;
|
|||
|
background-color: #f56c6c;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|