1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
//物料入库看板
var interval_do = null;//页面刷新定时器
clearInterval(interval_do);
 
var MyMarhq = '';//滚动定时器
clearInterval(MyMarhq);
 
 
var scrollTimer; // 定义全局变量用于存储滚动定时器
var scrollTimer1; // 定义全局变量用于存储滚动定时器
var scrollTimer2; // 定义全局变量用于存储滚动定时器
var scrollTimer3; // 定义全局变量用于存储滚动定时器
 
window.onload = function () {
    autoScrollItem3();
    autoScrollItem7();
    autoScrollwlqt3();
    autoScrollwlqt7();
};
 
$(function () {
    doData()
    interval_do = setInterval(getKanbanData, 3000 * 1000); // 启动,执行默认方法
 
//     // 当鼠标移入表格容器时清除滚动定时器
//     document.getElementById("item3").addEventListener("mouseenter", function () {
//         console.log("item3");
//         clearInterval(scrollTimer);
//     });
//
// // 当鼠标移出表格容器时重新启动滚动定时器
//     document.getElementById("item3").addEventListener("mouseleave", function () {
//         autoScrollItem3();
//     });
//
//     // 当鼠标移入表格容器时清除滚动定时器
//     document.getElementById("item7").addEventListener("mouseenter", function () {
//         console.log("item7");
//         clearInterval(scrollTimer1);
//     });
//
// // 当鼠标移出表格容器时重新启动滚动定时器
//     document.getElementById("item7").addEventListener("mouseleave", function () {
//         autoScrollItem7();
//     });
//
//     // 当鼠标移入表格容器时清除滚动定时器
//     document.getElementById("wlqt3").addEventListener("mouseenter", function () {
//         clearInterval(scrollTimer2);
//     });
//
// // 当鼠标移出表格容器时重新启动滚动定时器
//     document.getElementById("wlqt3").addEventListener("mouseleave", function () {
//         autoScrollwlqt3();
//     });
//
//     // 当鼠标移入表格容器时清除滚动定时器
//     document.getElementById("wlqt7").addEventListener("mouseenter", function () {
//         clearInterval(scrollTimer3);
//     });
//
// // 当鼠标移出表格容器时重新启动滚动定时器
//     document.getElementById("wlqt7").addEventListener("mouseleave", function () {
//         autoScrollwlqt7();
//     });
 
})
 
function doData() {
    tableBox();
    tableBoxItem3();
    tableBoxData7();
    tableBoxItem7();
 
    var Items = KANBAN_DATA.data.data1;
    if (Items.length > 10) {
        autoScrollwlqt3();
    } else {
        clearInterval(scrollTimer2); // 数据条数不足 15 条时停止滚动
    }
 
    var Items1 = KANBAN_DATA.data.data2;
    if (Items1.length > 10) {
        autoScrollItem3();
    } else {
        clearInterval(scrollTimer); // 数据条数不足 15 条时停止滚动
    }
 
    var Items2 = KANBAN_DATA.data.data3;
    if (Items2.length > 10) {
        autoScrollwlqt7();
    } else {
        clearInterval(scrollTimer3); // 数据条数不足 15 条时停止滚动
    }
 
    var Items3 = KANBAN_DATA.data.data4;
    if (Items3.length > 10) {
        autoScrollItem7();
    } else {
        clearInterval(scrollTimer1); // 数据条数不足 15 条时停止滚动
    }
}
 
 
function tableBox() {
    var Items = KANBAN_DATA.data.data1;
 
    $('#wlqt3 tbody').empty();
    var str = '';
    var style = '';
    var border = '';
    var style1 = '';
    if (Items.length <= 15) {//不滚动
        $.each(Items, function (i, item) {
            if (i == Items.length - 1) {
                //style = "style='border-bottom: 2px solid #333399;padding:5px;'";
                border = 'border-bottom: 2px solid #333399;padding:5px;'
                style = "style='border-bottom: 2px solid #333399;padding:5px;'";
            } else {
                style = "style='padding:5px;'";
            }
            if (item.qt == 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.daa001) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa006Form) + '</td>' + '<td ' + style1 + '>' + isNull(item.caa015) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa022) + '</td>' + '<td ' + style1 + '>' + isNull(item.sum1) + '</td>' + '<td ' + style1 + '>' + isNull(item.wq) + '</td>' + '<td ' + style1 + '>' + isNull(item.percentage) + '</td>' + '</tr>';
            $('#wlqt3 tbody').append(str);
        });
    } else {//会滚动
        $.each(Items, function (i, item) {
            style = "style=''";
 
            if (item.qt > 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
 
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.daa001) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa006Form) + '</td>' + '<td ' + style1 + '>' + isNull(item.caa015) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa022) + '</td>' + '<td ' + style1 + '>' + isNull(item.sum1) + '</td>' + '<td ' + style1 + '>' + isNull(item.wq) + '</td>' + '<td ' + style1 + '>' + isNull(item.percentage) + '</td>' + '</tr>';
            $('#wlqt3 tbody').append(str);
        });
    }
}
 
 
function tableBoxData7() {
    var Items = KANBAN_DATA.data.data3;
 
    $('#wlqt7 tbody').empty();
    var str = '';
    var style = '';
    var border = '';
    var style1 = '';
    if (Items.length <= 15) {//不滚动
        $.each(Items, function (i, item) {
            if (i == Items.length - 1) {
                //style = "style='border-bottom: 2px solid #333399;padding:5px;'";
                border = 'border-bottom: 2px solid #333399;padding:5px;'
                style = "style='border-bottom: 2px solid #333399;padding:5px;'";
            } else {
                style = "style='padding:5px;'";
            }
            if (item.qt == 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.daa001) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa006Form) + '</td>' + '<td ' + style1 + '>' + isNull(item.caa015) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa022) + '</td>' + '<td ' + style1 + '>' + isNull(item.sum1) + '</td>' + '<td ' + style1 + '>' + isNull(item.wq) + '</td>' + '<td ' + style1 + '>' + isNull(item.percentage) + '</td>' + '</tr>';
            $('#wlqt7 tbody').append(str);
        });
    } else {//会滚动
        $.each(Items, function (i, item) {
            style = "style=''";
 
            if (item.qt > 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
 
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.daa001) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa006Form) + '</td>' + '<td ' + style1 + '>' + isNull(item.caa015) + '</td>' + '<td ' + style1 + '>' + isNull(item.daa022) + '</td>' + '<td ' + style1 + '>' + isNull(item.sum1) + '</td>' + '<td ' + style1 + '>' + isNull(item.wq) + '</td>' + '<td ' + style1 + '>' + isNull(item.percentage) + '</td>' + '</tr>';
            $('#wlqt7 tbody').append(str);
        });
    }
}
 
