zhuguifei
2025-07-25 85a15646ffe20ed2bbb2042ec500df8c850a69cc
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<template>
    <view class="app">
        <z-paging ref="paging" v-model="dataList" show-refresher-update-time @query="queryList" :hide-empty-view="true">
            <!-- 需要固定在顶部不滚动的view放在slot="top"的view中,如果需要跟着滚动,则不要设置slot="top" -->
            <template #top>
                <cu-custom bgColor="bg-gradual-blue" :isBack="false" :isRight="true" @rightclick="">
                    <block slot="content">报警机台</block>
                </cu-custom>
                <view class="card-box dynamic shadow">
                    <view class="title-box margin-bottom-sm">
                        <view style="width: 100vw;" class="left justify-between">
                            <view class="flex align-center">
                                <uni-text class="cuIcon-titles text-blue"></uni-text>
                                <view class="title">总览</view>
                            </view>
                            <view>
                                <text class="text-gray text-sm">{{curDate}}</text>
                            </view>
 
                        </view>
 
                    </view>
                    <view class="flex flex-direction padding-xs">
                        <view class="flex">
                            <view class="flex-sub flex flex-direction">
                                <text class="text-df">报警总数</text>
                                <text class="text-bold text-sl margin-top-xs text-red margin-top-sm">{{count}}
                                    <text class="text-gray text-sm margin-left-xs">次</text></text>
 
                            </view>
                            <view class="flex-twice flex flex-direction justify-between">
                                <view class="flex-sub flex">
                                    <view class="flex flex-direction flex-sub">
                                        <text class="text-gray text-xs">报警信息</text>
 
                                        <text class="text-black">故障次数:</text>
                                        <text class="margin-lr-xs text-red text-bold text-xl">{{faultCount}}</text>
                                        <text class="text-gray text-xs"></text>
 
 
                                    </view>
                                    <view class="flex flex-direction flex-sub">
                                        <text class="text-gray text-xs">机台信息</text>
 
                                        <text class="text-black">故障机台:</text>
                                        <text class="margin-lr-xs text-red">{{faultEqus}}</text>
                                        <text class="text-gray text-xs"></text>
 
 
                                    </view>
 
                                </view>
                                <view class="flex-sub flex">
                                    <view class="flex flex-direction flex-sub">
                                        <text class="text-white text-xs">报警信息</text>
 
                                        <text class="text-black">告警次数:</text>
                                        <text class="margin-lr-xs text-orange text-bold text-xl">{{alarmCount}}</text>
                                        <text class="text-gray text-xs"></text>
 
 
                                    </view>
                                    <view class="flex flex-direction flex-sub">
                                        <text class="text-white text-xs">机台信息</text>
                                        <text class="text-black">告警机台:</text>
                                        <text class="margin-lr-xs text-orange">{{alarmEqus}}</text>
                                        <text class="text-gray text-xs"></text>
 
                                    </view>
 
                                </view>
 
                            </view>
 
                        </view>
 
                    </view>
 
 
 
                </view>
 
 
 
            </template>
            <view class="container">
                <view class="flex align-center">
                    <uni-text class="cuIcon-titles text-blue"></uni-text>
                    <view class="title">设备列表</view>
                </view>
                <view class="equ-box">
                    <div v-for="(item,index) in dataList" :key="index" class="equ-item">
 
                    </div>
 
                </view>
            </view>
 
 
 
 
        </z-paging>
 
    </view>
</template>
 
<script>
 
    import dayjs from 'dayjs'
    export default {
 
        data() {
            return {
                loading: true,
                dataList: [],
                curDate: dayjs().format('YYYY-MM-DD'),
                //实时报警数据更新时间(一般10s)
                refreshTime: '',
                //报警总数
                count: 0,
                //告警总数
                alarmCount: 0,
                //故障总数
                faultCount: 0,
                //故障机台
                faultEqus: "",
                //告警机台
                alarmEqus: "",
            }
        },
        onTabItemTap: function(e) {
            getApp().globalData.selectTab = e.index
        },
        onShow() {
 
        },
        onReady() {
            
        },
        methods: {
 
            queryList(pageNo, pageSize) {
                this.loading = true;
                const params = {
                    pageNo: pageNo,
                    pageSize: pageSize,
                }
         
             this.$api.queryEquList(params).then((res) => {
                 this.$refs.paging.complete(res.result.records);
                 this.loading = false
             }).catch(res => {
             
                 this.$refs.paging.complete(false);
                 this.loading = false
             })
 
            },
 
            queryRealFaultData() {
                //发送数据
                const message = {
                    req: this.deviceId,
                    tenantId: this.tenantId,
                    timeStamp: new Date(),
 
                }
                let opts = {
                    topic: this.$constant.MOBILE_REQ_EQU_REAL_FAULT,
                    message: JSON.stringify(message),
                }
 
                this.$mqttTool.publish(opts).then(res => {
                    //console.error(res)
                })
            },
     
            
            
 
 
 
        },
        onReady() {
 
        },
        computed: {
            tenantId() {
                const userinfo = uni.getStorageSync('userinfo');
                const tenantid = userinfo.loginTenantId
                return tenantid + "";
            },
            deviceId() {
                return uni.getStorageSync(this.$constant.DEVICE_ID);
            },
 
        },
    }
</script>
 
<style lang="scss" scoped>
    .container {
        margin: 0 20rpx;
        padding: 20rpx;
        box-sizing: border-box;
        background-color: white;
        font-family: Helvetica Neue, Helvetica, sans-serif;
        border-radius: 20rpx;
 
    }
 
    .card-box {
        margin: 20rpx;
        padding: 20rpx;
        box-sizing: border-box;
        background-color: white;
        border-radius: 20rpx;
        font-family: Helvetica Neue, Helvetica, sans-serif;
 
    }
 
    .title-box {
        display: flex;
        flex-direction: row;
        align-items: center;
 
        .left {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
                font-weight: bold;
            }
        }
 
        .right {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
                font-weight: bold;
            }
        }
    }
 
    .equ-box {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20rpx;
        gap: 20rpx 0px;
        justify-content: space-between;
    }
 
    .equ-item {
        width: calc((100% - 20rpx)/2);
        height: 200rpx;
        border-radius: 20rpx;
        background-color: #ecf5ff;
    }
 
    .borderTop {
        border-top: 2rpx solid #f2f2f2;
        padding-top: 20rpx;
    }
</style>