suerprisePlus
2024-05-30 d4c810f9803aa13d806724a5f4f71fe85abac38e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<template>
<div v-if="pageflag" style="overflow:hidden;width: 100%;height:250px;font-size:12px;line-height:24px;">
    <vue-seamless-scroll :data="deviceLogList" :class-option="defaultOption">
        <div style="display:flex;margin-bottom:10px;border-bottom:2px dashed #23cdd8;color:#bbb;" v-for="(item, i) in deviceLogList" :key="i">
            <span style="width:50px;color:#23cdd8;font-size:16px;line-height:48px;font-weight:bolder;">{{ i + 1 }}</span>
            <div style="display:flex;flex-wrap: wrap;">
                <div style="width:200px;">
                    <span>设备编号:</span>
                    <span style="color:#23cdd8">{{ item.serialNumber }}</span>
                </div>
                <div style="width:150px;white-space: nowrap;overflow:hidden;text-overflow:ellipsis;">
                    <span>标识符:</span>
                    <span style="color:#fff;">{{item.identity}}</span>
                </div>
                <div style="width:60px;align-items: flex-end;text-align: right;">
                    <span v-if="item.logType==1" style="color:#ffdb5c">属性上报</span>
                    <span v-else-if="item.logType==2" style="color:#ffdb5c">功能调用</span>
                    <span v-else-if="item.logType==3" style="color:#fb7293">事件上报</span>
                    <span v-else-if="item.logType==4" style="color:#ffdb5c">设备升级</span>
                    <span v-else-if="item.logType==5" style="color:#9fe6b8">设备上线</span>
                    <span v-else-if="item.logType==6" style="color:#ff9f7f">设备离线</span>
                </div>
                <div style="width:200px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
                  <span>上报时间:</span>
                  <span style="color:#fff;">{{ item.createTime }}</span>
                </div>
                <div style="margin-bottom:10px;width:210px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
                  <span>上报值:</span>
                  <span style="color:#fff;">{{item.logValue }}</span>
                </div>
            </div>
        </div>
    </vue-seamless-scroll>
</div>
 
<Reacquire v-else @onclick="getData" style="line-height:200px;color:#23cdd8;margin-left:210px;">
    重新获取
</Reacquire>
</template>
 
<script>
import vueSeamlessScroll from "vue-seamless-scroll";
import {
    listDeviceLog
} from "@/api/iot/deviceLog";
export default {
    components: {
        vueSeamlessScroll,
    },
    data() {
        return {
            deviceLogList: [],
            pageflag: true,
            defaultOption: {
                step: 2,
                limitMoveNum: 4,
                hoverStop: true,
                singleHeight: 280,
                openWatch: true,
                waitTime: 3000,
            },
            queryParams: {
                pageNum: 1,
                pageSize: 20,
            },
        };
    },
    created() {
        this.getData();
    },
    beforeDestroy() {
        this.clearData()
    },
    methods: {
        getData() {
            listDeviceLog(this.queryParams).then(response => {
                this.deviceLogList = response.rows;
                // 轮询
                this.switper()
            });
        },
        clearData() {
            if (this.timer) {
                clearInterval(this.timer)
                this.timer = null
            }
        },
        //轮询
        switper() {
            if (this.timer) {
                return
            }
            let looper = (a) => {
                this.getData()
            };
            this.timer = setInterval(looper, 60000);
        },
    },
};
</script>