function tableBoxItem3() {
    var Items = KANBAN_DATA.data.data2;
 
    $('#item3 tbody').empty();
    var str = '';
    var style = '';
    var border = '';
    var style1 = '';
    if (Items.length <= 15) {//不滚动
        $.each(Items, function (i, item) {
            if (i == Items.length - 1) {
                //style = "style='border-bottom: 2px solid #333399;padding:5px;'";
                border = 'border-bottom: 2px solid #333399;padding:5px;'
                style = "style='border-bottom: 2px solid #333399;padding:5px;'";
            } else {
                style = "style='padding:5px;'";
            }
            if (item.qt == 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.itemNo) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab004) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab005) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab006) + '</td>' + '<td ' + style1 + '>' + isNull(item.wly) + '</td>' + '<td ' + style1 + '>' + isNull(item.meskc2) + '</td>' + '</tr>';
            $('#item3 tbody').append(str);
        });
    } else {//会滚动
        $.each(Items, function (i, item) {
            style = "style=''";
 
            if (item.qt > 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
 
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.itemNo) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab004) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab005) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab006) + '</td>' + '<td ' + style1 + '>' + isNull(item.wly) + '</td>' + '<td ' + style1 + '>' + isNull(item.meskc2) + '</td>' + '</tr>';
            $('#item3 tbody').append(str);
        });
    }
}
 
function tableBoxItem7() {
    var Items = KANBAN_DATA.data.data4;
 
    $('#item7 tbody').empty();
    var str = '';
    var style = '';
    var border = '';
    var style1 = '';
    if (Items.length <= 15) {//不滚动
        $.each(Items, function (i, item) {
            if (i == Items.length - 1) {
                //style = "style='border-bottom: 2px solid #333399;padding:5px;'";
                border = 'border-bottom: 2px solid #333399;padding:5px;'
                style = "style='border-bottom: 2px solid #333399;padding:5px;'";
            } else {
                style = "style='padding:5px;'";
            }
            if (item.qt == 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.itemNo) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab004) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab005) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab006) + '</td>' + '<td ' + style1 + '>' + isNull(item.wly) + '</td>' + '<td ' + style1 + '>' + isNull(item.meskc2) + '</td>' + '</tr>';
            $('#item7 tbody').append(str);
        });
    } else {//会滚动
        $.each(Items, function (i, item) {
            style = "style=''";
 
            if (item.qt > 0) {
                style1 = "style='color:#CC0033;" + border + "'";
            } else {
                style1 = "style='color:#FFFFFF;" + border + "'";
            }
 
            str = '<tr>' + '<td ' + style1 + '>' + isNull(item.itemNo) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab004) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab005) + '</td>' + '<td ' + style1 + '>' + isNull(item.dab006) + '</td>' + '<td ' + style1 + '>' + isNull(item.wly) + '</td>' + '<td ' + style1 + '>' + isNull(item.meskc2) + '</td>' + '</tr>';
            $('#item7 tbody').append(str);
        });
    }
}
 
