cuiqian2004
2025-04-01 01fa158740467ca0db83b131249beeeb515a73c2
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
/* To avoid CSS expressions while still supporting IE 7 and IE 6, use this script */
/* The script tag referencing this file must be placed before the ending body tag. */
 
/* Use conditional comments in order to target IE 7 and older:
    <!--[if lt IE 8]><!-->
    <script src="ie7/ie7.js"></script>
    <!--<![endif]-->
*/
 
(function() {
    function addIcon(el, entity) {
        var html = el.innerHTML;
        el.innerHTML = '<span style="font-family: \'mobox-wms\'">' + entity + '</span>' + html;
    }
    var icons = {
        'mobox-wms-agv1': '&#xe900;',
        'mobox-wms-box2': '&#xe901;',
        'mobox-wms-factory': '&#xe902;',
        'mobox-wms-factory2': '&#xe903;',
        'mobox-wms-forklift': '&#xe904;',
        'mobox-wms-gis-point': '&#xe905;',
        'mobox-wms-ground-pile': '&#xe906;',
        'mobox-wms-logistics': '&#xe907;',
        'mobox-wms-logistics2': '&#xe908;',
        'mobox-wms-lv1': '&#xe909;',
        'mobox-wms-lv2': '&#xe90a;',
        'mobox-wms-lv3': '&#xe90b;',
        'mobox-wms-lv4': '&#xe90c;',
        'mobox-wms-lv5': '&#xe90d;',
        'mobox-wms-pda1': '&#xe90e;',
        'mobox-wms-pda2': '&#xe90f;',
        'mobox-wms-pile': '&#xe910;',
        'mobox-wms-pp': '&#xe911;',
        'mobox-wms-qr-code': '&#xe912;',
        'mobox-wms-qr-code1': '&#xe913;',
        'mobox-wms-robot': '&#xe914;',
        'mobox-wms-robot2': '&#xe915;',
        'mobox-wms-scan-code': '&#xe916;',
        'mobox-wms-scan-code2': '&#xe917;',
        'mobox-wms-scan-qr': '&#xe918;',
        'mobox-wms-scan-qr2': '&#xe919;',
        'mobox-wms-send-out-goods': '&#xe91a;',
        'mobox-wms-truck': '&#xe91b;',
        'mobox-wms-warehouse': '&#xe91c;',
        'mobox-wms-warehouse2': '&#xe91d;',
        'mobox-wms-warehouse3': '&#xe91e;',
        'mobox-wms-warehouse4': '&#xe91f;',
        'mobox-wms-warehouse5': '&#xe920;',
        'mobox-wms-warehouse-find': '&#xe921;',
        'mobox-wms-wh-in': '&#xe922;',
        'mobox-wms-wh-in2': '&#xe923;',
        'mobox-wms-wh-in3': '&#xe924;',
        'mobox-wms-wh-io': '&#xe925;',
        'mobox-wms-wh-io2': '&#xe926;',
        'mobox-wms-wh-out1': '&#xe927;',
        'mobox-wms-wh-police': '&#xe928;',
        'mobox-wms-wh-trans': '&#xe929;',
        'mobox-wms-wms': '&#xe92a;',
        '0': 0
        },
        els = document.getElementsByTagName('*'),
        i, c, el;
    for (i = 0; ; i += 1) {
        el = els[i];
        if(!el) {
            break;
        }
        c = el.className;
        c = c.match(/mobox-wms-[^\s'"]+/);
        if (c && icons[c[0]]) {
            addIcon(el, icons[c[0]]);
        }
    }
}());