aldehyde 0.2.502 → 0.2.503
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -63
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js +7 -7
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js.map +1 -1
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.json +63 -0
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.ttf +0 -0
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff +0 -0
- package/lib/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff2 +0 -0
- package/lib/draw-canvas-edit/components/asset-bar/index.less +35 -35
- package/lib/draw-canvas-edit/components/main-header/index.less +23 -23
- package/lib/lowcode-components/base-table/index.less +61 -61
- package/lib/lowcode-components/data-number/index.less +10 -10
- package/lib/lowcode-components/date-time/index.less +4 -4
- package/lib/lowcode-components/four-angle-glow-border/index.less +49 -49
- package/lib/lowcode-components/lowcode-view/component/font/FontGlobal.css +26 -26
- package/lib/lowcode-components/lowcode-view/component/screen-fit/index.less +13 -13
- package/lib/lowcode-components/text-scroller/index.less +28 -28
- package/package.json +1 -1
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.css +99 -63
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.js +1 -1
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.json +156 -93
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.ttf +0 -0
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff +0 -0
- package/src/aldehyde/controls/icon-selector/icon/phonenode-menu-icon/iconfont.woff2 +0 -0
- package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.less +35 -35
- package/src/aldehyde/draw-canvas-edit/components/asset-bar/index.tsx +110 -110
- package/src/aldehyde/draw-canvas-edit/components/main-header/index.less +23 -23
- package/src/aldehyde/draw-canvas-edit/components/main-header/index.tsx +263 -263
- package/src/aldehyde/draw-canvas-edit/components/render/draws/index.ts +7 -7
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/base-graph.ts +241 -241
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/circle.ts +699 -699
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/curve.ts +500 -500
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/index.ts +5 -5
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/line.ts +493 -493
- package/src/aldehyde/draw-canvas-edit/components/render/graphs/rect.ts +680 -680
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/drag-handlers.ts +68 -68
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/graph-handlers.ts +113 -113
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/index.ts +9 -9
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/key-move-handlers.ts +49 -49
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/link-handlers.ts +45 -45
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/shutcut-handlers.ts +45 -45
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/text-handlers.ts +81 -81
- package/src/aldehyde/draw-canvas-edit/components/render/handlers/zoom-handlers.ts +59 -59
- package/src/aldehyde/draw-canvas-edit/components/render/tools/align-tool.ts +89 -89
- package/src/aldehyde/draw-canvas-edit/components/render/tools/asset-tool.ts +154 -154
- package/src/aldehyde/draw-canvas-edit/components/render/tools/link-tool.ts +222 -222
- package/src/aldehyde/draw-canvas-edit/components/render/tools/z-index-tool.ts +224 -224
- package/src/aldehyde/draw-canvas-edit/components/render/utils/a-star.ts +116 -116
- package/src/aldehyde/draw-canvas-edit/components/render/utils/bezier-scene-func.ts +72 -72
- package/src/aldehyde/draw-canvas-edit/components/setting-form/imag-upload.tsx +119 -119
- package/src/aldehyde/layout4/imgs/user.svg +26 -26
- package/src/aldehyde/lowcode-components/base-color-block/index.tsx +31 -31
- package/src/aldehyde/lowcode-components/base-table/index.less +61 -61
- package/src/aldehyde/lowcode-components/data-number/index.less +10 -10
- package/src/aldehyde/lowcode-components/date-time/index.less +4 -4
- package/src/aldehyde/lowcode-components/date-time/index.tsx +64 -64
- package/src/aldehyde/lowcode-components/four-angle-glow-border/index.less +49 -49
- package/src/aldehyde/lowcode-components/four-angle-glow-border/index.tsx +53 -53
- package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-controller.ts +64 -64
- package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-definition.ts +77 -77
- package/src/aldehyde/lowcode-components/lowcode-view/component/abstract-designer-loader.ts +36 -36
- package/src/aldehyde/lowcode-components/lowcode-view/component/component-container.tsx +144 -144
- package/src/aldehyde/lowcode-components/lowcode-view/component/font/FontGlobal.css +26 -26
- package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/controller.ts +36 -36
- package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/definition.ts +53 -53
- package/src/aldehyde/lowcode-components/lowcode-view/component/group-layer/index.tsx +15 -15
- package/src/aldehyde/lowcode-components/lowcode-view/component/layer-builder.tsx +98 -98
- package/src/aldehyde/lowcode-components/lowcode-view/component/screen-fit/index.less +13 -13
- package/src/aldehyde/lowcode-components/lowcode-view/component/screen-fit/index.tsx +121 -121
- package/src/aldehyde/lowcode-components/placeholder-component/index.tsx +81 -81
- package/src/aldehyde/lowcode-components/text-scroller/index.less +28 -28
- package/src/aldehyde/lowcode-components/text-scroller/index.tsx +173 -173
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
.base-table {
|
|
2
|
-
width: 100%;
|
|
3
|
-
height: 100%;
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
|
|
6
|
-
.base-table-empty {
|
|
7
|
-
width: 100%;
|
|
8
|
-
height: 100%;
|
|
9
|
-
display: flex;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
align-items: center;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
table {
|
|
15
|
-
width: 100%;
|
|
16
|
-
text-align: center;
|
|
17
|
-
table-layout: fixed;
|
|
18
|
-
/* 关键:合并相邻边框,消除双线 */
|
|
19
|
-
border-collapse: collapse;
|
|
20
|
-
margin-top: -2px;
|
|
21
|
-
|
|
22
|
-
thead {
|
|
23
|
-
position: relative;
|
|
24
|
-
z-index: 1;
|
|
25
|
-
|
|
26
|
-
th {
|
|
27
|
-
padding: 0 4px;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
.scroll-body {
|
|
33
|
-
overflow: hidden;
|
|
34
|
-
animation: scroll 10s linear infinite;
|
|
35
|
-
|
|
36
|
-
td {
|
|
37
|
-
padding: 0 4px;
|
|
38
|
-
overflow: hidden;
|
|
39
|
-
white-space: nowrap;
|
|
40
|
-
text-overflow: ellipsis;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
table:hover {
|
|
46
|
-
.scroll-body {
|
|
47
|
-
animation-play-state: paused !important;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
@keyframes scroll {
|
|
55
|
-
0% {
|
|
56
|
-
transform: translateY(0);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
100% {
|
|
60
|
-
transform: translateY(-100%);
|
|
61
|
-
}
|
|
1
|
+
.base-table {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
overflow: hidden;
|
|
5
|
+
|
|
6
|
+
.base-table-empty {
|
|
7
|
+
width: 100%;
|
|
8
|
+
height: 100%;
|
|
9
|
+
display: flex;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
table {
|
|
15
|
+
width: 100%;
|
|
16
|
+
text-align: center;
|
|
17
|
+
table-layout: fixed;
|
|
18
|
+
/* 关键:合并相邻边框,消除双线 */
|
|
19
|
+
border-collapse: collapse;
|
|
20
|
+
margin-top: -2px;
|
|
21
|
+
|
|
22
|
+
thead {
|
|
23
|
+
position: relative;
|
|
24
|
+
z-index: 1;
|
|
25
|
+
|
|
26
|
+
th {
|
|
27
|
+
padding: 0 4px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
.scroll-body {
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
animation: scroll 10s linear infinite;
|
|
35
|
+
|
|
36
|
+
td {
|
|
37
|
+
padding: 0 4px;
|
|
38
|
+
overflow: hidden;
|
|
39
|
+
white-space: nowrap;
|
|
40
|
+
text-overflow: ellipsis;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
table:hover {
|
|
46
|
+
.scroll-body {
|
|
47
|
+
animation-play-state: paused !important;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
@keyframes scroll {
|
|
55
|
+
0% {
|
|
56
|
+
transform: translateY(0);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
100% {
|
|
60
|
+
transform: translateY(-100%);
|
|
61
|
+
}
|
|
62
62
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
.data-number-component {
|
|
2
|
-
--stroke-color: #000000;
|
|
3
|
-
--stroke-width: 0;
|
|
4
|
-
|
|
5
|
-
height: 100%;
|
|
6
|
-
display: flex;
|
|
7
|
-
-webkit-text-stroke-color: var(--stroke-color);
|
|
8
|
-
-webkit-text-stroke-width: var(--stroke-width);
|
|
9
|
-
stroke-color: var(--stroke-color);
|
|
10
|
-
stroke-width: var(--stroke-width);
|
|
1
|
+
.data-number-component {
|
|
2
|
+
--stroke-color: #000000;
|
|
3
|
+
--stroke-width: 0;
|
|
4
|
+
|
|
5
|
+
height: 100%;
|
|
6
|
+
display: flex;
|
|
7
|
+
-webkit-text-stroke-color: var(--stroke-color);
|
|
8
|
+
-webkit-text-stroke-width: var(--stroke-width);
|
|
9
|
+
stroke-color: var(--stroke-color);
|
|
10
|
+
stroke-width: var(--stroke-width);
|
|
11
11
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
.date-time-component {
|
|
2
|
-
width: 100%;
|
|
3
|
-
height: 100%;
|
|
4
|
-
display: flex;
|
|
1
|
+
.date-time-component {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
5
|
}
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
.four-angle-glow {
|
|
2
|
-
--fagb-color: #00ebff;
|
|
3
|
-
--fagb-width: 2px;
|
|
4
|
-
--fagb-length: 8px;
|
|
5
|
-
--fagb-radius: 3px;
|
|
6
|
-
width: 100%;
|
|
7
|
-
height: 100%;
|
|
8
|
-
position: relative;
|
|
9
|
-
|
|
10
|
-
.angle {
|
|
11
|
-
position: absolute;
|
|
12
|
-
border: var(--fagb-width) solid var(--fagb-color);
|
|
13
|
-
width: var(--fagb-length);
|
|
14
|
-
height: var(--fagb-length);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.angle-tl {
|
|
18
|
-
margin: -1px 0 0 -1px;
|
|
19
|
-
border-right: 0;
|
|
20
|
-
border-bottom: 0;
|
|
21
|
-
border-top-left-radius: var(--fagb-radius);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.angle-tr {
|
|
25
|
-
top: 0;
|
|
26
|
-
right: 0;
|
|
27
|
-
border-left: 0;
|
|
28
|
-
border-bottom: 0;
|
|
29
|
-
margin: -1px -1px 0 0;
|
|
30
|
-
border-top-right-radius: var(--fagb-radius);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.angle-bl {
|
|
34
|
-
bottom: 0;
|
|
35
|
-
left: 0;
|
|
36
|
-
border-top: 0;
|
|
37
|
-
border-right: 0;
|
|
38
|
-
margin: 0 0 -1px -1px;
|
|
39
|
-
border-bottom-left-radius: var(--fagb-radius);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.angle-br {
|
|
43
|
-
bottom: 0;
|
|
44
|
-
right: 0;
|
|
45
|
-
border-left: 0;
|
|
46
|
-
border-top: 0;
|
|
47
|
-
margin: 0 -1px -1px 0;
|
|
48
|
-
border-bottom-right-radius: var(--fagb-radius);
|
|
49
|
-
}
|
|
1
|
+
.four-angle-glow {
|
|
2
|
+
--fagb-color: #00ebff;
|
|
3
|
+
--fagb-width: 2px;
|
|
4
|
+
--fagb-length: 8px;
|
|
5
|
+
--fagb-radius: 3px;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
position: relative;
|
|
9
|
+
|
|
10
|
+
.angle {
|
|
11
|
+
position: absolute;
|
|
12
|
+
border: var(--fagb-width) solid var(--fagb-color);
|
|
13
|
+
width: var(--fagb-length);
|
|
14
|
+
height: var(--fagb-length);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.angle-tl {
|
|
18
|
+
margin: -1px 0 0 -1px;
|
|
19
|
+
border-right: 0;
|
|
20
|
+
border-bottom: 0;
|
|
21
|
+
border-top-left-radius: var(--fagb-radius);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.angle-tr {
|
|
25
|
+
top: 0;
|
|
26
|
+
right: 0;
|
|
27
|
+
border-left: 0;
|
|
28
|
+
border-bottom: 0;
|
|
29
|
+
margin: -1px -1px 0 0;
|
|
30
|
+
border-top-right-radius: var(--fagb-radius);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.angle-bl {
|
|
34
|
+
bottom: 0;
|
|
35
|
+
left: 0;
|
|
36
|
+
border-top: 0;
|
|
37
|
+
border-right: 0;
|
|
38
|
+
margin: 0 0 -1px -1px;
|
|
39
|
+
border-bottom-left-radius: var(--fagb-radius);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.angle-br {
|
|
43
|
+
bottom: 0;
|
|
44
|
+
right: 0;
|
|
45
|
+
border-left: 0;
|
|
46
|
+
border-top: 0;
|
|
47
|
+
margin: 0 -1px -1px 0;
|
|
48
|
+
border-bottom-right-radius: var(--fagb-radius);
|
|
49
|
+
}
|
|
50
50
|
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "DingTalk JinBuTi";
|
|
3
|
-
src: url('./DingTalk-JinBuTi.woff2');
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: "DouyinSansBold";
|
|
10
|
-
src: url('./DouyinSansBold.woff');
|
|
11
|
-
font-weight: normal;
|
|
12
|
-
font-style: normal;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: "优设标题黑";
|
|
17
|
-
src: url('./YouSheBiaoTiHei.woff2');
|
|
18
|
-
font-weight: normal;
|
|
19
|
-
font-style: normal;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: "庞门正道标题体免费版";
|
|
24
|
-
src: url('./PangMenZhengDaoBiaoTiTiMianFeiBan.woff2');
|
|
25
|
-
font-weight: normal;
|
|
26
|
-
font-style: normal;
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "DingTalk JinBuTi";
|
|
3
|
+
src: url('./DingTalk-JinBuTi.woff2');
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: "DouyinSansBold";
|
|
10
|
+
src: url('./DouyinSansBold.woff');
|
|
11
|
+
font-weight: normal;
|
|
12
|
+
font-style: normal;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: "优设标题黑";
|
|
17
|
+
src: url('./YouSheBiaoTiHei.woff2');
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: "庞门正道标题体免费版";
|
|
24
|
+
src: url('./PangMenZhengDaoBiaoTiTiMianFeiBan.woff2');
|
|
25
|
+
font-weight: normal;
|
|
26
|
+
font-style: normal;
|
|
27
27
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
.react-screen-box {
|
|
2
|
-
background-size: 100% 100%;
|
|
3
|
-
width: 100%;
|
|
4
|
-
height: 100%;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
|
|
7
|
-
.screen-wrapper {
|
|
8
|
-
transition-property: all;
|
|
9
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
10
|
-
transition-duration: 300ms;
|
|
11
|
-
position: relative;
|
|
12
|
-
transform-origin: left top;
|
|
13
|
-
}
|
|
1
|
+
.react-screen-box {
|
|
2
|
+
background-size: 100% 100%;
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: 100%;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
|
|
7
|
+
.screen-wrapper {
|
|
8
|
+
transition-property: all;
|
|
9
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
10
|
+
transition-duration: 300ms;
|
|
11
|
+
position: relative;
|
|
12
|
+
transform-origin: left top;
|
|
13
|
+
}
|
|
14
14
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
.text-scroller-container {
|
|
2
|
-
--speed: 10s;
|
|
3
|
-
--container-width: 320px;
|
|
4
|
-
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
overflow: hidden;
|
|
8
|
-
white-space: nowrap;
|
|
9
|
-
position: relative;
|
|
10
|
-
|
|
11
|
-
.text-scroller {
|
|
12
|
-
height: inherit;
|
|
13
|
-
position: absolute;
|
|
14
|
-
color: white;
|
|
15
|
-
animation: scrollText var(--speed) linear infinite;
|
|
16
|
-
display: flex;
|
|
17
|
-
align-items: center;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@keyframes scrollText {
|
|
21
|
-
0% {
|
|
22
|
-
transform: translateX(var(--container-width));
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
100% {
|
|
26
|
-
transform: translateX(-100%);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
.text-scroller-container {
|
|
2
|
+
--speed: 10s;
|
|
3
|
+
--container-width: 320px;
|
|
4
|
+
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
white-space: nowrap;
|
|
9
|
+
position: relative;
|
|
10
|
+
|
|
11
|
+
.text-scroller {
|
|
12
|
+
height: inherit;
|
|
13
|
+
position: absolute;
|
|
14
|
+
color: white;
|
|
15
|
+
animation: scrollText var(--speed) linear infinite;
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@keyframes scrollText {
|
|
21
|
+
0% {
|
|
22
|
+
transform: translateX(var(--container-width));
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
100% {
|
|
26
|
+
transform: translateX(-100%);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,63 +1,99 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "iconfont"; /* Project id 5037136 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.iconfont {
|
|
9
|
-
font-family: "iconfont" !important;
|
|
10
|
-
font-size: 16px;
|
|
11
|
-
font-style: normal;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.icon-
|
|
17
|
-
content: "\
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.icon-
|
|
21
|
-
content: "\
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.icon-
|
|
25
|
-
content: "\
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.icon-
|
|
29
|
-
content: "\
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.icon-
|
|
33
|
-
content: "\
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.icon-
|
|
37
|
-
content: "\
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.icon-
|
|
41
|
-
content: "\
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.icon-
|
|
45
|
-
content: "\
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.icon-
|
|
49
|
-
content: "\
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.icon-
|
|
53
|
-
content: "\
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.icon-
|
|
57
|
-
content: "\
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.icon-
|
|
61
|
-
content: "\
|
|
62
|
-
}
|
|
63
|
-
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 5037136 */
|
|
3
|
+
src: url('iconfont.woff2?t=1786005256785') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1786005256785') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1786005256785') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon-yewurenyuanxinxiguanli:before {
|
|
17
|
+
content: "\e60e";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-dingdanchulizhong:before {
|
|
21
|
+
content: "\e896";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-cheliangxinxi:before {
|
|
25
|
+
content: "\e755";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-a-SalesOrderManagement:before {
|
|
29
|
+
content: "\e635";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-a-caigoudingdan3x:before {
|
|
33
|
+
content: "\e615";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-guobangjilu:before {
|
|
37
|
+
content: "\e64d";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-canshupeizhi:before {
|
|
41
|
+
content: "\e609";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-wuchatongji:before {
|
|
45
|
+
content: "\e890";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-binggouzhongzu:before {
|
|
49
|
+
content: "\e660";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-tingchewei:before {
|
|
53
|
+
content: "\e664";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-quanxian:before {
|
|
57
|
+
content: "\e63f";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-gongwei:before {
|
|
61
|
+
content: "\e641";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-weixiu:before {
|
|
65
|
+
content: "\e690";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-bumen:before {
|
|
69
|
+
content: "\e686";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-shengchanjidi:before {
|
|
73
|
+
content: "\e63b";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-shouye:before {
|
|
77
|
+
content: "\e63c";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-renyuan:before {
|
|
81
|
+
content: "\e66c";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-apply:before {
|
|
85
|
+
content: "\e61c";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-changquguanli:before {
|
|
89
|
+
content: "\e607";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-kuaidi:before {
|
|
93
|
+
content: "\e6c0";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-menu:before {
|
|
97
|
+
content: "\e677";
|
|
98
|
+
}
|
|
99
|
+
|