function autoScrollItem3() {
    var container = document.getElementById("item3"); // 获取表格容器
    var speed = 50; // 滚动速度,数值越大滚动越慢
    var scrollHeight = container.scrollHeight; // 获取滚动内容的高度
    var clientHeight = container.clientHeight; // 获取容器可见区域的高度
 
    if (scrollHeight > clientHeight) {
        var scrollPos = 0; // 初始化滚动位置
 
        function scroll() {
            if (scrollPos <= scrollHeight - clientHeight) {
                scrollPos++;
            } else {
                scrollPos = 0; // 回到顶部
            }
            container.scrollTop = scrollPos; // 设置滚动位置
        }
 
        scrollTimer = setInterval(scroll, speed); // 启动滚动定时器
    }
}
 
function autoScrollItem7() {
    var container = document.getElementById("item7"); // 获取表格容器
    var speed = 50; // 滚动速度,数值越大滚动越慢
    var scrollHeight = container.scrollHeight; // 获取滚动内容的高度
    var clientHeight = container.clientHeight; // 获取容器可见区域的高度
 
    if (scrollHeight > clientHeight) {
        var scrollPos = 0; // 初始化滚动位置
 
        function scroll() {
            if (scrollPos <= scrollHeight - clientHeight) {
                scrollPos++;
            } else {
                scrollPos = 0; // 回到顶部
            }
            container.scrollTop = scrollPos; // 设置滚动位置
        }
 
        scrollTimer1 = setInterval(scroll, speed); // 启动滚动定时器
    }
}
 
function autoScrollwlqt3() {
    var container = document.getElementById("wlqt3"); // 获取表格容器
    var speed = 50; // 滚动速度,数值越大滚动越慢
    var scrollHeight = container.scrollHeight; // 获取滚动内容的高度
    var clientHeight = container.clientHeight; // 获取容器可见区域的高度
 
    if (scrollHeight > clientHeight) {
        var scrollPos = 0; // 初始化滚动位置
 
        function scroll() {
            if (scrollPos <= scrollHeight - clientHeight) {
                scrollPos++;
            } else {
                scrollPos = 0; // 回到顶部
            }
            container.scrollTop = scrollPos; // 设置滚动位置
        }
 
        scrollTimer2 = setInterval(scroll, speed); // 启动滚动定时器
    }
}
 
function autoScrollwlqt7() {
    var container = document.getElementById("wlqt7"); // 获取表格容器
    var speed = 50; // 滚动速度,数值越大滚动越慢
    var scrollHeight = container.scrollHeight; // 获取滚动内容的高度
    var clientHeight = container.clientHeight; // 获取容器可见区域的高度
 
    if (scrollHeight > clientHeight) {
        var scrollPos = 0; // 初始化滚动位置
 
        function scroll() {
            if (scrollPos <= scrollHeight - clientHeight) {
                scrollPos++;
            } else {
                scrollPos = 0; // 回到顶部
            }
            container.scrollTop = scrollPos; // 设置滚动位置
        }
 
        scrollTimer3 = setInterval(scroll, speed); // 启动滚动定时器
    }
}
 
 
function getKanbanData() {
    $.ajax({
        type: "GET",
        url: context + "kanban/toZP3Data",
        dataType: "json",
        success: function (res) {
            console.log(res)
            if (res.result) {
                KANBAN_DATA = res;
                clearInterval(scrollTimer); // 清除滚动定时器
                clearInterval(scrollTimer1); // 清除滚动定时器
                clearInterval(scrollTimer2); // 清除滚动定时器
                clearInterval(scrollTimer3); // 清除滚动定时器
                doData();
            } else {
                //clearInterval(interval_do);//错误-关闭定时器
            }
        }
    });
}
 
//插入样式
function setColor(style, value) {
    var bgcolor = ''
    if (value == 'N') {
 
    } else {
        if (value == "0") {
            bgcolor = 'background-color:#999999;'
 
        } else if (value == "100") {
            bgcolor = 'background-color:#33CC99;'
        } else if (value == "/") {
            bgcolor = 'background-color:#7E1D1DFF;'
        } else {
            bgcolor = 'background-color:#FF9900;'
        }
        var s = style.substring(0, style.length - 1)
        style = s + bgcolor + "'";
    }
 
    return style
}
 
function isNull(str) {
    if (str == null) {
        return ""
    } else {
        return str
    }
}