openatc-components 0.1.189 → 0.1.191
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/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
- package/package/kisscomps/components/DirectionListConfiguration/index.js +2 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
- package/package/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
- package/package/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +429 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
- package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
- package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
- package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
- package/package/kisscomps/index.js +5 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/EdgeMgr/controller/crossDiagramMgr.js +5 -1
- package/src/api/param.js +11 -0
- package/src/icons/demo_index.html +8146 -0
- package/src/icons/iconfont.css +219 -3
- package/src/icons/iconfont.js +1 -1
- package/src/icons/iconfont.json +378 -0
- package/src/icons/iconfont.ttf +0 -0
- package/src/icons/iconfont.woff +0 -0
- package/src/icons/iconfont.woff2 +0 -0
- package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
- package/src/kisscomps/components/DirectionListConfiguration/index.js +2 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
- package/src/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
- package/src/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
- package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
- package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
- package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
- package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
- package/src/kisscomps/index.js +5 -1
- package/src/utils/conflct.js +233 -0
- package/src/utils/conflictList.js +87 -0
- package/src/utils/phasedesc.js +37 -17
- package/src/views/intersection.vue +62 -12
- package/src/views/overView.vue +1 -1
- package/static/styles/uiComponents.scss +52 -0
- package/src/node_modules/.package_versions.json +0 -1
package/src/icons/iconfont.json
CHANGED
|
@@ -5,6 +5,384 @@
|
|
|
5
5
|
"css_prefix_text": "icon-",
|
|
6
6
|
"description": "",
|
|
7
7
|
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "39702170",
|
|
10
|
+
"name": "北掉头左行",
|
|
11
|
+
"font_class": "beidiaotouzuohang",
|
|
12
|
+
"unicode": "e755",
|
|
13
|
+
"unicode_decimal": 59221
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "39702171",
|
|
17
|
+
"name": "东掉头左行",
|
|
18
|
+
"font_class": "dongdiaotouzuohang",
|
|
19
|
+
"unicode": "e756",
|
|
20
|
+
"unicode_decimal": 59222
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon_id": "39702172",
|
|
24
|
+
"name": "南掉头左行",
|
|
25
|
+
"font_class": "nandiaotouzuohang",
|
|
26
|
+
"unicode": "e757",
|
|
27
|
+
"unicode_decimal": 59223
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"icon_id": "39702173",
|
|
31
|
+
"name": "西掉头左行",
|
|
32
|
+
"font_class": "xidiaotouzuohang",
|
|
33
|
+
"unicode": "e758",
|
|
34
|
+
"unicode_decimal": 59224
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"icon_id": "39617051",
|
|
38
|
+
"name": "播放",
|
|
39
|
+
"font_class": "bofang",
|
|
40
|
+
"unicode": "e753",
|
|
41
|
+
"unicode_decimal": 59219
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"icon_id": "39617162",
|
|
45
|
+
"name": "配置",
|
|
46
|
+
"font_class": "peizhi",
|
|
47
|
+
"unicode": "e754",
|
|
48
|
+
"unicode_decimal": 59220
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"icon_id": "39612277",
|
|
52
|
+
"name": "步进",
|
|
53
|
+
"font_class": "bujin1",
|
|
54
|
+
"unicode": "e742",
|
|
55
|
+
"unicode_decimal": 59202
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"icon_id": "39612278",
|
|
59
|
+
"name": "本地",
|
|
60
|
+
"font_class": "bendi1",
|
|
61
|
+
"unicode": "e743",
|
|
62
|
+
"unicode_decimal": 59203
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"icon_id": "39612279",
|
|
66
|
+
"name": "全红",
|
|
67
|
+
"font_class": "quanhong1",
|
|
68
|
+
"unicode": "e744",
|
|
69
|
+
"unicode_decimal": 59204
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"icon_id": "39612281",
|
|
73
|
+
"name": "关灯",
|
|
74
|
+
"font_class": "guandeng",
|
|
75
|
+
"unicode": "e745",
|
|
76
|
+
"unicode_decimal": 59205
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"icon_id": "39612282",
|
|
80
|
+
"name": "定周期",
|
|
81
|
+
"font_class": "dingzhouqi1",
|
|
82
|
+
"unicode": "e746",
|
|
83
|
+
"unicode_decimal": 59206
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"icon_id": "39612283",
|
|
87
|
+
"name": "手动",
|
|
88
|
+
"font_class": "shoudong",
|
|
89
|
+
"unicode": "e747",
|
|
90
|
+
"unicode_decimal": 59207
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"icon_id": "39612284",
|
|
94
|
+
"name": "无线缆",
|
|
95
|
+
"font_class": "wuxianlan1",
|
|
96
|
+
"unicode": "e748",
|
|
97
|
+
"unicode_decimal": 59208
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"icon_id": "39612285",
|
|
101
|
+
"name": "感应控制",
|
|
102
|
+
"font_class": "ganyingkongzhi1",
|
|
103
|
+
"unicode": "e749",
|
|
104
|
+
"unicode_decimal": 59209
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"icon_id": "39612287",
|
|
108
|
+
"name": "非机动车",
|
|
109
|
+
"font_class": "feijidongche1",
|
|
110
|
+
"unicode": "e74a",
|
|
111
|
+
"unicode_decimal": 59210
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"icon_id": "39612288",
|
|
115
|
+
"name": "感应式行人过街",
|
|
116
|
+
"font_class": "ganyingshihangrenguojie1",
|
|
117
|
+
"unicode": "e74b",
|
|
118
|
+
"unicode_decimal": 59211
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"icon_id": "39612289",
|
|
122
|
+
"name": "自适应",
|
|
123
|
+
"font_class": "zishiying1",
|
|
124
|
+
"unicode": "e74c",
|
|
125
|
+
"unicode_decimal": 59212
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"icon_id": "39612290",
|
|
129
|
+
"name": "有线",
|
|
130
|
+
"font_class": "youxian",
|
|
131
|
+
"unicode": "e74d",
|
|
132
|
+
"unicode_decimal": 59213
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"icon_id": "39612291",
|
|
136
|
+
"name": "行人过街",
|
|
137
|
+
"font_class": "hangrenguojie",
|
|
138
|
+
"unicode": "e74e",
|
|
139
|
+
"unicode_decimal": 59214
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"icon_id": "39612292",
|
|
143
|
+
"name": "恢复",
|
|
144
|
+
"font_class": "huifu",
|
|
145
|
+
"unicode": "e74f",
|
|
146
|
+
"unicode_decimal": 59215
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"icon_id": "39612293",
|
|
150
|
+
"name": "黄闪",
|
|
151
|
+
"font_class": "huangshan1",
|
|
152
|
+
"unicode": "e750",
|
|
153
|
+
"unicode_decimal": 59216
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"icon_id": "39612294",
|
|
157
|
+
"name": "系统",
|
|
158
|
+
"font_class": "xitong1",
|
|
159
|
+
"unicode": "e751",
|
|
160
|
+
"unicode_decimal": 59217
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"icon_id": "39612455",
|
|
164
|
+
"name": "自主控制",
|
|
165
|
+
"font_class": "zizhukongzhi",
|
|
166
|
+
"unicode": "e752",
|
|
167
|
+
"unicode_decimal": 59218
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"icon_id": "39561076",
|
|
171
|
+
"name": "分组管控",
|
|
172
|
+
"font_class": "fenzuguankong2",
|
|
173
|
+
"unicode": "e73e",
|
|
174
|
+
"unicode_decimal": 59198
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"icon_id": "39561084",
|
|
178
|
+
"name": "特勤路线",
|
|
179
|
+
"font_class": "teqinluxian3",
|
|
180
|
+
"unicode": "e73f",
|
|
181
|
+
"unicode_decimal": 59199
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"icon_id": "39561085",
|
|
185
|
+
"name": "路口管理",
|
|
186
|
+
"font_class": "lukouguanli3",
|
|
187
|
+
"unicode": "e740",
|
|
188
|
+
"unicode_decimal": 59200
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"icon_id": "39561086",
|
|
192
|
+
"name": "干线协调",
|
|
193
|
+
"font_class": "ganxianxietiao2",
|
|
194
|
+
"unicode": "e741",
|
|
195
|
+
"unicode_decimal": 59201
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"icon_id": "39456961",
|
|
199
|
+
"name": "路口",
|
|
200
|
+
"font_class": "lukou1",
|
|
201
|
+
"unicode": "e73d",
|
|
202
|
+
"unicode_decimal": 59197
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"icon_id": "39433502",
|
|
206
|
+
"name": "箭头",
|
|
207
|
+
"font_class": "jiantou",
|
|
208
|
+
"unicode": "e73c",
|
|
209
|
+
"unicode_decimal": 59196
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"icon_id": "39409984",
|
|
213
|
+
"name": "分组管控",
|
|
214
|
+
"font_class": "fenzuguankong1",
|
|
215
|
+
"unicode": "e738",
|
|
216
|
+
"unicode_decimal": 59192
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"icon_id": "39409985",
|
|
220
|
+
"name": "交通分析",
|
|
221
|
+
"font_class": "jiaotongfenxi1",
|
|
222
|
+
"unicode": "e739",
|
|
223
|
+
"unicode_decimal": 59193
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"icon_id": "39409986",
|
|
227
|
+
"name": "干线协调",
|
|
228
|
+
"font_class": "ganxianxietiao1",
|
|
229
|
+
"unicode": "e73a",
|
|
230
|
+
"unicode_decimal": 59194
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"icon_id": "39409987",
|
|
234
|
+
"name": "特勤路线",
|
|
235
|
+
"font_class": "teqinluxian2",
|
|
236
|
+
"unicode": "e73b",
|
|
237
|
+
"unicode_decimal": 59195
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"icon_id": "39384570",
|
|
241
|
+
"name": "路口管理",
|
|
242
|
+
"font_class": "lukouguanli2",
|
|
243
|
+
"unicode": "e72a",
|
|
244
|
+
"unicode_decimal": 59178
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"icon_id": "39384571",
|
|
248
|
+
"name": "路口管理-选中",
|
|
249
|
+
"font_class": "lukouguanli-xuanzhong",
|
|
250
|
+
"unicode": "e72b",
|
|
251
|
+
"unicode_decimal": 59179
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"icon_id": "39384572",
|
|
255
|
+
"name": "干线协调",
|
|
256
|
+
"font_class": "ganxianxietiao",
|
|
257
|
+
"unicode": "e72c",
|
|
258
|
+
"unicode_decimal": 59180
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"icon_id": "39384573",
|
|
262
|
+
"name": "干线协调-选中",
|
|
263
|
+
"font_class": "ganxianxietiao-xuanzhong",
|
|
264
|
+
"unicode": "e72d",
|
|
265
|
+
"unicode_decimal": 59181
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"icon_id": "39384574",
|
|
269
|
+
"name": "分组管控-选中",
|
|
270
|
+
"font_class": "fenzuguankong-xuanzhong",
|
|
271
|
+
"unicode": "e72e",
|
|
272
|
+
"unicode_decimal": 59182
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"icon_id": "39384575",
|
|
276
|
+
"name": "分组管控",
|
|
277
|
+
"font_class": "fenzuguankong",
|
|
278
|
+
"unicode": "e72f",
|
|
279
|
+
"unicode_decimal": 59183
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"icon_id": "39384577",
|
|
283
|
+
"name": "特勤路线-选中",
|
|
284
|
+
"font_class": "teqinluxian-xuanzhong",
|
|
285
|
+
"unicode": "e730",
|
|
286
|
+
"unicode_decimal": 59184
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"icon_id": "39384578",
|
|
290
|
+
"name": "特勤路线",
|
|
291
|
+
"font_class": "teqinluxian1",
|
|
292
|
+
"unicode": "e731",
|
|
293
|
+
"unicode_decimal": 59185
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"icon_id": "39384579",
|
|
297
|
+
"name": "信号机树-在线",
|
|
298
|
+
"font_class": "xinhaojishu-zaixian",
|
|
299
|
+
"unicode": "e732",
|
|
300
|
+
"unicode_decimal": 59186
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"icon_id": "39384580",
|
|
304
|
+
"name": "信号机树-离线",
|
|
305
|
+
"font_class": "xinhaojishu-lixian",
|
|
306
|
+
"unicode": "e733",
|
|
307
|
+
"unicode_decimal": 59187
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"icon_id": "39384582",
|
|
311
|
+
"name": "批量恢复",
|
|
312
|
+
"font_class": "pilianghuifu",
|
|
313
|
+
"unicode": "e734",
|
|
314
|
+
"unicode_decimal": 59188
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"icon_id": "39384583",
|
|
318
|
+
"name": "批量执行",
|
|
319
|
+
"font_class": "piliangzhihang",
|
|
320
|
+
"unicode": "e735",
|
|
321
|
+
"unicode_decimal": 59189
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"icon_id": "39384759",
|
|
325
|
+
"name": "搜索-下拉",
|
|
326
|
+
"font_class": "sousuo-xiala",
|
|
327
|
+
"unicode": "e736",
|
|
328
|
+
"unicode_decimal": 59190
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"icon_id": "39384760",
|
|
332
|
+
"name": "搜索-收起",
|
|
333
|
+
"font_class": "sousuo-shouqi",
|
|
334
|
+
"unicode": "e737",
|
|
335
|
+
"unicode_decimal": 59191
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"icon_id": "38250350",
|
|
339
|
+
"name": "名称前标",
|
|
340
|
+
"font_class": "mingchengqianbiao",
|
|
341
|
+
"unicode": "e729",
|
|
342
|
+
"unicode_decimal": 59177
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"icon_id": "35803989",
|
|
346
|
+
"name": "路网管理",
|
|
347
|
+
"font_class": "luwangguanli",
|
|
348
|
+
"unicode": "e728",
|
|
349
|
+
"unicode_decimal": 59176
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"icon_id": "35719981",
|
|
353
|
+
"name": "系统设置",
|
|
354
|
+
"font_class": "xitongshezhi",
|
|
355
|
+
"unicode": "e725",
|
|
356
|
+
"unicode_decimal": 59173
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"icon_id": "35719982",
|
|
360
|
+
"name": "第三方平台",
|
|
361
|
+
"font_class": "disanfangpingtai",
|
|
362
|
+
"unicode": "e726",
|
|
363
|
+
"unicode_decimal": 59174
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"icon_id": "35719983",
|
|
367
|
+
"name": "权限设置",
|
|
368
|
+
"font_class": "quanxianshezhi1",
|
|
369
|
+
"unicode": "e727",
|
|
370
|
+
"unicode_decimal": 59175
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"icon_id": "35719778",
|
|
374
|
+
"name": "设备故障统计",
|
|
375
|
+
"font_class": "shebeiguzhangtongji",
|
|
376
|
+
"unicode": "e723",
|
|
377
|
+
"unicode_decimal": 59171
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"icon_id": "35719779",
|
|
381
|
+
"name": "平台操作统计",
|
|
382
|
+
"font_class": "pingtaicaozuotongji",
|
|
383
|
+
"unicode": "e724",
|
|
384
|
+
"unicode_decimal": 59172
|
|
385
|
+
},
|
|
8
386
|
{
|
|
9
387
|
"icon_id": "35183324",
|
|
10
388
|
"name": "单方向相位",
|
package/src/icons/iconfont.ttf
CHANGED
|
Binary file
|
package/src/icons/iconfont.woff
CHANGED
|
Binary file
|
package/src/icons/iconfont.woff2
CHANGED
|
Binary file
|