inventoryInformation.vue
10.4 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<template>
<div class="app-body">
<Header title="料箱库信息看板"></Header>
<div class="dv-content-body">
<!-- 顶部头表 -->
<div class="dv-content-body-head-list">
<!-- <div :class="eqstatus(item.name)" v-for="item in topData" :key="item.index">
<div class="qty">{{ item.number }}</div>
<div class="text">{{ item.name }}</div>
</div> -->
<div class="dv-content-body-head-list-delit2">
<div class="qty">{{ topForm.total_locations }}</div>
<div class="text">总库位</div>
</div>
<div class="dv-content-body-head-list-delit3">
<div class="qty">{{ topForm.free_locations }}</div>
<div class="text">空闲库位</div>
</div>
<div class="dv-content-body-head-list-delit1">
<div class="qty">{{ topForm.used_locations }}</div>
<div class="text">已使用库位</div>
</div>
<!-- <div class="dv-content-body-head-list-delit2">
<div class="qty">123456</div>
<div class="text">库位</div>
</div>
<div class="dv-content-body-head-list-delit3">
<div class="qty">123456</div>
<div class="text">库位</div>
</div> -->
</div>
<!-- 中间图表 -->
<div class="dv-content-body-center-list">
<bodyCenterLeft ref="bodyCenterLeft"></bodyCenterLeft>
<bodyCenterRight ref="bodyCenterRight"></bodyCenterRight>
</div>
<!-- 底部图表 -->
<div class="dv-content-body-bottom-list">
<footerLeft ref="footerLeft"></footerLeft>
<footerRight ref="footerRight"></footerRight>
</div>
</div>
</div>
</template>
<script>
import Header from '@/layout/appHead'
import bodyCenterLeft from '@/components/inventoryInformation/bodyCenterLeft'
import bodyCenterRight from '@/components/inventoryInformation/bodyCenterRight'
import footerLeft from '@/components/inventoryInformation/footerLeft'
import footerRight from '@/components/inventoryInformation/footerRight'
export default {
data() {
return {
baseUrlOff: 'http://172.16.43.203:8012/api/Board/GetInventoryInfoLX',
baseUrlOnLine: window.appConfig.inventoryInformationLX,
sysData: {},
sysInitTimeNum: window.appConfig.sysTimeNum,
sysTimeNum: window.appConfig.sysTimeNum,
topData: [],
topForm: {
total_locations: 0,
free_locations: 0,
used_locations: 0
},
timer: null,
refreshTimer: null
}
},
components: {
Header,
bodyCenterLeft,
bodyCenterRight,
footerLeft,
footerRight,
},
methods: {
getECSData() {
try {
let opt = {
urlSuffix: window.baseOnLineOrOff ? this.baseUrlOnLine : this.baseUrlOff,
logTitle: 'ECS',
isUrlALL: true,
headers: window.baseOnLineOrOff,
isHanderAjaxSuccessActionLoad: true,
}
let callBackFn = (res) => {
try {
if (!this.ajaxSuccessDataBefore(res, opt.logTitle)) return
// 检查数据结构是否完整
if (!res.data || !res.data.data) {
''.Log('数据结构不完整', 'getECSData')
return
}
this.topForm.free_locations = res.data.data.free_locations || 0;
this.topForm.used_locations = res.data.data.used_locations || 0;
this.topForm.total_locations = res.data.data.total_locations || 0;
// 安全调用子组件方法
if (this.$refs.bodyCenterLeft) this.$refs.bodyCenterLeft.getData(res.data.data.in || [])
if (this.$refs.bodyCenterRight) this.$refs.bodyCenterRight.getData(res.data.data.out || [])
if (this.$refs.footerLeft) this.$refs.footerLeft.getData(res.data.data.equipmentAlarms || [])
if (this.$refs.footerRight) this.$refs.footerRight.getData(res.data.data.taskInfos || [])
} catch (error) {
''.Log('处理数据时出错: ' + error.message, 'getECSData')
}
}
''.ajax(this, opt, callBackFn)
} catch (error) {
''.Log('发起请求时出错: ' + error.message, 'getECSData')
}
},
eqstatus(w) {
if (w == '库存总量') {
return 'dv-content-body-head-list-delit2'
} else if (w == '物料品数') {
return 'dv-content-body-head-list-delit3'
} else {
return 'dv-content-body-head-list-delit1'
}
},
ajaxSuccessDataBefore(res, title) {
if (res.data.data == null) {
''.Log(title + '无数据', 'getData')
return false
}
return true
},
getAllWMSData() { },
getData() {
const data = {
total_locations: 5320,
free_locations: 3892,
used_locations: 1428,
in: [
{
"day": "2026-03-06",
"count": "93"
},
{
"day": "2026-03-07",
"count": "0"
},
{
"day": "2026-03-08",
"count": "0"
},
{
"day": "2026-03-09",
"count": "209"
},
{
"day": "2026-03-10",
"count": "116"
},
{
"day": "2026-03-11",
"count": "1"
},
{
"day": "2026-03-12",
"count": "3"
}
],
out: [
{
"day": "2026-03-06",
"count": "2"
},
{
"day": "2026-03-07",
"count": "0"
},
{
"day": "2026-03-08",
"count": "0"
},
{
"day": "2026-03-09",
"count": "6"
},
{
"day": "2026-03-10",
"count": "0"
},
{
"day": "2026-03-11",
"count": "1"
},
{
"day": "2026-03-12",
"count": "1"
}
],
equipmentAlarms: [
{
"code": "SRM03",
"alarmCode": "F8132",
"msg": "F8132_备用",
"startTime": "2026-03-12 10:19:45"
},
{
"code": "SRM03",
"alarmCode": "F8914",
"msg": "F8914_货叉2电机2:自动模式下,货叉不在中心原点位置故障",
"startTime": "2026-03-12 10:19:45"
}
],
taskInfos: [
{
"taskId": "5448",
"taskType": "入库",
"taskStatus": "执行中",
"from": "P2011",
"to": "L065215",
"created": "2026-03-10 14:29:35"
},
{
"taskId": "5452",
"taskType": "入库",
"taskStatus": "执行中",
"from": "P3041",
"to": "L065219",
"created": "2026-03-10 14:53:27"
},
{
"taskId": "5453",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065301",
"created": "2026-03-10 14:53:37"
},
{
"taskId": "5454",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065302",
"created": "2026-03-10 14:53:49"
},
{
"taskId": "5455",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065303",
"created": "2026-03-10 14:54:05"
},
{
"taskId": "5456",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065304",
"created": "2026-03-10 14:54:17"
},
{
"taskId": "5457",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065305",
"created": "2026-03-10 14:54:29"
},
{
"taskId": "5458",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065306",
"created": "2026-03-10 14:54:39"
},
{
"taskId": "5459",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065307",
"created": "2026-03-10 14:54:50"
},
{
"taskId": "5460",
"taskType": "入库",
"taskStatus": "待执行",
"from": "P3041",
"to": "L065308",
"created": "2026-03-10 14:55:07"
}
]
}
this.topForm.free_locations = data.free_locations;
this.topForm.used_locations = data.used_locations;
this.topForm.total_locations = data.total_locations;
this.$refs.bodyCenterLeft.getData(data.in)
this.$refs.bodyCenterRight.getData(data.out)
this.$refs.footerLeft.getData(data.equipmentAlarms)
this.$refs.footerRight.getData(data.taskInfos)
},
intInterval: function () {
// 数据刷新定时器
this.timer = ''.intInterval(this, this.sysInitTimeNum, () => {
this.getECSData()
})
// 页面自动刷新机制,每2小时刷新一次以释放内存
this.refreshTimer = setInterval(() => {
window.location.reload()
}, 3600000) // 2小时
},
},
mounted() {
//eslint-disable-next-line no-debugger
// debugger
this.getECSData()
// this.getData()
// 【发布的时候要取消注释】
this.intInterval()
},
beforeDestroy() {
// 清除定时器
if (this.timer) {
clearInterval(this.timer)
this.timer = null
}
// 清除页面刷新定时器
if (this.refreshTimer) {
clearInterval(this.refreshTimer)
this.refreshTimer = null
}
},
}
</script>
<style lang="scss" scoped>
.app-body {
height: 100%;
width: 100%;
.dv-content-body {
height: 90%;
width: 100%;
// background: rebeccapurple;
}
.dv-content-body-head-list {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
width: 98%;
height: 23.5%;
}
.dv-content-body-head-list-delit1 {
width: 30%;
height: 13vh;
display: flex;
flex-direction: column;
justify-content: center;
border: 3px solid hsl(208.57deg 51.22% 40.2%);
box-shadow: inset 0 0 30px hsl(201, 86%, 50%);
.qty {
width: 100%;
font-size: 6vh;
font-family: electronicFont;
color: hsl(200.68deg 94.87% 69.41%);
text-align: center;
}
.text {
width: 100%;
color: hsl(200.68deg 94.87% 69.41%);
text-align: center;
}
}
.dv-content-body-head-list-delit2 {
width: 30%;
height: 13vh;
display: flex;
flex-direction: column;
justify-content: center;
border: 3px solid hsl(264.77deg 77.48% 43.53%);
box-shadow: inset 0 0 30px hsl(264.77deg 77.48% 43.53%);
.qty {
width: 100%;
font-size: 6vh;
font-family: electronicFont;
color: hsl(264.77deg 77.48% 43.53%);
text-align: center;
}
.text {
width: 100%;
color: hsl(264.77deg 77.48% 43.53%);
text-align: center;
}
}
.dv-content-body-head-list-delit3 {
width: 30%;
height: 13vh;
display: flex;
flex-direction: column;
justify-content: center;
border: 3px solid hsl(160deg 100% 30%);
box-shadow: inset 0 0 30px hsl(160deg 100% 30%);
.qty {
width: 100%;
font-size: 6vh;
font-family: electronicFont;
color: hsl(160deg 100% 30%);
text-align: center;
}
.text {
width: 100%;
color: hsl(160deg 100% 30%);
text-align: center;
}
}
.dv-content-body-center-list {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
width: 98%;
height: 37.5%;
}
.dv-content-body-bottom-list {
display: flex;
margin: auto;
width: 98%;
height: 37%;
justify-content: space-between;
align-items: center;
}
}
</style>