openatc-components 0.4.62 → 0.4.64

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.
Files changed (456) hide show
  1. package/.babelrc +18 -18
  2. package/.editorconfig +9 -9
  3. package/.eslintignore +5 -5
  4. package/.eslintrc.js +31 -31
  5. package/.postcssrc.js +10 -10
  6. package/README.md +30 -30
  7. package/build/build.js +41 -41
  8. package/build/check-versions.js +54 -54
  9. package/build/package.config.js +58 -58
  10. package/build/package.dev.config.js +107 -107
  11. package/build/package.prod.config.js +160 -160
  12. package/build/utils.js +101 -101
  13. package/build/vue-loader.conf.js +22 -22
  14. package/build/webpack.base.conf.js +120 -120
  15. package/build/webpack.dev.conf.js +95 -95
  16. package/build/webpack.prod.conf.js +149 -149
  17. package/config/dev.env.js +8 -8
  18. package/config/index.js +94 -94
  19. package/config/prod.env.js +5 -5
  20. package/config/test.env.js +7 -7
  21. package/index.html +12 -12
  22. package/package/kisscomps/components/BoardCard/BoardCard.vue +133 -133
  23. package/package/kisscomps/components/ChannelRealtimeIntersection/ChannelRealtimeIntersection.vue +123 -123
  24. package/package/kisscomps/components/Channelization/Channelization.vue +585 -585
  25. package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  26. package/package/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  27. package/package/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  28. package/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +456 -456
  29. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  30. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  31. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  32. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  33. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  34. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  35. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  36. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  37. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  38. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  39. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  40. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  41. package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  42. package/package/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  43. package/package/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  44. package/package/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  45. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  46. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  47. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  48. package/package/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  49. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  50. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  51. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  52. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  53. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +368 -368
  54. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  55. package/package/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  56. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1022 -1022
  57. package/package/kisscomps/components/DrawChannelization/drawsvg/index.vue +144 -144
  58. package/package/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  59. package/package/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  60. package/package/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +172 -172
  61. package/package/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  62. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  63. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  64. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  65. package/package/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  66. package/package/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  67. package/package/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  68. package/package/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +162 -162
  69. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +629 -629
  70. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  71. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +447 -447
  72. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +341 -341
  73. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +497 -497
  74. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +353 -353
  75. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +359 -359
  76. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +443 -443
  77. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1302 -1302
  78. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  79. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +498 -498
  80. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +484 -484
  81. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +488 -488
  82. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +566 -566
  83. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +640 -640
  84. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +497 -497
  85. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +486 -486
  86. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +490 -490
  87. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +575 -575
  88. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  89. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  90. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  91. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  92. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  93. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  94. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +1598 -1598
  95. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +197 -197
  96. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +200 -196
  97. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  98. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  99. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  100. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/effectPos.json +115 -115
  101. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +115 -115
  102. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  103. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  104. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +219 -219
  105. package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +91 -91
  106. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +220 -220
  107. package/package/kisscomps/components/IntersectionMapDirSelect/customCrossDiagram.vue +702 -0
  108. package/package/kisscomps/components/IntersectionMapDirSelect/customintersectionmap.vue +188 -0
  109. package/package/kisscomps/components/IntersectionMapDirSelect/index.js +2 -0
  110. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +534 -534
  111. package/package/kisscomps/components/KanBan/kanban.vue +231 -231
  112. package/package/kisscomps/components/MessageBox/index.vue +96 -96
  113. package/package/kisscomps/components/OverLap/OverLap.vue +237 -237
  114. package/package/kisscomps/components/OverviewComponent/index.vue +853 -853
  115. package/package/kisscomps/components/PatternOptimize/PatternOptimize.vue +329 -329
  116. package/package/kisscomps/components/PatternStatus/PatternStatus.vue +1843 -1843
  117. package/package/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  118. package/package/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  119. package/package/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  120. package/package/kisscomps/components/PhaseLegend/PhaseLegend.vue +286 -286
  121. package/package/kisscomps/components/PhaseMarker/index.js +6 -6
  122. package/package/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  123. package/package/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  124. package/package/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  125. package/package/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  126. package/package/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  127. package/package/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  128. package/package/kisscomps/components/PhasePedSelect/index.vue +206 -206
  129. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +1027 -1027
  130. package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +365 -365
  131. package/package/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  132. package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +214 -214
  133. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +235 -235
  134. package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  135. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +131 -131
  136. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +470 -470
  137. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +871 -871
  138. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +151 -151
  139. package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +215 -215
  140. package/package/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  141. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +308 -308
  142. package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1293 -1293
  143. package/package/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +95 -95
  144. package/package/kisscomps/components/SelectCrossPhase/index.vue +418 -418
  145. package/package/kisscomps/components/SelectCrossPhase/utils.js +142 -142
  146. package/package/kisscomps/components/StageBord/StageBord.vue +303 -303
  147. package/package/kisscomps/components/StageOptimize/StageOptimize.vue +367 -367
  148. package/package/kisscomps/components/StageOptimize/index.js +2 -2
  149. package/package/kisscomps/components/StageOptimize/index.vue +310 -0
  150. package/package/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  151. package/package/kisscomps/components/Stages/index.vue +307 -307
  152. package/package/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  153. package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +1041 -1041
  154. package/package/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  155. package/package/kisscomps/components/XiaoKanban/index.vue +122 -122
  156. package/package/kisscomps/components/overView/index.vue +676 -676
  157. package/package/kisscomps/components/patternConfig/index.vue +802 -802
  158. package/package/kisscomps/components/patternConfig/pattern/patternTable.vue +599 -599
  159. package/package/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  160. package/package/kisscomps/components/patternConfig/planContent.vue +604 -604
  161. package/package/kisscomps/components/patternConfig/planMenu.vue +329 -329
  162. package/package/kisscomps/components/patternConfig/utils.js +152 -152
  163. package/package/kisscomps/components/patternList/patternList.vue +606 -606
  164. package/package/kisscomps/index.js +133 -131
  165. package/package/kissui.min.js +1 -1
  166. package/package/static/img/CrossRoadsSvg.66a6236.svg +529 -0
  167. package/package.json +126 -126
  168. package/src/App.vue +24 -24
  169. package/src/EdgeMgr/EdgeModelBase.js +16 -16
  170. package/src/EdgeMgr/controller/crossDiagramMgr.js +125 -125
  171. package/src/api/authapi.js +31 -31
  172. package/src/api/config.js +21 -21
  173. package/src/api/control.js +110 -110
  174. package/src/api/cross.js +62 -62
  175. package/src/api/device.js +135 -135
  176. package/src/api/fault.js +66 -66
  177. package/src/api/index.js +24 -24
  178. package/src/api/login.js +46 -46
  179. package/src/api/optimize.js +72 -72
  180. package/src/api/param.js +165 -165
  181. package/src/api/passwdAssest.js +101 -101
  182. package/src/api/permission.js +33 -33
  183. package/src/api/route.js +171 -171
  184. package/src/api/template.js +27 -27
  185. package/src/assets/font/LICENSE.txt +202 -202
  186. package/src/assets/font/font.css +6 -6
  187. package/src/i18n/index.js +26 -26
  188. package/src/i18n/language/en.js +1493 -1493
  189. package/src/i18n/language/index.js +25 -25
  190. package/src/i18n/language/zh.js +1493 -1493
  191. package/src/icons/demo_index.html +8445 -8445
  192. package/src/icons/iconfont.css +1451 -1451
  193. package/src/icons/iconfont.json +2522 -2522
  194. package/src/icons/index.js +20 -20
  195. package/src/icons/svg/azimuthlocking.svg +26 -26
  196. package/src/icons/svg/bendi.svg +110 -110
  197. package/src/icons/svg/bujin.svg +36 -36
  198. package/src/icons/svg/connectBlue.svg +7 -7
  199. package/src/icons/svg/currentvolume.svg +0 -0
  200. package/src/icons/svg/custom-BRTlane.svg +40 -40
  201. package/src/icons/svg/custom-buslane.svg +40 -40
  202. package/src/icons/svg/custom-detector.svg +12 -12
  203. package/src/icons/svg/custom-east-bottom.svg +32 -32
  204. package/src/icons/svg/custom-east-top.svg +32 -32
  205. package/src/icons/svg/custom-ewped.svg +35 -35
  206. package/src/icons/svg/custom-nonmotorizedlane.svg +40 -40
  207. package/src/icons/svg/custom-north-left.svg +32 -32
  208. package/src/icons/svg/custom-north-right.svg +32 -32
  209. package/src/icons/svg/custom-peddetector.svg +17 -17
  210. package/src/icons/svg/custom-snped.svg +35 -35
  211. package/src/icons/svg/custom-south-left.svg +32 -32
  212. package/src/icons/svg/custom-south-right.svg +32 -32
  213. package/src/icons/svg/custom-tramlane.svg +40 -40
  214. package/src/icons/svg/custom-vehiclebranch.svg +40 -40
  215. package/src/icons/svg/custom-vehiclemainroad.svg +41 -41
  216. package/src/icons/svg/custom-west-bottom.svg +32 -32
  217. package/src/icons/svg/custom-west-top.svg +32 -32
  218. package/src/icons/svg/custom-xlped.svg +14 -14
  219. package/src/icons/svg/custom-xrped.svg +14 -14
  220. package/src/icons/svg/cutRed.svg +7 -7
  221. package/src/icons/svg/cycle.svg +0 -0
  222. package/src/icons/svg/dingzhouqi.svg +34 -34
  223. package/src/icons/svg/ganyingkongzhi.svg +30 -30
  224. package/src/icons/svg/guandeng.svg +81 -81
  225. package/src/icons/svg/huangshan.svg +71 -71
  226. package/src/icons/svg/maincontrol.svg +0 -0
  227. package/src/icons/svg/manualcontrolbackground.svg +51 -51
  228. package/src/icons/svg/manualcontrolbackground1.svg +62 -62
  229. package/src/icons/svg/manualcontrolbackgrounden.svg +62 -62
  230. package/src/icons/svg/model.svg +0 -0
  231. package/src/icons/svg/phasediff.svg +0 -0
  232. package/src/icons/svg/prioritycontrol.svg +21 -21
  233. package/src/icons/svg/quanhong.svg +86 -86
  234. package/src/icons/svg/shanghe.svg +11 -11
  235. package/src/icons/svg/shoudong.svg +103 -103
  236. package/src/icons/svg/tentativeplan.svg +28 -28
  237. package/src/icons/svg/time.svg +0 -0
  238. package/src/icons/svg/wuxianlan.svg +46 -46
  239. package/src/icons/svg/xiala.svg +11 -11
  240. package/src/icons/svg/xingrenguojie.svg +33 -33
  241. package/src/icons/svg/xitong.svg +89 -89
  242. package/src/icons/svg/youxian.svg +41 -41
  243. package/src/icons/svg/zizhukongzhi.svg +43 -43
  244. package/src/kisscomps/components/BoardCard/BoardCard.vue +133 -133
  245. package/src/kisscomps/components/ChannelRealtimeIntersection/ChannelRealtimeIntersection.vue +123 -123
  246. package/src/kisscomps/components/Channelization/Channelization.vue +585 -585
  247. package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  248. package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  249. package/src/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  250. package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +456 -456
  251. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  252. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  253. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  254. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  255. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  256. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  257. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  258. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  259. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  260. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  261. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  262. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  263. package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  264. package/src/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  265. package/src/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  266. package/src/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  267. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  268. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  269. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  270. package/src/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  271. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  272. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  273. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  274. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  275. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +368 -368
  276. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  277. package/src/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  278. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1022 -1022
  279. package/src/kisscomps/components/DrawChannelization/drawsvg/index.vue +144 -144
  280. package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  281. package/src/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  282. package/src/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +172 -172
  283. package/src/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  284. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  285. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  286. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  287. package/src/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  288. package/src/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  289. package/src/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  290. package/src/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +162 -162
  291. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +629 -629
  292. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  293. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +447 -447
  294. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +341 -341
  295. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +497 -497
  296. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +353 -353
  297. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +359 -359
  298. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +443 -443
  299. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1302 -1302
  300. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  301. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +498 -498
  302. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +484 -484
  303. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +488 -488
  304. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +566 -566
  305. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +640 -640
  306. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +497 -497
  307. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +486 -486
  308. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +490 -490
  309. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +575 -575
  310. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  311. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  312. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  313. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  314. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  315. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  316. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +1598 -1598
  317. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +197 -197
  318. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +200 -196
  319. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  320. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  321. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  322. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/effectPos.json +115 -115
  323. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +115 -115
  324. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  325. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  326. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +219 -219
  327. package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +91 -91
  328. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +220 -220
  329. package/src/kisscomps/components/IntersectionMapDirSelect/customCrossDiagram.vue +702 -0
  330. package/src/kisscomps/components/IntersectionMapDirSelect/customintersectionmap.vue +188 -0
  331. package/src/kisscomps/components/IntersectionMapDirSelect/index.js +2 -0
  332. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +534 -534
  333. package/src/kisscomps/components/KanBan/kanban.vue +231 -231
  334. package/src/kisscomps/components/MessageBox/index.vue +96 -96
  335. package/src/kisscomps/components/OverLap/OverLap.vue +237 -237
  336. package/src/kisscomps/components/OverviewComponent/index.vue +853 -853
  337. package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +329 -329
  338. package/src/kisscomps/components/PatternStatus/PatternStatus.vue +1843 -1843
  339. package/src/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  340. package/src/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  341. package/src/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  342. package/src/kisscomps/components/PhaseLegend/PhaseLegend.vue +286 -286
  343. package/src/kisscomps/components/PhaseMarker/index.js +6 -6
  344. package/src/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  345. package/src/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  346. package/src/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  347. package/src/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  348. package/src/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  349. package/src/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  350. package/src/kisscomps/components/PhasePedSelect/index.vue +206 -206
  351. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +1027 -1027
  352. package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +365 -365
  353. package/src/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  354. package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +214 -214
  355. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +235 -235
  356. package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  357. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +131 -131
  358. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +470 -470
  359. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +871 -871
  360. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +151 -151
  361. package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +215 -215
  362. package/src/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  363. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +308 -308
  364. package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1293 -1293
  365. package/src/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +95 -95
  366. package/src/kisscomps/components/SelectCrossPhase/index.vue +418 -418
  367. package/src/kisscomps/components/SelectCrossPhase/utils.js +142 -142
  368. package/src/kisscomps/components/StageBord/StageBord.vue +303 -303
  369. package/src/kisscomps/components/StageOptimize/StageOptimize.vue +367 -367
  370. package/src/kisscomps/components/StageOptimize/index.js +2 -2
  371. package/src/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  372. package/src/kisscomps/components/Stages/index.vue +307 -307
  373. package/src/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  374. package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +1041 -1041
  375. package/src/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  376. package/src/kisscomps/components/XiaoKanban/index.vue +122 -122
  377. package/src/kisscomps/components/overView/index.vue +676 -676
  378. package/src/kisscomps/components/patternConfig/index.vue +802 -802
  379. package/src/kisscomps/components/patternConfig/pattern/patternTable.vue +599 -599
  380. package/src/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  381. package/src/kisscomps/components/patternConfig/planContent.vue +604 -604
  382. package/src/kisscomps/components/patternConfig/planMenu.vue +329 -329
  383. package/src/kisscomps/components/patternConfig/utils.js +152 -152
  384. package/src/kisscomps/components/patternList/patternList.vue +606 -606
  385. package/src/kisscomps/index.js +133 -131
  386. package/src/lib/publicjs/ArryListUtil.js +38 -38
  387. package/src/lib/publicjs/HttpurlMgr.js +45 -45
  388. package/src/lib/publicjs/KissApi.js +158 -158
  389. package/src/lib/publicjs/KissWSSub/Heartcheck.js +128 -128
  390. package/src/lib/publicjs/KissWSSub/KissWsSub.js +91 -91
  391. package/src/lib/publicjs/KissWSSub/KissWsSubByType.js +152 -152
  392. package/src/lib/publicjs/KissWSSub/SimuWsSubByType.js +44 -44
  393. package/src/lib/publicjs/KissWSSub/Sub.js +51 -51
  394. package/src/lib/publicjs/KissWSSub/SubChannel.js +119 -119
  395. package/src/lib/publicjs/basecomponents.js +65 -65
  396. package/src/lib/publicjs/localStorage.js +112 -112
  397. package/src/lib/publicjs/objdeepcopy.js +32 -32
  398. package/src/lib/publicjs/pageScroll.js +30 -30
  399. package/src/lib/publicjs/passwdAssest.js +101 -101
  400. package/src/lib/publicjs/styleclassfactory.js +32 -32
  401. package/src/main.js +51 -51
  402. package/src/router/index.js +63 -63
  403. package/src/store/index.js +26 -26
  404. package/src/store/modules/globalParam.js +67 -67
  405. package/src/utils/ControlFormat.js +68 -68
  406. package/src/utils/RingDataModel.js +335 -335
  407. package/src/utils/auth.js +199 -199
  408. package/src/utils/conflct.js +268 -268
  409. package/src/utils/conflictList.js +87 -87
  410. package/src/utils/dateFormat.js +41 -41
  411. package/src/utils/fault.js +196 -196
  412. package/src/utils/faultcode.js +225 -225
  413. package/src/utils/index.js +69 -69
  414. package/src/utils/pedphasedesc.js +119 -119
  415. package/src/utils/phaseList.js +203 -203
  416. package/src/utils/phasedesc.js +144 -144
  417. package/src/utils/responseMessage.js +21 -21
  418. package/src/utils/validate.js +43 -43
  419. package/src/views/customchannelization.vue +49 -49
  420. package/src/views/home.1.vue +479 -479
  421. package/src/views/home.vue +93 -93
  422. package/src/views/intersection.vue +547 -527
  423. package/src/views/intersection2.vue +328 -328
  424. package/src/views/overView.vue +63 -63
  425. package/src/views/patternConfig.vue +14792 -14792
  426. package/src/views/schemeconfig.vue +205 -205
  427. package/static/apiconfig.json +471 -471
  428. package/static/img/CrossRoadsSvg.svg +529 -0
  429. package/static/styles/channelizatioon.scss +433 -433
  430. package/static/styles/common.scss +30 -30
  431. package/static/styles/commonkanban.scss +168 -168
  432. package/static/styles/dark/index.scss +2 -2
  433. package/static/styles/dark/theme/element-dark.scss +44 -44
  434. package/static/styles/index.scss +84 -84
  435. package/static/styles/intersection.scss +180 -180
  436. package/static/styles/light/index.scss +2 -2
  437. package/static/styles/light/theme/element-light.scss +44 -44
  438. package/static/styles/overview.scss +146 -146
  439. package/static/styles/patternConfig.scss +56 -56
  440. package/static/styles/phasePedSelect.scss +71 -71
  441. package/static/styles/schemeconfig.scss +558 -558
  442. package/static/styles/stages.scss +57 -57
  443. package/static/styles/uiComponents.scss +57 -57
  444. package/static/styles/xiaokanban.scss +61 -61
  445. package/static/token.json +2 -2
  446. package/test/e2e/custom-assertions/elementCount.js +27 -27
  447. package/test/e2e/nightwatch.conf.js +46 -46
  448. package/test/e2e/runner.js +48 -48
  449. package/test/e2e/specs/test.js +19 -19
  450. package/test/unit/.eslintrc +7 -7
  451. package/test/unit/jest.conf.js +30 -30
  452. package/test/unit/setup.js +3 -3
  453. package/test/unit/specs/HelloWorld.spec.js +11 -11
  454. package/package/kissui.js +0 -216608
  455. package/pnpm-lock.yaml +0 -16362
  456. package/src/utils/errorcode.js +0 -231
@@ -1,2522 +1,2522 @@
1
- {
2
- "id": "815552",
3
- "name": "KISS UI",
4
- "font_family": "iconfont",
5
- "css_prefix_text": "icon-",
6
- "description": "",
7
- "glyphs": [
8
- {
9
- "icon_id": "41178406",
10
- "name": "通知",
11
- "font_class": "tongzhi",
12
- "unicode": "e765",
13
- "unicode_decimal": 59237
14
- },
15
- {
16
- "icon_id": "41131901",
17
- "name": "关灯1",
18
- "font_class": "guandeng1",
19
- "unicode": "e764",
20
- "unicode_decimal": 59236
21
- },
22
- {
23
- "icon_id": "41131799",
24
- "name": "相位锁定",
25
- "font_class": "xiangweisuoding1",
26
- "unicode": "e763",
27
- "unicode_decimal": 59235
28
- },
29
- {
30
- "icon_id": "40972397",
31
- "name": "路口管理菜单",
32
- "font_class": "lukouguanlicaidan",
33
- "unicode": "e762",
34
- "unicode_decimal": 59234
35
- },
36
- {
37
- "icon_id": "40927342",
38
- "name": "车道表",
39
- "font_class": "chedaobiao",
40
- "unicode": "e760",
41
- "unicode_decimal": 59232
42
- },
43
- {
44
- "icon_id": "40715600",
45
- "name": "阶段表",
46
- "font_class": "jieduanbiao",
47
- "unicode": "e761",
48
- "unicode_decimal": 59233
49
- },
50
- {
51
- "icon_id": "40625130",
52
- "name": "通道",
53
- "font_class": "tongdao",
54
- "unicode": "e75f",
55
- "unicode_decimal": 59231
56
- },
57
- {
58
- "icon_id": "40125389",
59
- "name": "调度配置",
60
- "font_class": "tiaodupeizhi",
61
- "unicode": "e75e",
62
- "unicode_decimal": 59230
63
- },
64
- {
65
- "icon_id": "40107946",
66
- "name": "相位锁定",
67
- "font_class": "xiangweisuoding",
68
- "unicode": "e75d",
69
- "unicode_decimal": 59229
70
- },
71
- {
72
- "icon_id": "40044154",
73
- "name": "阶段锁定",
74
- "font_class": "jieduansuoding",
75
- "unicode": "e75b",
76
- "unicode_decimal": 59227
77
- },
78
- {
79
- "icon_id": "40044155",
80
- "name": "方向锁定",
81
- "font_class": "fangxiangsuoding",
82
- "unicode": "e75c",
83
- "unicode_decimal": 59228
84
- },
85
- {
86
- "icon_id": "40042545",
87
- "name": "协调",
88
- "font_class": "xietiao",
89
- "unicode": "e75a",
90
- "unicode_decimal": 59226
91
- },
92
- {
93
- "icon_id": "39848959",
94
- "name": "返回",
95
- "font_class": "fanhui",
96
- "unicode": "e759",
97
- "unicode_decimal": 59225
98
- },
99
- {
100
- "icon_id": "39702170",
101
- "name": "北掉头左行",
102
- "font_class": "beidiaotouzuohang",
103
- "unicode": "e755",
104
- "unicode_decimal": 59221
105
- },
106
- {
107
- "icon_id": "39702171",
108
- "name": "东掉头左行",
109
- "font_class": "dongdiaotouzuohang",
110
- "unicode": "e756",
111
- "unicode_decimal": 59222
112
- },
113
- {
114
- "icon_id": "39702172",
115
- "name": "南掉头左行",
116
- "font_class": "nandiaotouzuohang",
117
- "unicode": "e757",
118
- "unicode_decimal": 59223
119
- },
120
- {
121
- "icon_id": "39702173",
122
- "name": "西掉头左行",
123
- "font_class": "xidiaotouzuohang",
124
- "unicode": "e758",
125
- "unicode_decimal": 59224
126
- },
127
- {
128
- "icon_id": "39617051",
129
- "name": "播放",
130
- "font_class": "bofang",
131
- "unicode": "e753",
132
- "unicode_decimal": 59219
133
- },
134
- {
135
- "icon_id": "39617162",
136
- "name": "配置",
137
- "font_class": "peizhi",
138
- "unicode": "e754",
139
- "unicode_decimal": 59220
140
- },
141
- {
142
- "icon_id": "39612277",
143
- "name": "步进",
144
- "font_class": "bujin1",
145
- "unicode": "e742",
146
- "unicode_decimal": 59202
147
- },
148
- {
149
- "icon_id": "39612278",
150
- "name": "本地",
151
- "font_class": "bendi1",
152
- "unicode": "e743",
153
- "unicode_decimal": 59203
154
- },
155
- {
156
- "icon_id": "39612279",
157
- "name": "全红",
158
- "font_class": "quanhong1",
159
- "unicode": "e744",
160
- "unicode_decimal": 59204
161
- },
162
- {
163
- "icon_id": "39612281",
164
- "name": "关灯",
165
- "font_class": "guandeng",
166
- "unicode": "e745",
167
- "unicode_decimal": 59205
168
- },
169
- {
170
- "icon_id": "39612282",
171
- "name": "定周期",
172
- "font_class": "dingzhouqi1",
173
- "unicode": "e746",
174
- "unicode_decimal": 59206
175
- },
176
- {
177
- "icon_id": "39612283",
178
- "name": "手动",
179
- "font_class": "shoudong",
180
- "unicode": "e747",
181
- "unicode_decimal": 59207
182
- },
183
- {
184
- "icon_id": "39612284",
185
- "name": "无线缆",
186
- "font_class": "wuxianlan1",
187
- "unicode": "e748",
188
- "unicode_decimal": 59208
189
- },
190
- {
191
- "icon_id": "39612285",
192
- "name": "感应控制",
193
- "font_class": "ganyingkongzhi1",
194
- "unicode": "e749",
195
- "unicode_decimal": 59209
196
- },
197
- {
198
- "icon_id": "39612287",
199
- "name": "非机动车",
200
- "font_class": "feijidongche1",
201
- "unicode": "e74a",
202
- "unicode_decimal": 59210
203
- },
204
- {
205
- "icon_id": "39612288",
206
- "name": "感应式行人过街",
207
- "font_class": "ganyingshihangrenguojie1",
208
- "unicode": "e74b",
209
- "unicode_decimal": 59211
210
- },
211
- {
212
- "icon_id": "39612289",
213
- "name": "自适应",
214
- "font_class": "zishiying1",
215
- "unicode": "e74c",
216
- "unicode_decimal": 59212
217
- },
218
- {
219
- "icon_id": "39612290",
220
- "name": "有线",
221
- "font_class": "youxian",
222
- "unicode": "e74d",
223
- "unicode_decimal": 59213
224
- },
225
- {
226
- "icon_id": "39612291",
227
- "name": "行人过街",
228
- "font_class": "hangrenguojie",
229
- "unicode": "e74e",
230
- "unicode_decimal": 59214
231
- },
232
- {
233
- "icon_id": "39612292",
234
- "name": "恢复",
235
- "font_class": "huifu",
236
- "unicode": "e74f",
237
- "unicode_decimal": 59215
238
- },
239
- {
240
- "icon_id": "39612293",
241
- "name": "黄闪",
242
- "font_class": "huangshan1",
243
- "unicode": "e750",
244
- "unicode_decimal": 59216
245
- },
246
- {
247
- "icon_id": "39612294",
248
- "name": "系统",
249
- "font_class": "xitong1",
250
- "unicode": "e751",
251
- "unicode_decimal": 59217
252
- },
253
- {
254
- "icon_id": "39612455",
255
- "name": "自主控制",
256
- "font_class": "zizhukongzhi",
257
- "unicode": "e752",
258
- "unicode_decimal": 59218
259
- },
260
- {
261
- "icon_id": "39561076",
262
- "name": "分组管控",
263
- "font_class": "fenzuguankong2",
264
- "unicode": "e73e",
265
- "unicode_decimal": 59198
266
- },
267
- {
268
- "icon_id": "39561084",
269
- "name": "特勤路线",
270
- "font_class": "teqinluxian3",
271
- "unicode": "e73f",
272
- "unicode_decimal": 59199
273
- },
274
- {
275
- "icon_id": "39561085",
276
- "name": "路口管理",
277
- "font_class": "lukouguanli3",
278
- "unicode": "e740",
279
- "unicode_decimal": 59200
280
- },
281
- {
282
- "icon_id": "39561086",
283
- "name": "干线协调",
284
- "font_class": "ganxianxietiao2",
285
- "unicode": "e741",
286
- "unicode_decimal": 59201
287
- },
288
- {
289
- "icon_id": "39456961",
290
- "name": "路口",
291
- "font_class": "lukou1",
292
- "unicode": "e73d",
293
- "unicode_decimal": 59197
294
- },
295
- {
296
- "icon_id": "39433502",
297
- "name": "箭头",
298
- "font_class": "jiantou",
299
- "unicode": "e73c",
300
- "unicode_decimal": 59196
301
- },
302
- {
303
- "icon_id": "39409984",
304
- "name": "分组管控",
305
- "font_class": "fenzuguankong1",
306
- "unicode": "e738",
307
- "unicode_decimal": 59192
308
- },
309
- {
310
- "icon_id": "39409985",
311
- "name": "交通分析",
312
- "font_class": "jiaotongfenxi1",
313
- "unicode": "e739",
314
- "unicode_decimal": 59193
315
- },
316
- {
317
- "icon_id": "39409986",
318
- "name": "干线协调",
319
- "font_class": "ganxianxietiao1",
320
- "unicode": "e73a",
321
- "unicode_decimal": 59194
322
- },
323
- {
324
- "icon_id": "39409987",
325
- "name": "特勤路线",
326
- "font_class": "teqinluxian2",
327
- "unicode": "e73b",
328
- "unicode_decimal": 59195
329
- },
330
- {
331
- "icon_id": "39384570",
332
- "name": "路口管理",
333
- "font_class": "lukouguanli2",
334
- "unicode": "e72a",
335
- "unicode_decimal": 59178
336
- },
337
- {
338
- "icon_id": "39384571",
339
- "name": "路口管理-选中",
340
- "font_class": "lukouguanli-xuanzhong",
341
- "unicode": "e72b",
342
- "unicode_decimal": 59179
343
- },
344
- {
345
- "icon_id": "39384572",
346
- "name": "干线协调",
347
- "font_class": "ganxianxietiao",
348
- "unicode": "e72c",
349
- "unicode_decimal": 59180
350
- },
351
- {
352
- "icon_id": "39384573",
353
- "name": "干线协调-选中",
354
- "font_class": "ganxianxietiao-xuanzhong",
355
- "unicode": "e72d",
356
- "unicode_decimal": 59181
357
- },
358
- {
359
- "icon_id": "39384574",
360
- "name": "分组管控-选中",
361
- "font_class": "fenzuguankong-xuanzhong",
362
- "unicode": "e72e",
363
- "unicode_decimal": 59182
364
- },
365
- {
366
- "icon_id": "39384575",
367
- "name": "分组管控",
368
- "font_class": "fenzuguankong",
369
- "unicode": "e72f",
370
- "unicode_decimal": 59183
371
- },
372
- {
373
- "icon_id": "39384577",
374
- "name": "特勤路线-选中",
375
- "font_class": "teqinluxian-xuanzhong",
376
- "unicode": "e730",
377
- "unicode_decimal": 59184
378
- },
379
- {
380
- "icon_id": "39384578",
381
- "name": "特勤路线",
382
- "font_class": "teqinluxian1",
383
- "unicode": "e731",
384
- "unicode_decimal": 59185
385
- },
386
- {
387
- "icon_id": "39384579",
388
- "name": "信号机树-在线",
389
- "font_class": "xinhaojishu-zaixian",
390
- "unicode": "e732",
391
- "unicode_decimal": 59186
392
- },
393
- {
394
- "icon_id": "39384580",
395
- "name": "信号机树-离线",
396
- "font_class": "xinhaojishu-lixian",
397
- "unicode": "e733",
398
- "unicode_decimal": 59187
399
- },
400
- {
401
- "icon_id": "39384582",
402
- "name": "批量恢复",
403
- "font_class": "pilianghuifu",
404
- "unicode": "e734",
405
- "unicode_decimal": 59188
406
- },
407
- {
408
- "icon_id": "39384583",
409
- "name": "批量执行",
410
- "font_class": "piliangzhihang",
411
- "unicode": "e735",
412
- "unicode_decimal": 59189
413
- },
414
- {
415
- "icon_id": "39384759",
416
- "name": "搜索-下拉",
417
- "font_class": "sousuo-xiala",
418
- "unicode": "e736",
419
- "unicode_decimal": 59190
420
- },
421
- {
422
- "icon_id": "39384760",
423
- "name": "搜索-收起",
424
- "font_class": "sousuo-shouqi",
425
- "unicode": "e737",
426
- "unicode_decimal": 59191
427
- },
428
- {
429
- "icon_id": "38250350",
430
- "name": "名称前标",
431
- "font_class": "mingchengqianbiao",
432
- "unicode": "e729",
433
- "unicode_decimal": 59177
434
- },
435
- {
436
- "icon_id": "35803989",
437
- "name": "路网管理",
438
- "font_class": "luwangguanli",
439
- "unicode": "e728",
440
- "unicode_decimal": 59176
441
- },
442
- {
443
- "icon_id": "35719981",
444
- "name": "系统设置",
445
- "font_class": "xitongshezhi",
446
- "unicode": "e725",
447
- "unicode_decimal": 59173
448
- },
449
- {
450
- "icon_id": "35719982",
451
- "name": "第三方平台",
452
- "font_class": "disanfangpingtai",
453
- "unicode": "e726",
454
- "unicode_decimal": 59174
455
- },
456
- {
457
- "icon_id": "35719983",
458
- "name": "权限设置",
459
- "font_class": "quanxianshezhi1",
460
- "unicode": "e727",
461
- "unicode_decimal": 59175
462
- },
463
- {
464
- "icon_id": "35719778",
465
- "name": "设备故障统计",
466
- "font_class": "shebeiguzhangtongji",
467
- "unicode": "e723",
468
- "unicode_decimal": 59171
469
- },
470
- {
471
- "icon_id": "35719779",
472
- "name": "平台操作统计",
473
- "font_class": "pingtaicaozuotongji",
474
- "unicode": "e724",
475
- "unicode_decimal": 59172
476
- },
477
- {
478
- "icon_id": "35183324",
479
- "name": "单方向相位",
480
- "font_class": "danfangxiangxiangwei",
481
- "unicode": "e722",
482
- "unicode_decimal": 59170
483
- },
484
- {
485
- "icon_id": "34920180",
486
- "name": "车道",
487
- "font_class": "chedao",
488
- "unicode": "e721",
489
- "unicode_decimal": 59169
490
- },
491
- {
492
- "icon_id": "34705649",
493
- "name": "平台记录",
494
- "font_class": "pingtaijilu",
495
- "unicode": "e71f",
496
- "unicode_decimal": 59167
497
- },
498
- {
499
- "icon_id": "34705650",
500
- "name": "路网拓扑",
501
- "font_class": "luwangtuopu",
502
- "unicode": "e720",
503
- "unicode_decimal": 59168
504
- },
505
- {
506
- "icon_id": "34217380",
507
- "name": "路口方位合集-拓展方向",
508
- "font_class": "lukoufangweiheji-tuozhanfangxiang",
509
- "unicode": "e71d",
510
- "unicode_decimal": 59165
511
- },
512
- {
513
- "icon_id": "34217381",
514
- "name": "人行横道合集-拓展方向",
515
- "font_class": "renhanghengdaoheji-tuozhanfangxiang",
516
- "unicode": "e71e",
517
- "unicode_decimal": 59166
518
- },
519
- {
520
- "icon_id": "34200908",
521
- "name": "东南人行横道",
522
- "font_class": "dongnanrenhanghengdao",
523
- "unicode": "e6f1",
524
- "unicode_decimal": 59121
525
- },
526
- {
527
- "icon_id": "34200909",
528
- "name": "东北上",
529
- "font_class": "dongbeishang",
530
- "unicode": "e6f2",
531
- "unicode_decimal": 59122
532
- },
533
- {
534
- "icon_id": "34200910",
535
- "name": "东北人行横道",
536
- "font_class": "dongbeirenhanghengdao",
537
- "unicode": "e6f3",
538
- "unicode_decimal": 59123
539
- },
540
- {
541
- "icon_id": "34200911",
542
- "name": "东南下",
543
- "font_class": "dongnanxia",
544
- "unicode": "e6f4",
545
- "unicode_decimal": 59124
546
- },
547
- {
548
- "icon_id": "34200912",
549
- "name": "西北人行横道",
550
- "font_class": "xibeirenhanghengdao",
551
- "unicode": "e6f5",
552
- "unicode_decimal": 59125
553
- },
554
- {
555
- "icon_id": "34200913",
556
- "name": "西北下",
557
- "font_class": "xibeixia",
558
- "unicode": "e6f6",
559
- "unicode_decimal": 59126
560
- },
561
- {
562
- "icon_id": "34200914",
563
- "name": "西南人行横道",
564
- "font_class": "xinanrenhanghengdao",
565
- "unicode": "e6f7",
566
- "unicode_decimal": 59127
567
- },
568
- {
569
- "icon_id": "34200915",
570
- "name": "西北上",
571
- "font_class": "xibeishang",
572
- "unicode": "e6f8",
573
- "unicode_decimal": 59128
574
- },
575
- {
576
- "icon_id": "34200916",
577
- "name": "西南上",
578
- "font_class": "xinanshang",
579
- "unicode": "e6f9",
580
- "unicode_decimal": 59129
581
- },
582
- {
583
- "icon_id": "34200917",
584
- "name": "西南下",
585
- "font_class": "xinanxia",
586
- "unicode": "e6fa",
587
- "unicode_decimal": 59130
588
- },
589
- {
590
- "icon_id": "34200918",
591
- "name": "东南上",
592
- "font_class": "dongnanshang",
593
- "unicode": "e6fb",
594
- "unicode_decimal": 59131
595
- },
596
- {
597
- "icon_id": "34200919",
598
- "name": "东北下",
599
- "font_class": "dongbeixia",
600
- "unicode": "e6fc",
601
- "unicode_decimal": 59132
602
- },
603
- {
604
- "icon_id": "34201111",
605
- "name": "东北右转",
606
- "font_class": "dongbeiyouzhuan",
607
- "unicode": "e6fd",
608
- "unicode_decimal": 59133
609
- },
610
- {
611
- "icon_id": "34201112",
612
- "name": "东北直行",
613
- "font_class": "dongbeizhihang",
614
- "unicode": "e6fe",
615
- "unicode_decimal": 59134
616
- },
617
- {
618
- "icon_id": "34201113",
619
- "name": "东北掉头",
620
- "font_class": "dongbeidiaotou",
621
- "unicode": "e6ff",
622
- "unicode_decimal": 59135
623
- },
624
- {
625
- "icon_id": "34201114",
626
- "name": "东南掉头",
627
- "font_class": "dongnandiaotou",
628
- "unicode": "e700",
629
- "unicode_decimal": 59136
630
- },
631
- {
632
- "icon_id": "34201115",
633
- "name": "东北左转",
634
- "font_class": "dongbeizuozhuan",
635
- "unicode": "e701",
636
- "unicode_decimal": 59137
637
- },
638
- {
639
- "icon_id": "34201116",
640
- "name": "东南直行",
641
- "font_class": "dongnanzhihang",
642
- "unicode": "e702",
643
- "unicode_decimal": 59138
644
- },
645
- {
646
- "icon_id": "34201117",
647
- "name": "东南右转",
648
- "font_class": "dongnanyouzhuan",
649
- "unicode": "e703",
650
- "unicode_decimal": 59139
651
- },
652
- {
653
- "icon_id": "34201118",
654
- "name": "东南左转",
655
- "font_class": "dongnanzuozhuan",
656
- "unicode": "e704",
657
- "unicode_decimal": 59140
658
- },
659
- {
660
- "icon_id": "34201119",
661
- "name": "西北右转",
662
- "font_class": "xibeiyouzhuan",
663
- "unicode": "e705",
664
- "unicode_decimal": 59141
665
- },
666
- {
667
- "icon_id": "34201120",
668
- "name": "西南直行",
669
- "font_class": "xinanzhihang",
670
- "unicode": "e706",
671
- "unicode_decimal": 59142
672
- },
673
- {
674
- "icon_id": "34201121",
675
- "name": "西北左转",
676
- "font_class": "xibeizuozhuan",
677
- "unicode": "e707",
678
- "unicode_decimal": 59143
679
- },
680
- {
681
- "icon_id": "34201122",
682
- "name": "西南掉头",
683
- "font_class": "xinandiaotou",
684
- "unicode": "e708",
685
- "unicode_decimal": 59144
686
- },
687
- {
688
- "icon_id": "34201123",
689
- "name": "西北掉头",
690
- "font_class": "xibeidiaotou",
691
- "unicode": "e709",
692
- "unicode_decimal": 59145
693
- },
694
- {
695
- "icon_id": "34201124",
696
- "name": "西南右转",
697
- "font_class": "xinanyouzhuan",
698
- "unicode": "e70a",
699
- "unicode_decimal": 59146
700
- },
701
- {
702
- "icon_id": "34201125",
703
- "name": "西北直行",
704
- "font_class": "xibeizhihang",
705
- "unicode": "e70b",
706
- "unicode_decimal": 59147
707
- },
708
- {
709
- "icon_id": "34201126",
710
- "name": "西南左转",
711
- "font_class": "xinanzuozhuan",
712
- "unicode": "e70c",
713
- "unicode_decimal": 59148
714
- },
715
- {
716
- "icon_id": "34201301",
717
- "name": "北右转",
718
- "font_class": "beiyouzhuan",
719
- "unicode": "e70d",
720
- "unicode_decimal": 59149
721
- },
722
- {
723
- "icon_id": "34201302",
724
- "name": "北直行",
725
- "font_class": "beizhihang",
726
- "unicode": "e70e",
727
- "unicode_decimal": 59150
728
- },
729
- {
730
- "icon_id": "34201303",
731
- "name": "北掉头",
732
- "font_class": "beidiaotou",
733
- "unicode": "e70f",
734
- "unicode_decimal": 59151
735
- },
736
- {
737
- "icon_id": "34201304",
738
- "name": "北左转",
739
- "font_class": "beizuozhuan",
740
- "unicode": "e710",
741
- "unicode_decimal": 59152
742
- },
743
- {
744
- "icon_id": "34201305",
745
- "name": "东直行",
746
- "font_class": "dongzhihang",
747
- "unicode": "e711",
748
- "unicode_decimal": 59153
749
- },
750
- {
751
- "icon_id": "34201306",
752
- "name": "东掉头",
753
- "font_class": "dongdiaotou",
754
- "unicode": "e712",
755
- "unicode_decimal": 59154
756
- },
757
- {
758
- "icon_id": "34201307",
759
- "name": "东右转",
760
- "font_class": "dongyouzhuan",
761
- "unicode": "e713",
762
- "unicode_decimal": 59155
763
- },
764
- {
765
- "icon_id": "34201308",
766
- "name": "南右转",
767
- "font_class": "nanyouzhuan",
768
- "unicode": "e714",
769
- "unicode_decimal": 59156
770
- },
771
- {
772
- "icon_id": "34201309",
773
- "name": "南直行",
774
- "font_class": "nanzhihang",
775
- "unicode": "e715",
776
- "unicode_decimal": 59157
777
- },
778
- {
779
- "icon_id": "34201310",
780
- "name": "南左转",
781
- "font_class": "nanzuozhuan",
782
- "unicode": "e716",
783
- "unicode_decimal": 59158
784
- },
785
- {
786
- "icon_id": "34201311",
787
- "name": "西直行",
788
- "font_class": "xizhihang",
789
- "unicode": "e717",
790
- "unicode_decimal": 59159
791
- },
792
- {
793
- "icon_id": "34201312",
794
- "name": "西右转",
795
- "font_class": "xiyouzhuan",
796
- "unicode": "e718",
797
- "unicode_decimal": 59160
798
- },
799
- {
800
- "icon_id": "34201313",
801
- "name": "东左转",
802
- "font_class": "dongzuozhuan",
803
- "unicode": "e719",
804
- "unicode_decimal": 59161
805
- },
806
- {
807
- "icon_id": "34201314",
808
- "name": "西掉头",
809
- "font_class": "xidiaotou",
810
- "unicode": "e71a",
811
- "unicode_decimal": 59162
812
- },
813
- {
814
- "icon_id": "34201315",
815
- "name": "西左转",
816
- "font_class": "xizuozhuan",
817
- "unicode": "e71b",
818
- "unicode_decimal": 59163
819
- },
820
- {
821
- "icon_id": "34201316",
822
- "name": "南掉头",
823
- "font_class": "nandiaotou",
824
- "unicode": "e71c",
825
- "unicode_decimal": 59164
826
- },
827
- {
828
- "icon_id": "33655750",
829
- "name": "虚相位-新",
830
- "font_class": "xuxiangwei-xin",
831
- "unicode": "e6f0",
832
- "unicode_decimal": 59120
833
- },
834
- {
835
- "icon_id": "33615013",
836
- "name": "历史数据",
837
- "font_class": "lishishuju",
838
- "unicode": "e6ea",
839
- "unicode_decimal": 59114
840
- },
841
- {
842
- "icon_id": "33615014",
843
- "name": "基础数据统计",
844
- "font_class": "jichushujutongji",
845
- "unicode": "e6eb",
846
- "unicode_decimal": 59115
847
- },
848
- {
849
- "icon_id": "33615015",
850
- "name": "操作频次统计",
851
- "font_class": "caozuopincitongji",
852
- "unicode": "e6ec",
853
- "unicode_decimal": 59116
854
- },
855
- {
856
- "icon_id": "33615016",
857
- "name": "交通特征分析",
858
- "font_class": "jiaotongtezhengfenxi",
859
- "unicode": "e6ed",
860
- "unicode_decimal": 59117
861
- },
862
- {
863
- "icon_id": "33615017",
864
- "name": "路口排行分析",
865
- "font_class": "lukoupaihangfenxi",
866
- "unicode": "e6ee",
867
- "unicode_decimal": 59118
868
- },
869
- {
870
- "icon_id": "33615018",
871
- "name": "路段排行分析",
872
- "font_class": "luduanpaihangfenxi",
873
- "unicode": "e6ef",
874
- "unicode_decimal": 59119
875
- },
876
- {
877
- "icon_id": "33389926",
878
- "name": "交通干预",
879
- "font_class": "jiaotongganyu",
880
- "unicode": "e6e9",
881
- "unicode_decimal": 59113
882
- },
883
- {
884
- "icon_id": "33051323",
885
- "name": "操作记录",
886
- "font_class": "caozuojilu1",
887
- "unicode": "e6ce",
888
- "unicode_decimal": 59086
889
- },
890
- {
891
- "icon_id": "33051324",
892
- "name": "地图",
893
- "font_class": "ditu",
894
- "unicode": "e6cf",
895
- "unicode_decimal": 59087
896
- },
897
- {
898
- "icon_id": "33051325",
899
- "name": "故障记录",
900
- "font_class": "guzhangjilu",
901
- "unicode": "e6d0",
902
- "unicode_decimal": 59088
903
- },
904
- {
905
- "icon_id": "33051326",
906
- "name": "交通优化",
907
- "font_class": "jiaotongyouhua",
908
- "unicode": "e6d1",
909
- "unicode_decimal": 59089
910
- },
911
- {
912
- "icon_id": "33051327",
913
- "name": "交通评估",
914
- "font_class": "jiaotongpinggu",
915
- "unicode": "e6d2",
916
- "unicode_decimal": 59090
917
- },
918
- {
919
- "icon_id": "33051328",
920
- "name": "路段管理",
921
- "font_class": "luduanguanli",
922
- "unicode": "e6d3",
923
- "unicode_decimal": 59091
924
- },
925
- {
926
- "icon_id": "33051329",
927
- "name": "路口管理",
928
- "font_class": "lukouguanli1",
929
- "unicode": "e6d4",
930
- "unicode_decimal": 59092
931
- },
932
- {
933
- "icon_id": "33051330",
934
- "name": "基础管理",
935
- "font_class": "jichuguanli",
936
- "unicode": "e6d5",
937
- "unicode_decimal": 59093
938
- },
939
- {
940
- "icon_id": "33051331",
941
- "name": "干线优化",
942
- "font_class": "ganxianyouhua",
943
- "unicode": "e6d6",
944
- "unicode_decimal": 59094
945
- },
946
- {
947
- "icon_id": "33051332",
948
- "name": "路口优化",
949
- "font_class": "lukouyouhua",
950
- "unicode": "e6d7",
951
- "unicode_decimal": 59095
952
- },
953
- {
954
- "icon_id": "33051333",
955
- "name": "路段评估",
956
- "font_class": "luduanpinggu",
957
- "unicode": "e6d8",
958
- "unicode_decimal": 59096
959
- },
960
- {
961
- "icon_id": "33051334",
962
- "name": "其他",
963
- "font_class": "qita",
964
- "unicode": "e6d9",
965
- "unicode_decimal": 59097
966
- },
967
- {
968
- "icon_id": "33051335",
969
- "name": "权限设置",
970
- "font_class": "quanxianshezhi",
971
- "unicode": "e6da",
972
- "unicode_decimal": 59098
973
- },
974
- {
975
- "icon_id": "33051336",
976
- "name": "主页",
977
- "font_class": "zhuye2",
978
- "unicode": "e6db",
979
- "unicode_decimal": 59099
980
- },
981
- {
982
- "icon_id": "33051337",
983
- "name": "路线管理",
984
- "font_class": "luxianguanli1",
985
- "unicode": "e6dc",
986
- "unicode_decimal": 59100
987
- },
988
- {
989
- "icon_id": "33051338",
990
- "name": "权限管理",
991
- "font_class": "quanxianguanli",
992
- "unicode": "e6dd",
993
- "unicode_decimal": 59101
994
- },
995
- {
996
- "icon_id": "33051339",
997
- "name": "路口评估",
998
- "font_class": "lukoupinggu",
999
- "unicode": "e6de",
1000
- "unicode_decimal": 59102
1001
- },
1002
- {
1003
- "icon_id": "33051340",
1004
- "name": "角色设置 ",
1005
- "font_class": "jiaoseshezhi",
1006
- "unicode": "e6df",
1007
- "unicode_decimal": 59103
1008
- },
1009
- {
1010
- "icon_id": "33051341",
1011
- "name": "协调路线",
1012
- "font_class": "xietiaoluxian1",
1013
- "unicode": "e6e0",
1014
- "unicode_decimal": 59104
1015
- },
1016
- {
1017
- "icon_id": "33051342",
1018
- "name": "组织机构",
1019
- "font_class": "zuzhijigou",
1020
- "unicode": "e6e1",
1021
- "unicode_decimal": 59105
1022
- },
1023
- {
1024
- "icon_id": "33051343",
1025
- "name": "瓶颈控制",
1026
- "font_class": "pingjingkongzhi1",
1027
- "unicode": "e6e2",
1028
- "unicode_decimal": 59106
1029
- },
1030
- {
1031
- "icon_id": "33051344",
1032
- "name": "用户管理",
1033
- "font_class": "yonghuguanli",
1034
- "unicode": "e6e3",
1035
- "unicode_decimal": 59107
1036
- },
1037
- {
1038
- "icon_id": "33051345",
1039
- "name": "区域协调",
1040
- "font_class": "quyuxietiao",
1041
- "unicode": "e6e4",
1042
- "unicode_decimal": 59108
1043
- },
1044
- {
1045
- "icon_id": "33051346",
1046
- "name": "交通分析",
1047
- "font_class": "jiaotongfenxi",
1048
- "unicode": "e6e5",
1049
- "unicode_decimal": 59109
1050
- },
1051
- {
1052
- "icon_id": "33051347",
1053
- "name": "特勤路线",
1054
- "font_class": "teqinluxian",
1055
- "unicode": "e6e6",
1056
- "unicode_decimal": 59110
1057
- },
1058
- {
1059
- "icon_id": "33051348",
1060
- "name": "设备状态",
1061
- "font_class": "shebeizhuangtai",
1062
- "unicode": "e6e7",
1063
- "unicode_decimal": 59111
1064
- },
1065
- {
1066
- "icon_id": "33051349",
1067
- "name": "特勤路线-1级菜单",
1068
- "font_class": "teqinluxian-1jicaidan",
1069
- "unicode": "e6e8",
1070
- "unicode_decimal": 59112
1071
- },
1072
- {
1073
- "icon_id": "15175195",
1074
- "name": "摄像头",
1075
- "font_class": "shexiangtou",
1076
- "unicode": "e790",
1077
- "unicode_decimal": 59280
1078
- },
1079
- {
1080
- "icon_id": "21899148",
1081
- "name": "icon-雷达",
1082
- "font_class": "icon-taikong10",
1083
- "unicode": "e657",
1084
- "unicode_decimal": 58967
1085
- },
1086
- {
1087
- "icon_id": "30108061",
1088
- "name": "lukouzhilu",
1089
- "font_class": "lukouzhilu",
1090
- "unicode": "e639",
1091
- "unicode_decimal": 58937
1092
- },
1093
- {
1094
- "icon_id": "29659767",
1095
- "name": "路口渠化",
1096
- "font_class": "lukouquhua",
1097
- "unicode": "e60e",
1098
- "unicode_decimal": 58894
1099
- },
1100
- {
1101
- "icon_id": "27455054",
1102
- "name": "虚相位",
1103
- "font_class": "xuxiangwei",
1104
- "unicode": "e6cd",
1105
- "unicode_decimal": 59085
1106
- },
1107
- {
1108
- "icon_id": "27419588",
1109
- "name": "行人",
1110
- "font_class": "hangren",
1111
- "unicode": "e6cc",
1112
- "unicode_decimal": 59084
1113
- },
1114
- {
1115
- "icon_id": "27412128",
1116
- "name": "BRT",
1117
- "font_class": "BRT",
1118
- "unicode": "e6c8",
1119
- "unicode_decimal": 59080
1120
- },
1121
- {
1122
- "icon_id": "27412129",
1123
- "name": "非机动车",
1124
- "font_class": "feijidongche",
1125
- "unicode": "e6c9",
1126
- "unicode_decimal": 59081
1127
- },
1128
- {
1129
- "icon_id": "27412130",
1130
- "name": "公交车",
1131
- "font_class": "gongjiaoche",
1132
- "unicode": "e6ca",
1133
- "unicode_decimal": 59082
1134
- },
1135
- {
1136
- "icon_id": "27412131",
1137
- "name": "有轨电车",
1138
- "font_class": "youguidianche",
1139
- "unicode": "e6cb",
1140
- "unicode_decimal": 59083
1141
- },
1142
- {
1143
- "icon_id": "26107142",
1144
- "name": "帮助",
1145
- "font_class": "bangzhu",
1146
- "unicode": "e6c7",
1147
- "unicode_decimal": 59079
1148
- },
1149
- {
1150
- "icon_id": "22150952",
1151
- "name": "南掉头-印尼",
1152
- "font_class": "nandiaotou-yinni",
1153
- "unicode": "e6c6",
1154
- "unicode_decimal": 59078
1155
- },
1156
- {
1157
- "icon_id": "22149254",
1158
- "name": "东调头-印尼",
1159
- "font_class": "dongtiaotou-yinni",
1160
- "unicode": "e6c2",
1161
- "unicode_decimal": 59074
1162
- },
1163
- {
1164
- "icon_id": "22149255",
1165
- "name": "北调头-印尼",
1166
- "font_class": "beitiaotou-yinni",
1167
- "unicode": "e6c3",
1168
- "unicode_decimal": 59075
1169
- },
1170
- {
1171
- "icon_id": "22149256",
1172
- "name": "南调头-印尼",
1173
- "font_class": "nantiaotou-yinni",
1174
- "unicode": "e6c4",
1175
- "unicode_decimal": 59076
1176
- },
1177
- {
1178
- "icon_id": "22149257",
1179
- "name": "西调头-印尼",
1180
- "font_class": "xitiaotou-yinni",
1181
- "unicode": "e6c5",
1182
- "unicode_decimal": 59077
1183
- },
1184
- {
1185
- "icon_id": "21883108",
1186
- "name": "cutRed",
1187
- "font_class": "cutRed",
1188
- "unicode": "e60c",
1189
- "unicode_decimal": 58892
1190
- },
1191
- {
1192
- "icon_id": "21883109",
1193
- "name": "connectBlue",
1194
- "font_class": "connectBlue",
1195
- "unicode": "e60d",
1196
- "unicode_decimal": 58893
1197
- },
1198
- {
1199
- "icon_id": "21753955",
1200
- "name": "相位合集-Openatc-admin",
1201
- "font_class": "xiangweiheji-Openatc-admin",
1202
- "unicode": "e6c1",
1203
- "unicode_decimal": 59073
1204
- },
1205
- {
1206
- "icon_id": "21193711",
1207
- "name": "视频菜单",
1208
- "font_class": "shipincaidan",
1209
- "unicode": "e6bf",
1210
- "unicode_decimal": 59071
1211
- },
1212
- {
1213
- "icon_id": "21193712",
1214
- "name": "视频刷新",
1215
- "font_class": "shipinshuaxin",
1216
- "unicode": "e6c0",
1217
- "unicode_decimal": 59072
1218
- },
1219
- {
1220
- "icon_id": "20330656",
1221
- "name": "评价",
1222
- "font_class": "pingjia",
1223
- "unicode": "e6be",
1224
- "unicode_decimal": 59070
1225
- },
1226
- {
1227
- "icon_id": "20326916",
1228
- "name": "控制",
1229
- "font_class": "kongzhi",
1230
- "unicode": "e6bd",
1231
- "unicode_decimal": 59069
1232
- },
1233
- {
1234
- "icon_id": "20192745",
1235
- "name": "通行效率",
1236
- "font_class": "tonghangxiaoshuai1",
1237
- "unicode": "e6bc",
1238
- "unicode_decimal": 59068
1239
- },
1240
- {
1241
- "icon_id": "20192314",
1242
- "name": "路段",
1243
- "font_class": "luduan",
1244
- "unicode": "e6bb",
1245
- "unicode_decimal": 59067
1246
- },
1247
- {
1248
- "icon_id": "19610512",
1249
- "name": "瓶颈控制",
1250
- "font_class": "pingjingkongzhi",
1251
- "unicode": "e6ba",
1252
- "unicode_decimal": 59066
1253
- },
1254
- {
1255
- "icon_id": "19391491",
1256
- "name": "斜向行人过街1",
1257
- "font_class": "xiexianghangrenguojie1",
1258
- "unicode": "e6b6",
1259
- "unicode_decimal": 59062
1260
- },
1261
- {
1262
- "icon_id": "19391492",
1263
- "name": "斜向行人过街2",
1264
- "font_class": "xiexianghangrenguojie2",
1265
- "unicode": "e6b7",
1266
- "unicode_decimal": 59063
1267
- },
1268
- {
1269
- "icon_id": "19391539",
1270
- "name": "路段行人过街-南北",
1271
- "font_class": "luduanhangrenguojie-nanbei",
1272
- "unicode": "e6b8",
1273
- "unicode_decimal": 59064
1274
- },
1275
- {
1276
- "icon_id": "19391540",
1277
- "name": "路段行人过街-东西",
1278
- "font_class": "luduanhangrenguojie-dongxi",
1279
- "unicode": "e6b9",
1280
- "unicode_decimal": 59065
1281
- },
1282
- {
1283
- "icon_id": "19391315",
1284
- "name": "北左",
1285
- "font_class": "beizuo",
1286
- "unicode": "e6ad",
1287
- "unicode_decimal": 59053
1288
- },
1289
- {
1290
- "icon_id": "19391356",
1291
- "name": "北右",
1292
- "font_class": "beiyou",
1293
- "unicode": "e6af",
1294
- "unicode_decimal": 59055
1295
- },
1296
- {
1297
- "icon_id": "19391360",
1298
- "name": "南左",
1299
- "font_class": "nanzuo",
1300
- "unicode": "e6b0",
1301
- "unicode_decimal": 59056
1302
- },
1303
- {
1304
- "icon_id": "19391361",
1305
- "name": "南右",
1306
- "font_class": "nanyou",
1307
- "unicode": "e6b1",
1308
- "unicode_decimal": 59057
1309
- },
1310
- {
1311
- "icon_id": "19391365",
1312
- "name": "东下",
1313
- "font_class": "dongxia",
1314
- "unicode": "e6b2",
1315
- "unicode_decimal": 59058
1316
- },
1317
- {
1318
- "icon_id": "19391366",
1319
- "name": "东上",
1320
- "font_class": "dongshang",
1321
- "unicode": "e6b3",
1322
- "unicode_decimal": 59059
1323
- },
1324
- {
1325
- "icon_id": "19391367",
1326
- "name": "西上",
1327
- "font_class": "xishang",
1328
- "unicode": "e6b4",
1329
- "unicode_decimal": 59060
1330
- },
1331
- {
1332
- "icon_id": "19391368",
1333
- "name": "西下",
1334
- "font_class": "xixia",
1335
- "unicode": "e6b5",
1336
- "unicode_decimal": 59061
1337
- },
1338
- {
1339
- "icon_id": "19386718",
1340
- "name": "协调路线",
1341
- "font_class": "xietiaoluxian",
1342
- "unicode": "e6aa",
1343
- "unicode_decimal": 59050
1344
- },
1345
- {
1346
- "icon_id": "19386719",
1347
- "name": "勤务路线",
1348
- "font_class": "qinwuluxian",
1349
- "unicode": "e6ab",
1350
- "unicode_decimal": 59051
1351
- },
1352
- {
1353
- "icon_id": "19386720",
1354
- "name": "路线管理",
1355
- "font_class": "luxianguanli",
1356
- "unicode": "e6ac",
1357
- "unicode_decimal": 59052
1358
- },
1359
- {
1360
- "icon_id": "19043951",
1361
- "name": "详细数据",
1362
- "font_class": "xiangxishuju",
1363
- "unicode": "e6a9",
1364
- "unicode_decimal": 59049
1365
- },
1366
- {
1367
- "icon_id": "19031554",
1368
- "name": "感应式行人过街",
1369
- "font_class": "ganyingshihangrenguojie",
1370
- "unicode": "e6a8",
1371
- "unicode_decimal": 59048
1372
- },
1373
- {
1374
- "icon_id": "18888681",
1375
- "name": "路口",
1376
- "font_class": "lukou",
1377
- "unicode": "e6a7",
1378
- "unicode_decimal": 59047
1379
- },
1380
- {
1381
- "icon_id": "18887012",
1382
- "name": "故障",
1383
- "font_class": "guzhang",
1384
- "unicode": "e6a3",
1385
- "unicode_decimal": 59043
1386
- },
1387
- {
1388
- "icon_id": "18887013",
1389
- "name": "拥堵",
1390
- "font_class": "yongdu",
1391
- "unicode": "e6a6",
1392
- "unicode_decimal": 59046
1393
- },
1394
- {
1395
- "icon_id": "18855016",
1396
- "name": "西行人",
1397
- "font_class": "xihangren1",
1398
- "unicode": "e6a5",
1399
- "unicode_decimal": 59045
1400
- },
1401
- {
1402
- "icon_id": "18854470",
1403
- "name": "东行人",
1404
- "font_class": "donghangren",
1405
- "unicode": "e6a1",
1406
- "unicode_decimal": 59041
1407
- },
1408
- {
1409
- "icon_id": "18854471",
1410
- "name": "南行人",
1411
- "font_class": "nanhangren",
1412
- "unicode": "e6a2",
1413
- "unicode_decimal": 59042
1414
- },
1415
- {
1416
- "icon_id": "18854473",
1417
- "name": "北行人",
1418
- "font_class": "beihangren",
1419
- "unicode": "e6a4",
1420
- "unicode_decimal": 59044
1421
- },
1422
- {
1423
- "icon_id": "18851871",
1424
- "name": "绿波",
1425
- "font_class": "lvbo",
1426
- "unicode": "e6a0",
1427
- "unicode_decimal": 59040
1428
- },
1429
- {
1430
- "icon_id": "18423010",
1431
- "name": "自适应",
1432
- "font_class": "zishiying",
1433
- "unicode": "e69f",
1434
- "unicode_decimal": 59039
1435
- },
1436
- {
1437
- "icon_id": "18058109",
1438
- "name": "更多关于",
1439
- "font_class": "gengduoguanyu",
1440
- "unicode": "e69e",
1441
- "unicode_decimal": 59038
1442
- },
1443
- {
1444
- "icon_id": "18005071",
1445
- "name": "饱和数据",
1446
- "font_class": "baoheshuju",
1447
- "unicode": "e69c",
1448
- "unicode_decimal": 59036
1449
- },
1450
- {
1451
- "icon_id": "18005072",
1452
- "name": "路口数据",
1453
- "font_class": "lukoushuju",
1454
- "unicode": "e69d",
1455
- "unicode_decimal": 59037
1456
- },
1457
- {
1458
- "icon_id": "17496381",
1459
- "name": "联盟实验室logo",
1460
- "font_class": "lianmengshiyanshilogo",
1461
- "unicode": "e69b",
1462
- "unicode_decimal": 59035
1463
- },
1464
- {
1465
- "icon_id": "17496270",
1466
- "name": "开源开放",
1467
- "font_class": "kaiyuankaifang",
1468
- "unicode": "e697",
1469
- "unicode_decimal": 59031
1470
- },
1471
- {
1472
- "icon_id": "17496271",
1473
- "name": "互动交流",
1474
- "font_class": "hudongjiaoliu",
1475
- "unicode": "e698",
1476
- "unicode_decimal": 59032
1477
- },
1478
- {
1479
- "icon_id": "17496272",
1480
- "name": "资源共享",
1481
- "font_class": "ziyuangongxiang",
1482
- "unicode": "e699",
1483
- "unicode_decimal": 59033
1484
- },
1485
- {
1486
- "icon_id": "17496273",
1487
- "name": "智能控制",
1488
- "font_class": "zhinengkongzhi",
1489
- "unicode": "e69a",
1490
- "unicode_decimal": 59034
1491
- },
1492
- {
1493
- "icon_id": "17213373",
1494
- "name": "待执勤",
1495
- "font_class": "daizhiqin",
1496
- "unicode": "e695",
1497
- "unicode_decimal": 59029
1498
- },
1499
- {
1500
- "icon_id": "17213374",
1501
- "name": "执勤中",
1502
- "font_class": "zhiqinzhong",
1503
- "unicode": "e696",
1504
- "unicode_decimal": 59030
1505
- },
1506
- {
1507
- "icon_id": "16639662",
1508
- "name": "区域协调评价",
1509
- "font_class": "quyuxietiaopingjia",
1510
- "unicode": "e690",
1511
- "unicode_decimal": 59024
1512
- },
1513
- {
1514
- "icon_id": "16639663",
1515
- "name": "路口数据模型",
1516
- "font_class": "lukoushujumoxing",
1517
- "unicode": "e692",
1518
- "unicode_decimal": 59026
1519
- },
1520
- {
1521
- "icon_id": "16639664",
1522
- "name": "路线组协调优化",
1523
- "font_class": "luxianzuxietiaoyouhua",
1524
- "unicode": "e693",
1525
- "unicode_decimal": 59027
1526
- },
1527
- {
1528
- "icon_id": "16639665",
1529
- "name": "路线协调评价",
1530
- "font_class": "luxianxietiaopingjia",
1531
- "unicode": "e694",
1532
- "unicode_decimal": 59028
1533
- },
1534
- {
1535
- "icon_id": "16303806",
1536
- "name": "统计",
1537
- "font_class": "tongji2",
1538
- "unicode": "e691",
1539
- "unicode_decimal": 59025
1540
- },
1541
- {
1542
- "icon_id": "16301171",
1543
- "name": "路线协调优化",
1544
- "font_class": "luxianxietiaoyouhua",
1545
- "unicode": "e681",
1546
- "unicode_decimal": 59009
1547
- },
1548
- {
1549
- "icon_id": "16301172",
1550
- "name": "主页",
1551
- "font_class": "zhuye1",
1552
- "unicode": "e682",
1553
- "unicode_decimal": 59010
1554
- },
1555
- {
1556
- "icon_id": "16301173",
1557
- "name": "区域协调优化",
1558
- "font_class": "quyuxietiaoyouhua",
1559
- "unicode": "e683",
1560
- "unicode_decimal": 59011
1561
- },
1562
- {
1563
- "icon_id": "16301174",
1564
- "name": "信号研判",
1565
- "font_class": "xinhaoyanpan",
1566
- "unicode": "e684",
1567
- "unicode_decimal": 59012
1568
- },
1569
- {
1570
- "icon_id": "16301175",
1571
- "name": "路口方案评价",
1572
- "font_class": "lukoufanganpingjia",
1573
- "unicode": "e685",
1574
- "unicode_decimal": 59013
1575
- },
1576
- {
1577
- "icon_id": "16301176",
1578
- "name": "信号优化",
1579
- "font_class": "xinhaoyouhua",
1580
- "unicode": "e686",
1581
- "unicode_decimal": 59014
1582
- },
1583
- {
1584
- "icon_id": "16301177",
1585
- "name": "路口排行",
1586
- "font_class": "lukoupaihang",
1587
- "unicode": "e687",
1588
- "unicode_decimal": 59015
1589
- },
1590
- {
1591
- "icon_id": "16301178",
1592
- "name": "拥堵研判",
1593
- "font_class": "yongduyanpan",
1594
- "unicode": "e688",
1595
- "unicode_decimal": 59016
1596
- },
1597
- {
1598
- "icon_id": "16301179",
1599
- "name": "操作记录",
1600
- "font_class": "caozuojilu",
1601
- "unicode": "e689",
1602
- "unicode_decimal": 59017
1603
- },
1604
- {
1605
- "icon_id": "16301180",
1606
- "name": "偶发拥堵预警",
1607
- "font_class": "oufayongduyujing",
1608
- "unicode": "e68a",
1609
- "unicode_decimal": 59018
1610
- },
1611
- {
1612
- "icon_id": "16301181",
1613
- "name": "静态绿波",
1614
- "font_class": "jingtailvbo",
1615
- "unicode": "e68b",
1616
- "unicode_decimal": 59019
1617
- },
1618
- {
1619
- "icon_id": "16301182",
1620
- "name": "路口管理",
1621
- "font_class": "lukouguanli",
1622
- "unicode": "e68c",
1623
- "unicode_decimal": 59020
1624
- },
1625
- {
1626
- "icon_id": "16301183",
1627
- "name": "信号管控",
1628
- "font_class": "xinhaoguankong",
1629
- "unicode": "e68d",
1630
- "unicode_decimal": 59021
1631
- },
1632
- {
1633
- "icon_id": "16301184",
1634
- "name": "常态拥堵预警",
1635
- "font_class": "changtaiyongduyujing",
1636
- "unicode": "e68e",
1637
- "unicode_decimal": 59022
1638
- },
1639
- {
1640
- "icon_id": "16301185",
1641
- "name": "设备管理",
1642
- "font_class": "shebeiguanli",
1643
- "unicode": "e68f",
1644
- "unicode_decimal": 59023
1645
- },
1646
- {
1647
- "icon_id": "9559068",
1648
- "name": "行人",
1649
- "font_class": "ziyuan1",
1650
- "unicode": "e628",
1651
- "unicode_decimal": 58920
1652
- },
1653
- {
1654
- "icon_id": "14329757",
1655
- "name": "相位合集最新",
1656
- "font_class": "zuixin1",
1657
- "unicode": "e680",
1658
- "unicode_decimal": 59008
1659
- },
1660
- {
1661
- "icon_id": "13483671",
1662
- "name": "用户",
1663
- "font_class": "yonghu",
1664
- "unicode": "e67f",
1665
- "unicode_decimal": 59007
1666
- },
1667
- {
1668
- "icon_id": "13145328",
1669
- "name": "未知类型",
1670
- "font_class": "weizhileixing",
1671
- "unicode": "e67e",
1672
- "unicode_decimal": 59006
1673
- },
1674
- {
1675
- "icon_id": "13117014",
1676
- "name": "无线缆",
1677
- "font_class": "wuxianlan",
1678
- "unicode": "e67d",
1679
- "unicode_decimal": 59005
1680
- },
1681
- {
1682
- "icon_id": "13058886",
1683
- "name": "本地",
1684
- "font_class": "bendi",
1685
- "unicode": "e67b",
1686
- "unicode_decimal": 59003
1687
- },
1688
- {
1689
- "icon_id": "13058822",
1690
- "name": "感应控制",
1691
- "font_class": "ganyingkongzhi",
1692
- "unicode": "e676",
1693
- "unicode_decimal": 58998
1694
- },
1695
- {
1696
- "icon_id": "13058823",
1697
- "name": "黄闪",
1698
- "font_class": "huangshan",
1699
- "unicode": "e677",
1700
- "unicode_decimal": 58999
1701
- },
1702
- {
1703
- "icon_id": "13058824",
1704
- "name": "步进",
1705
- "font_class": "bujin",
1706
- "unicode": "e678",
1707
- "unicode_decimal": 59000
1708
- },
1709
- {
1710
- "icon_id": "13058825",
1711
- "name": "定周期",
1712
- "font_class": "dingzhouqi",
1713
- "unicode": "e679",
1714
- "unicode_decimal": 59001
1715
- },
1716
- {
1717
- "icon_id": "13058826",
1718
- "name": "系统",
1719
- "font_class": "xitong",
1720
- "unicode": "e67a",
1721
- "unicode_decimal": 59002
1722
- },
1723
- {
1724
- "icon_id": "13058844",
1725
- "name": "全红",
1726
- "font_class": "quanhong",
1727
- "unicode": "e67c",
1728
- "unicode_decimal": 59004
1729
- },
1730
- {
1731
- "icon_id": "13058727",
1732
- "name": "图形界面",
1733
- "font_class": "tuxingjiemian",
1734
- "unicode": "e674",
1735
- "unicode_decimal": 58996
1736
- },
1737
- {
1738
- "icon_id": "13058728",
1739
- "name": "文字界面",
1740
- "font_class": "wenzijiemian",
1741
- "unicode": "e675",
1742
- "unicode_decimal": 58997
1743
- },
1744
- {
1745
- "icon_id": "8176672",
1746
- "name": "行人监控",
1747
- "font_class": "hangrenjiankong",
1748
- "unicode": "e671",
1749
- "unicode_decimal": 58993
1750
- },
1751
- {
1752
- "icon_id": "12101830",
1753
- "name": "引导icon",
1754
- "font_class": "yindaoicon",
1755
- "unicode": "e672",
1756
- "unicode_decimal": 58994
1757
- },
1758
- {
1759
- "icon_id": "12101831",
1760
- "name": "引导icon1",
1761
- "font_class": "yindaoicon1",
1762
- "unicode": "e673",
1763
- "unicode_decimal": 58995
1764
- },
1765
- {
1766
- "icon_id": "11526328",
1767
- "name": "资源 19",
1768
- "font_class": "ziyuan",
1769
- "unicode": "e670",
1770
- "unicode_decimal": 58992
1771
- },
1772
- {
1773
- "icon_id": "8136762",
1774
- "name": "球机",
1775
- "font_class": "shipin",
1776
- "unicode": "e60b",
1777
- "unicode_decimal": 58891
1778
- },
1779
- {
1780
- "icon_id": "11508258",
1781
- "name": "前往",
1782
- "font_class": "qianwang",
1783
- "unicode": "e66f",
1784
- "unicode_decimal": 58991
1785
- },
1786
- {
1787
- "icon_id": "11271479",
1788
- "name": "van",
1789
- "font_class": "van",
1790
- "unicode": "e66b",
1791
- "unicode_decimal": 58987
1792
- },
1793
- {
1794
- "icon_id": "11271480",
1795
- "name": "car",
1796
- "font_class": "car",
1797
- "unicode": "e66c",
1798
- "unicode_decimal": 58988
1799
- },
1800
- {
1801
- "icon_id": "11271481",
1802
- "name": "bus",
1803
- "font_class": "bus",
1804
- "unicode": "e66d",
1805
- "unicode_decimal": 58989
1806
- },
1807
- {
1808
- "icon_id": "11271482",
1809
- "name": "truck",
1810
- "font_class": "truck",
1811
- "unicode": "e66e",
1812
- "unicode_decimal": 58990
1813
- },
1814
- {
1815
- "icon_id": "10792348",
1816
- "name": "实时",
1817
- "font_class": "shishi",
1818
- "unicode": "e66a",
1819
- "unicode_decimal": 58986
1820
- },
1821
- {
1822
- "icon_id": "10701921",
1823
- "name": "报告",
1824
- "font_class": "baogao",
1825
- "unicode": "e669",
1826
- "unicode_decimal": 58985
1827
- },
1828
- {
1829
- "icon_id": "10075615",
1830
- "name": "交通仿真",
1831
- "font_class": "jiaotongfangzhen",
1832
- "unicode": "e65b",
1833
- "unicode_decimal": 58971
1834
- },
1835
- {
1836
- "icon_id": "10075616",
1837
- "name": "交通编辑",
1838
- "font_class": "jiaotongbianji",
1839
- "unicode": "e65c",
1840
- "unicode_decimal": 58972
1841
- },
1842
- {
1843
- "icon_id": "10075617",
1844
- "name": "优化决策",
1845
- "font_class": "youhuajuece",
1846
- "unicode": "e65d",
1847
- "unicode_decimal": 58973
1848
- },
1849
- {
1850
- "icon_id": "10075618",
1851
- "name": "交通态势",
1852
- "font_class": "jiaotongtaishi",
1853
- "unicode": "e65e",
1854
- "unicode_decimal": 58974
1855
- },
1856
- {
1857
- "icon_id": "10075619",
1858
- "name": "主页",
1859
- "font_class": "zhuye",
1860
- "unicode": "e65f",
1861
- "unicode_decimal": 58975
1862
- },
1863
- {
1864
- "icon_id": "10075620",
1865
- "name": "事件",
1866
- "font_class": "shijian",
1867
- "unicode": "e660",
1868
- "unicode_decimal": 58976
1869
- },
1870
- {
1871
- "icon_id": "10075621",
1872
- "name": "交通预测",
1873
- "font_class": "jiaotongyuce",
1874
- "unicode": "e661",
1875
- "unicode_decimal": 58977
1876
- },
1877
- {
1878
- "icon_id": "10075623",
1879
- "name": "仿真开始",
1880
- "font_class": "fangzhenkaishi",
1881
- "unicode": "e662",
1882
- "unicode_decimal": 58978
1883
- },
1884
- {
1885
- "icon_id": "10075624",
1886
- "name": "仿真停止",
1887
- "font_class": "fangzhentingzhi",
1888
- "unicode": "e663",
1889
- "unicode_decimal": 58979
1890
- },
1891
- {
1892
- "icon_id": "10075625",
1893
- "name": "仿真暂停",
1894
- "font_class": "fangzhenzanting",
1895
- "unicode": "e664",
1896
- "unicode_decimal": 58980
1897
- },
1898
- {
1899
- "icon_id": "10075626",
1900
- "name": "退出",
1901
- "font_class": "tuichu2",
1902
- "unicode": "e665",
1903
- "unicode_decimal": 58981
1904
- },
1905
- {
1906
- "icon_id": "10075627",
1907
- "name": "同步",
1908
- "font_class": "tongbu",
1909
- "unicode": "e666",
1910
- "unicode_decimal": 58982
1911
- },
1912
- {
1913
- "icon_id": "10075628",
1914
- "name": "日期选择",
1915
- "font_class": "riqixuanze",
1916
- "unicode": "e667",
1917
- "unicode_decimal": 58983
1918
- },
1919
- {
1920
- "icon_id": "9766126",
1921
- "name": "路口方位合集1",
1922
- "font_class": "lukoufangweiheji1",
1923
- "unicode": "e654",
1924
- "unicode_decimal": 58964
1925
- },
1926
- {
1927
- "icon_id": "9746844",
1928
- "name": "强度",
1929
- "font_class": "qiangdu1",
1930
- "unicode": "e65a",
1931
- "unicode_decimal": 58970
1932
- },
1933
- {
1934
- "icon_id": "9642018",
1935
- "name": "通行效率",
1936
- "font_class": "tonghangxiaoshuai",
1937
- "unicode": "e653",
1938
- "unicode_decimal": 58963
1939
- },
1940
- {
1941
- "icon_id": "9642057",
1942
- "name": "背景",
1943
- "font_class": "beijing",
1944
- "unicode": "e655",
1945
- "unicode_decimal": 58965
1946
- },
1947
- {
1948
- "icon_id": "9642058",
1949
- "name": "背景-选中",
1950
- "font_class": "beijing-xuanzhong",
1951
- "unicode": "e656",
1952
- "unicode_decimal": 58966
1953
- },
1954
- {
1955
- "icon_id": "8451618",
1956
- "name": "向下箭头",
1957
- "font_class": "xiangxiajiantou",
1958
- "unicode": "e651",
1959
- "unicode_decimal": 58961
1960
- },
1961
- {
1962
- "icon_id": "8451619",
1963
- "name": "向上箭头",
1964
- "font_class": "xiangshangjiantou",
1965
- "unicode": "e652",
1966
- "unicode_decimal": 58962
1967
- },
1968
- {
1969
- "icon_id": "8448600",
1970
- "name": "流量",
1971
- "font_class": "liuliang",
1972
- "unicode": "e64d",
1973
- "unicode_decimal": 58957
1974
- },
1975
- {
1976
- "icon_id": "8448601",
1977
- "name": "饱和度",
1978
- "font_class": "baohedu",
1979
- "unicode": "e64e",
1980
- "unicode_decimal": 58958
1981
- },
1982
- {
1983
- "icon_id": "8448602",
1984
- "name": "速度",
1985
- "font_class": "sudu",
1986
- "unicode": "e64f",
1987
- "unicode_decimal": 58959
1988
- },
1989
- {
1990
- "icon_id": "8448603",
1991
- "name": "排队长度",
1992
- "font_class": "paiduichangdu",
1993
- "unicode": "e650",
1994
- "unicode_decimal": 58960
1995
- },
1996
- {
1997
- "icon_id": "8394706",
1998
- "name": "交通状态",
1999
- "font_class": "jiaotongzhuangtai",
2000
- "unicode": "e649",
2001
- "unicode_decimal": 58953
2002
- },
2003
- {
2004
- "icon_id": "8394708",
2005
- "name": "路网",
2006
- "font_class": "luwang",
2007
- "unicode": "e64a",
2008
- "unicode_decimal": 58954
2009
- },
2010
- {
2011
- "icon_id": "8394709",
2012
- "name": "研判",
2013
- "font_class": "yanpan",
2014
- "unicode": "e64b",
2015
- "unicode_decimal": 58955
2016
- },
2017
- {
2018
- "icon_id": "8394783",
2019
- "name": "统计",
2020
- "font_class": "tongji",
2021
- "unicode": "e64c",
2022
- "unicode_decimal": 58956
2023
- },
2024
- {
2025
- "icon_id": "7999476",
2026
- "name": "提交并执行",
2027
- "font_class": "tijiaobingzhihang",
2028
- "unicode": "e648",
2029
- "unicode_decimal": 58952
2030
- },
2031
- {
2032
- "icon_id": "7922641",
2033
- "name": "1level",
2034
- "font_class": "level",
2035
- "unicode": "e643",
2036
- "unicode_decimal": 58947
2037
- },
2038
- {
2039
- "icon_id": "7922670",
2040
- "name": "3level",
2041
- "font_class": "level1",
2042
- "unicode": "e644",
2043
- "unicode_decimal": 58948
2044
- },
2045
- {
2046
- "icon_id": "7922673",
2047
- "name": "2level",
2048
- "font_class": "level2",
2049
- "unicode": "e645",
2050
- "unicode_decimal": 58949
2051
- },
2052
- {
2053
- "icon_id": "7922675",
2054
- "name": "4level",
2055
- "font_class": "level3",
2056
- "unicode": "e646",
2057
- "unicode_decimal": 58950
2058
- },
2059
- {
2060
- "icon_id": "7922676",
2061
- "name": "5level",
2062
- "font_class": "level4",
2063
- "unicode": "e647",
2064
- "unicode_decimal": 58951
2065
- },
2066
- {
2067
- "icon_id": "7553278",
2068
- "name": "退出1",
2069
- "font_class": "tuichu",
2070
- "unicode": "e641",
2071
- "unicode_decimal": 58945
2072
- },
2073
- {
2074
- "icon_id": "7553279",
2075
- "name": "退出",
2076
- "font_class": "tuichu1",
2077
- "unicode": "e642",
2078
- "unicode_decimal": 58946
2079
- },
2080
- {
2081
- "icon_id": "7382830",
2082
- "name": "Management",
2083
- "font_class": "Management",
2084
- "unicode": "e640",
2085
- "unicode_decimal": 58944
2086
- },
2087
- {
2088
- "icon_id": "7284699",
2089
- "name": "Single Point Optimiz",
2090
- "font_class": "SinglePointOptimiz",
2091
- "unicode": "e63e",
2092
- "unicode_decimal": 58942
2093
- },
2094
- {
2095
- "icon_id": "7284702",
2096
- "name": "Green Wave Optimize",
2097
- "font_class": "GreenWaveOptimize",
2098
- "unicode": "e63f",
2099
- "unicode_decimal": 58943
2100
- },
2101
- {
2102
- "icon_id": "7236051",
2103
- "name": "select3",
2104
- "font_class": "select2",
2105
- "unicode": "e63d",
2106
- "unicode_decimal": 58941
2107
- },
2108
- {
2109
- "icon_id": "7232860",
2110
- "name": "select",
2111
- "font_class": "select1",
2112
- "unicode": "e63c",
2113
- "unicode_decimal": 58940
2114
- },
2115
- {
2116
- "icon_id": "7220665",
2117
- "name": "select",
2118
- "font_class": "select",
2119
- "unicode": "e63b",
2120
- "unicode_decimal": 58939
2121
- },
2122
- {
2123
- "icon_id": "7214955",
2124
- "name": "noimages",
2125
- "font_class": "noimages",
2126
- "unicode": "e63a",
2127
- "unicode_decimal": 58938
2128
- },
2129
- {
2130
- "icon_id": "7183820",
2131
- "name": "15",
2132
- "font_class": "icon-test",
2133
- "unicode": "e629",
2134
- "unicode_decimal": 58921
2135
- },
2136
- {
2137
- "icon_id": "7183821",
2138
- "name": "16",
2139
- "font_class": "icon-test1",
2140
- "unicode": "e62a",
2141
- "unicode_decimal": 58922
2142
- },
2143
- {
2144
- "icon_id": "7183822",
2145
- "name": "1",
2146
- "font_class": "icon-test2",
2147
- "unicode": "e62b",
2148
- "unicode_decimal": 58923
2149
- },
2150
- {
2151
- "icon_id": "7183823",
2152
- "name": "3",
2153
- "font_class": "icon-test3",
2154
- "unicode": "e62c",
2155
- "unicode_decimal": 58924
2156
- },
2157
- {
2158
- "icon_id": "7183824",
2159
- "name": "2",
2160
- "font_class": "icon-test4",
2161
- "unicode": "e62d",
2162
- "unicode_decimal": 58925
2163
- },
2164
- {
2165
- "icon_id": "7183825",
2166
- "name": "5",
2167
- "font_class": "icon-test5",
2168
- "unicode": "e62e",
2169
- "unicode_decimal": 58926
2170
- },
2171
- {
2172
- "icon_id": "7183826",
2173
- "name": "4",
2174
- "font_class": "icon-test6",
2175
- "unicode": "e62f",
2176
- "unicode_decimal": 58927
2177
- },
2178
- {
2179
- "icon_id": "7183827",
2180
- "name": "6",
2181
- "font_class": "icon-test7",
2182
- "unicode": "e630",
2183
- "unicode_decimal": 58928
2184
- },
2185
- {
2186
- "icon_id": "7183828",
2187
- "name": "8",
2188
- "font_class": "icon-test8",
2189
- "unicode": "e631",
2190
- "unicode_decimal": 58929
2191
- },
2192
- {
2193
- "icon_id": "7183829",
2194
- "name": "7",
2195
- "font_class": "icon-test9",
2196
- "unicode": "e632",
2197
- "unicode_decimal": 58930
2198
- },
2199
- {
2200
- "icon_id": "7183830",
2201
- "name": "9",
2202
- "font_class": "icon-test10",
2203
- "unicode": "e633",
2204
- "unicode_decimal": 58931
2205
- },
2206
- {
2207
- "icon_id": "7183832",
2208
- "name": "12",
2209
- "font_class": "icon-test11",
2210
- "unicode": "e634",
2211
- "unicode_decimal": 58932
2212
- },
2213
- {
2214
- "icon_id": "7183833",
2215
- "name": "10",
2216
- "font_class": "icon-test12",
2217
- "unicode": "e635",
2218
- "unicode_decimal": 58933
2219
- },
2220
- {
2221
- "icon_id": "7183834",
2222
- "name": "11",
2223
- "font_class": "icon-test13",
2224
- "unicode": "e636",
2225
- "unicode_decimal": 58934
2226
- },
2227
- {
2228
- "icon_id": "7183835",
2229
- "name": "14",
2230
- "font_class": "icon-test14",
2231
- "unicode": "e637",
2232
- "unicode_decimal": 58935
2233
- },
2234
- {
2235
- "icon_id": "7183836",
2236
- "name": "13",
2237
- "font_class": "icon-test15",
2238
- "unicode": "e638",
2239
- "unicode_decimal": 58936
2240
- },
2241
- {
2242
- "icon_id": "7062888",
2243
- "name": "停止",
2244
- "font_class": "tingzhi1",
2245
- "unicode": "e622",
2246
- "unicode_decimal": 58914
2247
- },
2248
- {
2249
- "icon_id": "7062889",
2250
- "name": "启动",
2251
- "font_class": "qidong",
2252
- "unicode": "e623",
2253
- "unicode_decimal": 58915
2254
- },
2255
- {
2256
- "icon_id": "7062890",
2257
- "name": "减速",
2258
- "font_class": "jiansu",
2259
- "unicode": "e624",
2260
- "unicode_decimal": 58916
2261
- },
2262
- {
2263
- "icon_id": "7062891",
2264
- "name": "加速",
2265
- "font_class": "jiasu1",
2266
- "unicode": "e625",
2267
- "unicode_decimal": 58917
2268
- },
2269
- {
2270
- "icon_id": "7062892",
2271
- "name": "暂停",
2272
- "font_class": "zanting1",
2273
- "unicode": "e626",
2274
- "unicode_decimal": 58918
2275
- },
2276
- {
2277
- "icon_id": "7062893",
2278
- "name": "载入数据",
2279
- "font_class": "zairushuju",
2280
- "unicode": "e627",
2281
- "unicode_decimal": 58919
2282
- },
2283
- {
2284
- "icon_id": "7058227",
2285
- "name": "编辑",
2286
- "font_class": "bianji",
2287
- "unicode": "e620",
2288
- "unicode_decimal": 58912
2289
- },
2290
- {
2291
- "icon_id": "7058229",
2292
- "name": "删除",
2293
- "font_class": "shanchu",
2294
- "unicode": "e621",
2295
- "unicode_decimal": 58913
2296
- },
2297
- {
2298
- "icon_id": "1440108",
2299
- "name": "快进",
2300
- "font_class": "simujiasu",
2301
- "unicode": "e609",
2302
- "unicode_decimal": 58889
2303
- },
2304
- {
2305
- "icon_id": "1440120",
2306
- "name": "快退 上一个",
2307
- "font_class": "simujiansu",
2308
- "unicode": "e60a",
2309
- "unicode_decimal": 58890
2310
- },
2311
- {
2312
- "icon_id": "2815740",
2313
- "name": "暂停",
2314
- "font_class": "zanting",
2315
- "unicode": "e608",
2316
- "unicode_decimal": 58888
2317
- },
2318
- {
2319
- "icon_id": "3907976",
2320
- "name": "加速",
2321
- "font_class": "jiasu",
2322
- "unicode": "e658",
2323
- "unicode_decimal": 58968
2324
- },
2325
- {
2326
- "icon_id": "4672474",
2327
- "name": "急减速",
2328
- "font_class": "jijiansu",
2329
- "unicode": "e659",
2330
- "unicode_decimal": 58969
2331
- },
2332
- {
2333
- "icon_id": "7046169",
2334
- "name": "仿真进行状态",
2335
- "font_class": "fangzhenjinhangzhuangtai",
2336
- "unicode": "e61f",
2337
- "unicode_decimal": 58911
2338
- },
2339
- {
2340
- "icon_id": "768019",
2341
- "name": "load",
2342
- "font_class": "load",
2343
- "unicode": "e668",
2344
- "unicode_decimal": 58984
2345
- },
2346
- {
2347
- "icon_id": "2553880",
2348
- "name": "停止",
2349
- "font_class": "tingzhi",
2350
- "unicode": "e6ae",
2351
- "unicode_decimal": 59054
2352
- },
2353
- {
2354
- "icon_id": "4889699",
2355
- "name": "开始",
2356
- "font_class": "kaishi",
2357
- "unicode": "e61e",
2358
- "unicode_decimal": 58910
2359
- },
2360
- {
2361
- "icon_id": "2815724",
2362
- "name": "视频播放",
2363
- "font_class": "shipinbofang",
2364
- "unicode": "e600",
2365
- "unicode_decimal": 58880
2366
- },
2367
- {
2368
- "icon_id": "6756887",
2369
- "name": "个人中心",
2370
- "font_class": "gerenzhongxin",
2371
- "unicode": "e61d",
2372
- "unicode_decimal": 58909
2373
- },
2374
- {
2375
- "icon_id": "6729079",
2376
- "name": "仿真",
2377
- "font_class": "fangzhen",
2378
- "unicode": "e61c",
2379
- "unicode_decimal": 58908
2380
- },
2381
- {
2382
- "icon_id": "5830694",
2383
- "name": "搜索按钮",
2384
- "font_class": "sousuoanniu",
2385
- "unicode": "e60f",
2386
- "unicode_decimal": 58895
2387
- },
2388
- {
2389
- "icon_id": "5830695",
2390
- "name": "坐标",
2391
- "font_class": "zuobiao",
2392
- "unicode": "e610",
2393
- "unicode_decimal": 58896
2394
- },
2395
- {
2396
- "icon_id": "5830696",
2397
- "name": "标记",
2398
- "font_class": "biaoji",
2399
- "unicode": "e611",
2400
- "unicode_decimal": 58897
2401
- },
2402
- {
2403
- "icon_id": "5830698",
2404
- "name": "放大",
2405
- "font_class": "fangda",
2406
- "unicode": "e612",
2407
- "unicode_decimal": 58898
2408
- },
2409
- {
2410
- "icon_id": "5830699",
2411
- "name": "缩小",
2412
- "font_class": "suoxiao",
2413
- "unicode": "e613",
2414
- "unicode_decimal": 58899
2415
- },
2416
- {
2417
- "icon_id": "5830712",
2418
- "name": "测距",
2419
- "font_class": "ceju",
2420
- "unicode": "e614",
2421
- "unicode_decimal": 58900
2422
- },
2423
- {
2424
- "icon_id": "5830818",
2425
- "name": "工具箱",
2426
- "font_class": "gongjuxiang",
2427
- "unicode": "e615",
2428
- "unicode_decimal": 58901
2429
- },
2430
- {
2431
- "icon_id": "5830819",
2432
- "name": "图层",
2433
- "font_class": "tuceng",
2434
- "unicode": "e616",
2435
- "unicode_decimal": 58902
2436
- },
2437
- {
2438
- "icon_id": "5830977",
2439
- "name": "定位",
2440
- "font_class": "dingwei",
2441
- "unicode": "e617",
2442
- "unicode_decimal": 58903
2443
- },
2444
- {
2445
- "icon_id": "5830978",
2446
- "name": "设备定位",
2447
- "font_class": "shebeidingwei",
2448
- "unicode": "e618",
2449
- "unicode_decimal": 58904
2450
- },
2451
- {
2452
- "icon_id": "5830979",
2453
- "name": "实时状态",
2454
- "font_class": "shishizhuangtai",
2455
- "unicode": "e619",
2456
- "unicode_decimal": 58905
2457
- },
2458
- {
2459
- "icon_id": "5830980",
2460
- "name": "方案配置",
2461
- "font_class": "fanganpeizhi",
2462
- "unicode": "e61a",
2463
- "unicode_decimal": 58906
2464
- },
2465
- {
2466
- "icon_id": "5831004",
2467
- "name": "编辑路口信息",
2468
- "font_class": "bianjilukouxinxi",
2469
- "unicode": "e61b",
2470
- "unicode_decimal": 58907
2471
- },
2472
- {
2473
- "icon_id": "5830154",
2474
- "name": "me",
2475
- "font_class": "me",
2476
- "unicode": "e601",
2477
- "unicode_decimal": 58881
2478
- },
2479
- {
2480
- "icon_id": "5830155",
2481
- "name": "Maintenance",
2482
- "font_class": "Maintenance",
2483
- "unicode": "e602",
2484
- "unicode_decimal": 58882
2485
- },
2486
- {
2487
- "icon_id": "5830156",
2488
- "name": "Statistics",
2489
- "font_class": "Statistics",
2490
- "unicode": "e603",
2491
- "unicode_decimal": 58883
2492
- },
2493
- {
2494
- "icon_id": "5830158",
2495
- "name": "Black list",
2496
- "font_class": "Blacklist",
2497
- "unicode": "e604",
2498
- "unicode_decimal": 58884
2499
- },
2500
- {
2501
- "icon_id": "5830159",
2502
- "name": "Configuration",
2503
- "font_class": "Configuration",
2504
- "unicode": "e605",
2505
- "unicode_decimal": 58885
2506
- },
2507
- {
2508
- "icon_id": "5830160",
2509
- "name": "home",
2510
- "font_class": "home",
2511
- "unicode": "e606",
2512
- "unicode_decimal": 58886
2513
- },
2514
- {
2515
- "icon_id": "5830216",
2516
- "name": "Alarm",
2517
- "font_class": "Alarm",
2518
- "unicode": "e607",
2519
- "unicode_decimal": 58887
2520
- }
2521
- ]
2522
- }
1
+ {
2
+ "id": "815552",
3
+ "name": "KISS UI",
4
+ "font_family": "iconfont",
5
+ "css_prefix_text": "icon-",
6
+ "description": "",
7
+ "glyphs": [
8
+ {
9
+ "icon_id": "41178406",
10
+ "name": "通知",
11
+ "font_class": "tongzhi",
12
+ "unicode": "e765",
13
+ "unicode_decimal": 59237
14
+ },
15
+ {
16
+ "icon_id": "41131901",
17
+ "name": "关灯1",
18
+ "font_class": "guandeng1",
19
+ "unicode": "e764",
20
+ "unicode_decimal": 59236
21
+ },
22
+ {
23
+ "icon_id": "41131799",
24
+ "name": "相位锁定",
25
+ "font_class": "xiangweisuoding1",
26
+ "unicode": "e763",
27
+ "unicode_decimal": 59235
28
+ },
29
+ {
30
+ "icon_id": "40972397",
31
+ "name": "路口管理菜单",
32
+ "font_class": "lukouguanlicaidan",
33
+ "unicode": "e762",
34
+ "unicode_decimal": 59234
35
+ },
36
+ {
37
+ "icon_id": "40927342",
38
+ "name": "车道表",
39
+ "font_class": "chedaobiao",
40
+ "unicode": "e760",
41
+ "unicode_decimal": 59232
42
+ },
43
+ {
44
+ "icon_id": "40715600",
45
+ "name": "阶段表",
46
+ "font_class": "jieduanbiao",
47
+ "unicode": "e761",
48
+ "unicode_decimal": 59233
49
+ },
50
+ {
51
+ "icon_id": "40625130",
52
+ "name": "通道",
53
+ "font_class": "tongdao",
54
+ "unicode": "e75f",
55
+ "unicode_decimal": 59231
56
+ },
57
+ {
58
+ "icon_id": "40125389",
59
+ "name": "调度配置",
60
+ "font_class": "tiaodupeizhi",
61
+ "unicode": "e75e",
62
+ "unicode_decimal": 59230
63
+ },
64
+ {
65
+ "icon_id": "40107946",
66
+ "name": "相位锁定",
67
+ "font_class": "xiangweisuoding",
68
+ "unicode": "e75d",
69
+ "unicode_decimal": 59229
70
+ },
71
+ {
72
+ "icon_id": "40044154",
73
+ "name": "阶段锁定",
74
+ "font_class": "jieduansuoding",
75
+ "unicode": "e75b",
76
+ "unicode_decimal": 59227
77
+ },
78
+ {
79
+ "icon_id": "40044155",
80
+ "name": "方向锁定",
81
+ "font_class": "fangxiangsuoding",
82
+ "unicode": "e75c",
83
+ "unicode_decimal": 59228
84
+ },
85
+ {
86
+ "icon_id": "40042545",
87
+ "name": "协调",
88
+ "font_class": "xietiao",
89
+ "unicode": "e75a",
90
+ "unicode_decimal": 59226
91
+ },
92
+ {
93
+ "icon_id": "39848959",
94
+ "name": "返回",
95
+ "font_class": "fanhui",
96
+ "unicode": "e759",
97
+ "unicode_decimal": 59225
98
+ },
99
+ {
100
+ "icon_id": "39702170",
101
+ "name": "北掉头左行",
102
+ "font_class": "beidiaotouzuohang",
103
+ "unicode": "e755",
104
+ "unicode_decimal": 59221
105
+ },
106
+ {
107
+ "icon_id": "39702171",
108
+ "name": "东掉头左行",
109
+ "font_class": "dongdiaotouzuohang",
110
+ "unicode": "e756",
111
+ "unicode_decimal": 59222
112
+ },
113
+ {
114
+ "icon_id": "39702172",
115
+ "name": "南掉头左行",
116
+ "font_class": "nandiaotouzuohang",
117
+ "unicode": "e757",
118
+ "unicode_decimal": 59223
119
+ },
120
+ {
121
+ "icon_id": "39702173",
122
+ "name": "西掉头左行",
123
+ "font_class": "xidiaotouzuohang",
124
+ "unicode": "e758",
125
+ "unicode_decimal": 59224
126
+ },
127
+ {
128
+ "icon_id": "39617051",
129
+ "name": "播放",
130
+ "font_class": "bofang",
131
+ "unicode": "e753",
132
+ "unicode_decimal": 59219
133
+ },
134
+ {
135
+ "icon_id": "39617162",
136
+ "name": "配置",
137
+ "font_class": "peizhi",
138
+ "unicode": "e754",
139
+ "unicode_decimal": 59220
140
+ },
141
+ {
142
+ "icon_id": "39612277",
143
+ "name": "步进",
144
+ "font_class": "bujin1",
145
+ "unicode": "e742",
146
+ "unicode_decimal": 59202
147
+ },
148
+ {
149
+ "icon_id": "39612278",
150
+ "name": "本地",
151
+ "font_class": "bendi1",
152
+ "unicode": "e743",
153
+ "unicode_decimal": 59203
154
+ },
155
+ {
156
+ "icon_id": "39612279",
157
+ "name": "全红",
158
+ "font_class": "quanhong1",
159
+ "unicode": "e744",
160
+ "unicode_decimal": 59204
161
+ },
162
+ {
163
+ "icon_id": "39612281",
164
+ "name": "关灯",
165
+ "font_class": "guandeng",
166
+ "unicode": "e745",
167
+ "unicode_decimal": 59205
168
+ },
169
+ {
170
+ "icon_id": "39612282",
171
+ "name": "定周期",
172
+ "font_class": "dingzhouqi1",
173
+ "unicode": "e746",
174
+ "unicode_decimal": 59206
175
+ },
176
+ {
177
+ "icon_id": "39612283",
178
+ "name": "手动",
179
+ "font_class": "shoudong",
180
+ "unicode": "e747",
181
+ "unicode_decimal": 59207
182
+ },
183
+ {
184
+ "icon_id": "39612284",
185
+ "name": "无线缆",
186
+ "font_class": "wuxianlan1",
187
+ "unicode": "e748",
188
+ "unicode_decimal": 59208
189
+ },
190
+ {
191
+ "icon_id": "39612285",
192
+ "name": "感应控制",
193
+ "font_class": "ganyingkongzhi1",
194
+ "unicode": "e749",
195
+ "unicode_decimal": 59209
196
+ },
197
+ {
198
+ "icon_id": "39612287",
199
+ "name": "非机动车",
200
+ "font_class": "feijidongche1",
201
+ "unicode": "e74a",
202
+ "unicode_decimal": 59210
203
+ },
204
+ {
205
+ "icon_id": "39612288",
206
+ "name": "感应式行人过街",
207
+ "font_class": "ganyingshihangrenguojie1",
208
+ "unicode": "e74b",
209
+ "unicode_decimal": 59211
210
+ },
211
+ {
212
+ "icon_id": "39612289",
213
+ "name": "自适应",
214
+ "font_class": "zishiying1",
215
+ "unicode": "e74c",
216
+ "unicode_decimal": 59212
217
+ },
218
+ {
219
+ "icon_id": "39612290",
220
+ "name": "有线",
221
+ "font_class": "youxian",
222
+ "unicode": "e74d",
223
+ "unicode_decimal": 59213
224
+ },
225
+ {
226
+ "icon_id": "39612291",
227
+ "name": "行人过街",
228
+ "font_class": "hangrenguojie",
229
+ "unicode": "e74e",
230
+ "unicode_decimal": 59214
231
+ },
232
+ {
233
+ "icon_id": "39612292",
234
+ "name": "恢复",
235
+ "font_class": "huifu",
236
+ "unicode": "e74f",
237
+ "unicode_decimal": 59215
238
+ },
239
+ {
240
+ "icon_id": "39612293",
241
+ "name": "黄闪",
242
+ "font_class": "huangshan1",
243
+ "unicode": "e750",
244
+ "unicode_decimal": 59216
245
+ },
246
+ {
247
+ "icon_id": "39612294",
248
+ "name": "系统",
249
+ "font_class": "xitong1",
250
+ "unicode": "e751",
251
+ "unicode_decimal": 59217
252
+ },
253
+ {
254
+ "icon_id": "39612455",
255
+ "name": "自主控制",
256
+ "font_class": "zizhukongzhi",
257
+ "unicode": "e752",
258
+ "unicode_decimal": 59218
259
+ },
260
+ {
261
+ "icon_id": "39561076",
262
+ "name": "分组管控",
263
+ "font_class": "fenzuguankong2",
264
+ "unicode": "e73e",
265
+ "unicode_decimal": 59198
266
+ },
267
+ {
268
+ "icon_id": "39561084",
269
+ "name": "特勤路线",
270
+ "font_class": "teqinluxian3",
271
+ "unicode": "e73f",
272
+ "unicode_decimal": 59199
273
+ },
274
+ {
275
+ "icon_id": "39561085",
276
+ "name": "路口管理",
277
+ "font_class": "lukouguanli3",
278
+ "unicode": "e740",
279
+ "unicode_decimal": 59200
280
+ },
281
+ {
282
+ "icon_id": "39561086",
283
+ "name": "干线协调",
284
+ "font_class": "ganxianxietiao2",
285
+ "unicode": "e741",
286
+ "unicode_decimal": 59201
287
+ },
288
+ {
289
+ "icon_id": "39456961",
290
+ "name": "路口",
291
+ "font_class": "lukou1",
292
+ "unicode": "e73d",
293
+ "unicode_decimal": 59197
294
+ },
295
+ {
296
+ "icon_id": "39433502",
297
+ "name": "箭头",
298
+ "font_class": "jiantou",
299
+ "unicode": "e73c",
300
+ "unicode_decimal": 59196
301
+ },
302
+ {
303
+ "icon_id": "39409984",
304
+ "name": "分组管控",
305
+ "font_class": "fenzuguankong1",
306
+ "unicode": "e738",
307
+ "unicode_decimal": 59192
308
+ },
309
+ {
310
+ "icon_id": "39409985",
311
+ "name": "交通分析",
312
+ "font_class": "jiaotongfenxi1",
313
+ "unicode": "e739",
314
+ "unicode_decimal": 59193
315
+ },
316
+ {
317
+ "icon_id": "39409986",
318
+ "name": "干线协调",
319
+ "font_class": "ganxianxietiao1",
320
+ "unicode": "e73a",
321
+ "unicode_decimal": 59194
322
+ },
323
+ {
324
+ "icon_id": "39409987",
325
+ "name": "特勤路线",
326
+ "font_class": "teqinluxian2",
327
+ "unicode": "e73b",
328
+ "unicode_decimal": 59195
329
+ },
330
+ {
331
+ "icon_id": "39384570",
332
+ "name": "路口管理",
333
+ "font_class": "lukouguanli2",
334
+ "unicode": "e72a",
335
+ "unicode_decimal": 59178
336
+ },
337
+ {
338
+ "icon_id": "39384571",
339
+ "name": "路口管理-选中",
340
+ "font_class": "lukouguanli-xuanzhong",
341
+ "unicode": "e72b",
342
+ "unicode_decimal": 59179
343
+ },
344
+ {
345
+ "icon_id": "39384572",
346
+ "name": "干线协调",
347
+ "font_class": "ganxianxietiao",
348
+ "unicode": "e72c",
349
+ "unicode_decimal": 59180
350
+ },
351
+ {
352
+ "icon_id": "39384573",
353
+ "name": "干线协调-选中",
354
+ "font_class": "ganxianxietiao-xuanzhong",
355
+ "unicode": "e72d",
356
+ "unicode_decimal": 59181
357
+ },
358
+ {
359
+ "icon_id": "39384574",
360
+ "name": "分组管控-选中",
361
+ "font_class": "fenzuguankong-xuanzhong",
362
+ "unicode": "e72e",
363
+ "unicode_decimal": 59182
364
+ },
365
+ {
366
+ "icon_id": "39384575",
367
+ "name": "分组管控",
368
+ "font_class": "fenzuguankong",
369
+ "unicode": "e72f",
370
+ "unicode_decimal": 59183
371
+ },
372
+ {
373
+ "icon_id": "39384577",
374
+ "name": "特勤路线-选中",
375
+ "font_class": "teqinluxian-xuanzhong",
376
+ "unicode": "e730",
377
+ "unicode_decimal": 59184
378
+ },
379
+ {
380
+ "icon_id": "39384578",
381
+ "name": "特勤路线",
382
+ "font_class": "teqinluxian1",
383
+ "unicode": "e731",
384
+ "unicode_decimal": 59185
385
+ },
386
+ {
387
+ "icon_id": "39384579",
388
+ "name": "信号机树-在线",
389
+ "font_class": "xinhaojishu-zaixian",
390
+ "unicode": "e732",
391
+ "unicode_decimal": 59186
392
+ },
393
+ {
394
+ "icon_id": "39384580",
395
+ "name": "信号机树-离线",
396
+ "font_class": "xinhaojishu-lixian",
397
+ "unicode": "e733",
398
+ "unicode_decimal": 59187
399
+ },
400
+ {
401
+ "icon_id": "39384582",
402
+ "name": "批量恢复",
403
+ "font_class": "pilianghuifu",
404
+ "unicode": "e734",
405
+ "unicode_decimal": 59188
406
+ },
407
+ {
408
+ "icon_id": "39384583",
409
+ "name": "批量执行",
410
+ "font_class": "piliangzhihang",
411
+ "unicode": "e735",
412
+ "unicode_decimal": 59189
413
+ },
414
+ {
415
+ "icon_id": "39384759",
416
+ "name": "搜索-下拉",
417
+ "font_class": "sousuo-xiala",
418
+ "unicode": "e736",
419
+ "unicode_decimal": 59190
420
+ },
421
+ {
422
+ "icon_id": "39384760",
423
+ "name": "搜索-收起",
424
+ "font_class": "sousuo-shouqi",
425
+ "unicode": "e737",
426
+ "unicode_decimal": 59191
427
+ },
428
+ {
429
+ "icon_id": "38250350",
430
+ "name": "名称前标",
431
+ "font_class": "mingchengqianbiao",
432
+ "unicode": "e729",
433
+ "unicode_decimal": 59177
434
+ },
435
+ {
436
+ "icon_id": "35803989",
437
+ "name": "路网管理",
438
+ "font_class": "luwangguanli",
439
+ "unicode": "e728",
440
+ "unicode_decimal": 59176
441
+ },
442
+ {
443
+ "icon_id": "35719981",
444
+ "name": "系统设置",
445
+ "font_class": "xitongshezhi",
446
+ "unicode": "e725",
447
+ "unicode_decimal": 59173
448
+ },
449
+ {
450
+ "icon_id": "35719982",
451
+ "name": "第三方平台",
452
+ "font_class": "disanfangpingtai",
453
+ "unicode": "e726",
454
+ "unicode_decimal": 59174
455
+ },
456
+ {
457
+ "icon_id": "35719983",
458
+ "name": "权限设置",
459
+ "font_class": "quanxianshezhi1",
460
+ "unicode": "e727",
461
+ "unicode_decimal": 59175
462
+ },
463
+ {
464
+ "icon_id": "35719778",
465
+ "name": "设备故障统计",
466
+ "font_class": "shebeiguzhangtongji",
467
+ "unicode": "e723",
468
+ "unicode_decimal": 59171
469
+ },
470
+ {
471
+ "icon_id": "35719779",
472
+ "name": "平台操作统计",
473
+ "font_class": "pingtaicaozuotongji",
474
+ "unicode": "e724",
475
+ "unicode_decimal": 59172
476
+ },
477
+ {
478
+ "icon_id": "35183324",
479
+ "name": "单方向相位",
480
+ "font_class": "danfangxiangxiangwei",
481
+ "unicode": "e722",
482
+ "unicode_decimal": 59170
483
+ },
484
+ {
485
+ "icon_id": "34920180",
486
+ "name": "车道",
487
+ "font_class": "chedao",
488
+ "unicode": "e721",
489
+ "unicode_decimal": 59169
490
+ },
491
+ {
492
+ "icon_id": "34705649",
493
+ "name": "平台记录",
494
+ "font_class": "pingtaijilu",
495
+ "unicode": "e71f",
496
+ "unicode_decimal": 59167
497
+ },
498
+ {
499
+ "icon_id": "34705650",
500
+ "name": "路网拓扑",
501
+ "font_class": "luwangtuopu",
502
+ "unicode": "e720",
503
+ "unicode_decimal": 59168
504
+ },
505
+ {
506
+ "icon_id": "34217380",
507
+ "name": "路口方位合集-拓展方向",
508
+ "font_class": "lukoufangweiheji-tuozhanfangxiang",
509
+ "unicode": "e71d",
510
+ "unicode_decimal": 59165
511
+ },
512
+ {
513
+ "icon_id": "34217381",
514
+ "name": "人行横道合集-拓展方向",
515
+ "font_class": "renhanghengdaoheji-tuozhanfangxiang",
516
+ "unicode": "e71e",
517
+ "unicode_decimal": 59166
518
+ },
519
+ {
520
+ "icon_id": "34200908",
521
+ "name": "东南人行横道",
522
+ "font_class": "dongnanrenhanghengdao",
523
+ "unicode": "e6f1",
524
+ "unicode_decimal": 59121
525
+ },
526
+ {
527
+ "icon_id": "34200909",
528
+ "name": "东北上",
529
+ "font_class": "dongbeishang",
530
+ "unicode": "e6f2",
531
+ "unicode_decimal": 59122
532
+ },
533
+ {
534
+ "icon_id": "34200910",
535
+ "name": "东北人行横道",
536
+ "font_class": "dongbeirenhanghengdao",
537
+ "unicode": "e6f3",
538
+ "unicode_decimal": 59123
539
+ },
540
+ {
541
+ "icon_id": "34200911",
542
+ "name": "东南下",
543
+ "font_class": "dongnanxia",
544
+ "unicode": "e6f4",
545
+ "unicode_decimal": 59124
546
+ },
547
+ {
548
+ "icon_id": "34200912",
549
+ "name": "西北人行横道",
550
+ "font_class": "xibeirenhanghengdao",
551
+ "unicode": "e6f5",
552
+ "unicode_decimal": 59125
553
+ },
554
+ {
555
+ "icon_id": "34200913",
556
+ "name": "西北下",
557
+ "font_class": "xibeixia",
558
+ "unicode": "e6f6",
559
+ "unicode_decimal": 59126
560
+ },
561
+ {
562
+ "icon_id": "34200914",
563
+ "name": "西南人行横道",
564
+ "font_class": "xinanrenhanghengdao",
565
+ "unicode": "e6f7",
566
+ "unicode_decimal": 59127
567
+ },
568
+ {
569
+ "icon_id": "34200915",
570
+ "name": "西北上",
571
+ "font_class": "xibeishang",
572
+ "unicode": "e6f8",
573
+ "unicode_decimal": 59128
574
+ },
575
+ {
576
+ "icon_id": "34200916",
577
+ "name": "西南上",
578
+ "font_class": "xinanshang",
579
+ "unicode": "e6f9",
580
+ "unicode_decimal": 59129
581
+ },
582
+ {
583
+ "icon_id": "34200917",
584
+ "name": "西南下",
585
+ "font_class": "xinanxia",
586
+ "unicode": "e6fa",
587
+ "unicode_decimal": 59130
588
+ },
589
+ {
590
+ "icon_id": "34200918",
591
+ "name": "东南上",
592
+ "font_class": "dongnanshang",
593
+ "unicode": "e6fb",
594
+ "unicode_decimal": 59131
595
+ },
596
+ {
597
+ "icon_id": "34200919",
598
+ "name": "东北下",
599
+ "font_class": "dongbeixia",
600
+ "unicode": "e6fc",
601
+ "unicode_decimal": 59132
602
+ },
603
+ {
604
+ "icon_id": "34201111",
605
+ "name": "东北右转",
606
+ "font_class": "dongbeiyouzhuan",
607
+ "unicode": "e6fd",
608
+ "unicode_decimal": 59133
609
+ },
610
+ {
611
+ "icon_id": "34201112",
612
+ "name": "东北直行",
613
+ "font_class": "dongbeizhihang",
614
+ "unicode": "e6fe",
615
+ "unicode_decimal": 59134
616
+ },
617
+ {
618
+ "icon_id": "34201113",
619
+ "name": "东北掉头",
620
+ "font_class": "dongbeidiaotou",
621
+ "unicode": "e6ff",
622
+ "unicode_decimal": 59135
623
+ },
624
+ {
625
+ "icon_id": "34201114",
626
+ "name": "东南掉头",
627
+ "font_class": "dongnandiaotou",
628
+ "unicode": "e700",
629
+ "unicode_decimal": 59136
630
+ },
631
+ {
632
+ "icon_id": "34201115",
633
+ "name": "东北左转",
634
+ "font_class": "dongbeizuozhuan",
635
+ "unicode": "e701",
636
+ "unicode_decimal": 59137
637
+ },
638
+ {
639
+ "icon_id": "34201116",
640
+ "name": "东南直行",
641
+ "font_class": "dongnanzhihang",
642
+ "unicode": "e702",
643
+ "unicode_decimal": 59138
644
+ },
645
+ {
646
+ "icon_id": "34201117",
647
+ "name": "东南右转",
648
+ "font_class": "dongnanyouzhuan",
649
+ "unicode": "e703",
650
+ "unicode_decimal": 59139
651
+ },
652
+ {
653
+ "icon_id": "34201118",
654
+ "name": "东南左转",
655
+ "font_class": "dongnanzuozhuan",
656
+ "unicode": "e704",
657
+ "unicode_decimal": 59140
658
+ },
659
+ {
660
+ "icon_id": "34201119",
661
+ "name": "西北右转",
662
+ "font_class": "xibeiyouzhuan",
663
+ "unicode": "e705",
664
+ "unicode_decimal": 59141
665
+ },
666
+ {
667
+ "icon_id": "34201120",
668
+ "name": "西南直行",
669
+ "font_class": "xinanzhihang",
670
+ "unicode": "e706",
671
+ "unicode_decimal": 59142
672
+ },
673
+ {
674
+ "icon_id": "34201121",
675
+ "name": "西北左转",
676
+ "font_class": "xibeizuozhuan",
677
+ "unicode": "e707",
678
+ "unicode_decimal": 59143
679
+ },
680
+ {
681
+ "icon_id": "34201122",
682
+ "name": "西南掉头",
683
+ "font_class": "xinandiaotou",
684
+ "unicode": "e708",
685
+ "unicode_decimal": 59144
686
+ },
687
+ {
688
+ "icon_id": "34201123",
689
+ "name": "西北掉头",
690
+ "font_class": "xibeidiaotou",
691
+ "unicode": "e709",
692
+ "unicode_decimal": 59145
693
+ },
694
+ {
695
+ "icon_id": "34201124",
696
+ "name": "西南右转",
697
+ "font_class": "xinanyouzhuan",
698
+ "unicode": "e70a",
699
+ "unicode_decimal": 59146
700
+ },
701
+ {
702
+ "icon_id": "34201125",
703
+ "name": "西北直行",
704
+ "font_class": "xibeizhihang",
705
+ "unicode": "e70b",
706
+ "unicode_decimal": 59147
707
+ },
708
+ {
709
+ "icon_id": "34201126",
710
+ "name": "西南左转",
711
+ "font_class": "xinanzuozhuan",
712
+ "unicode": "e70c",
713
+ "unicode_decimal": 59148
714
+ },
715
+ {
716
+ "icon_id": "34201301",
717
+ "name": "北右转",
718
+ "font_class": "beiyouzhuan",
719
+ "unicode": "e70d",
720
+ "unicode_decimal": 59149
721
+ },
722
+ {
723
+ "icon_id": "34201302",
724
+ "name": "北直行",
725
+ "font_class": "beizhihang",
726
+ "unicode": "e70e",
727
+ "unicode_decimal": 59150
728
+ },
729
+ {
730
+ "icon_id": "34201303",
731
+ "name": "北掉头",
732
+ "font_class": "beidiaotou",
733
+ "unicode": "e70f",
734
+ "unicode_decimal": 59151
735
+ },
736
+ {
737
+ "icon_id": "34201304",
738
+ "name": "北左转",
739
+ "font_class": "beizuozhuan",
740
+ "unicode": "e710",
741
+ "unicode_decimal": 59152
742
+ },
743
+ {
744
+ "icon_id": "34201305",
745
+ "name": "东直行",
746
+ "font_class": "dongzhihang",
747
+ "unicode": "e711",
748
+ "unicode_decimal": 59153
749
+ },
750
+ {
751
+ "icon_id": "34201306",
752
+ "name": "东掉头",
753
+ "font_class": "dongdiaotou",
754
+ "unicode": "e712",
755
+ "unicode_decimal": 59154
756
+ },
757
+ {
758
+ "icon_id": "34201307",
759
+ "name": "东右转",
760
+ "font_class": "dongyouzhuan",
761
+ "unicode": "e713",
762
+ "unicode_decimal": 59155
763
+ },
764
+ {
765
+ "icon_id": "34201308",
766
+ "name": "南右转",
767
+ "font_class": "nanyouzhuan",
768
+ "unicode": "e714",
769
+ "unicode_decimal": 59156
770
+ },
771
+ {
772
+ "icon_id": "34201309",
773
+ "name": "南直行",
774
+ "font_class": "nanzhihang",
775
+ "unicode": "e715",
776
+ "unicode_decimal": 59157
777
+ },
778
+ {
779
+ "icon_id": "34201310",
780
+ "name": "南左转",
781
+ "font_class": "nanzuozhuan",
782
+ "unicode": "e716",
783
+ "unicode_decimal": 59158
784
+ },
785
+ {
786
+ "icon_id": "34201311",
787
+ "name": "西直行",
788
+ "font_class": "xizhihang",
789
+ "unicode": "e717",
790
+ "unicode_decimal": 59159
791
+ },
792
+ {
793
+ "icon_id": "34201312",
794
+ "name": "西右转",
795
+ "font_class": "xiyouzhuan",
796
+ "unicode": "e718",
797
+ "unicode_decimal": 59160
798
+ },
799
+ {
800
+ "icon_id": "34201313",
801
+ "name": "东左转",
802
+ "font_class": "dongzuozhuan",
803
+ "unicode": "e719",
804
+ "unicode_decimal": 59161
805
+ },
806
+ {
807
+ "icon_id": "34201314",
808
+ "name": "西掉头",
809
+ "font_class": "xidiaotou",
810
+ "unicode": "e71a",
811
+ "unicode_decimal": 59162
812
+ },
813
+ {
814
+ "icon_id": "34201315",
815
+ "name": "西左转",
816
+ "font_class": "xizuozhuan",
817
+ "unicode": "e71b",
818
+ "unicode_decimal": 59163
819
+ },
820
+ {
821
+ "icon_id": "34201316",
822
+ "name": "南掉头",
823
+ "font_class": "nandiaotou",
824
+ "unicode": "e71c",
825
+ "unicode_decimal": 59164
826
+ },
827
+ {
828
+ "icon_id": "33655750",
829
+ "name": "虚相位-新",
830
+ "font_class": "xuxiangwei-xin",
831
+ "unicode": "e6f0",
832
+ "unicode_decimal": 59120
833
+ },
834
+ {
835
+ "icon_id": "33615013",
836
+ "name": "历史数据",
837
+ "font_class": "lishishuju",
838
+ "unicode": "e6ea",
839
+ "unicode_decimal": 59114
840
+ },
841
+ {
842
+ "icon_id": "33615014",
843
+ "name": "基础数据统计",
844
+ "font_class": "jichushujutongji",
845
+ "unicode": "e6eb",
846
+ "unicode_decimal": 59115
847
+ },
848
+ {
849
+ "icon_id": "33615015",
850
+ "name": "操作频次统计",
851
+ "font_class": "caozuopincitongji",
852
+ "unicode": "e6ec",
853
+ "unicode_decimal": 59116
854
+ },
855
+ {
856
+ "icon_id": "33615016",
857
+ "name": "交通特征分析",
858
+ "font_class": "jiaotongtezhengfenxi",
859
+ "unicode": "e6ed",
860
+ "unicode_decimal": 59117
861
+ },
862
+ {
863
+ "icon_id": "33615017",
864
+ "name": "路口排行分析",
865
+ "font_class": "lukoupaihangfenxi",
866
+ "unicode": "e6ee",
867
+ "unicode_decimal": 59118
868
+ },
869
+ {
870
+ "icon_id": "33615018",
871
+ "name": "路段排行分析",
872
+ "font_class": "luduanpaihangfenxi",
873
+ "unicode": "e6ef",
874
+ "unicode_decimal": 59119
875
+ },
876
+ {
877
+ "icon_id": "33389926",
878
+ "name": "交通干预",
879
+ "font_class": "jiaotongganyu",
880
+ "unicode": "e6e9",
881
+ "unicode_decimal": 59113
882
+ },
883
+ {
884
+ "icon_id": "33051323",
885
+ "name": "操作记录",
886
+ "font_class": "caozuojilu1",
887
+ "unicode": "e6ce",
888
+ "unicode_decimal": 59086
889
+ },
890
+ {
891
+ "icon_id": "33051324",
892
+ "name": "地图",
893
+ "font_class": "ditu",
894
+ "unicode": "e6cf",
895
+ "unicode_decimal": 59087
896
+ },
897
+ {
898
+ "icon_id": "33051325",
899
+ "name": "故障记录",
900
+ "font_class": "guzhangjilu",
901
+ "unicode": "e6d0",
902
+ "unicode_decimal": 59088
903
+ },
904
+ {
905
+ "icon_id": "33051326",
906
+ "name": "交通优化",
907
+ "font_class": "jiaotongyouhua",
908
+ "unicode": "e6d1",
909
+ "unicode_decimal": 59089
910
+ },
911
+ {
912
+ "icon_id": "33051327",
913
+ "name": "交通评估",
914
+ "font_class": "jiaotongpinggu",
915
+ "unicode": "e6d2",
916
+ "unicode_decimal": 59090
917
+ },
918
+ {
919
+ "icon_id": "33051328",
920
+ "name": "路段管理",
921
+ "font_class": "luduanguanli",
922
+ "unicode": "e6d3",
923
+ "unicode_decimal": 59091
924
+ },
925
+ {
926
+ "icon_id": "33051329",
927
+ "name": "路口管理",
928
+ "font_class": "lukouguanli1",
929
+ "unicode": "e6d4",
930
+ "unicode_decimal": 59092
931
+ },
932
+ {
933
+ "icon_id": "33051330",
934
+ "name": "基础管理",
935
+ "font_class": "jichuguanli",
936
+ "unicode": "e6d5",
937
+ "unicode_decimal": 59093
938
+ },
939
+ {
940
+ "icon_id": "33051331",
941
+ "name": "干线优化",
942
+ "font_class": "ganxianyouhua",
943
+ "unicode": "e6d6",
944
+ "unicode_decimal": 59094
945
+ },
946
+ {
947
+ "icon_id": "33051332",
948
+ "name": "路口优化",
949
+ "font_class": "lukouyouhua",
950
+ "unicode": "e6d7",
951
+ "unicode_decimal": 59095
952
+ },
953
+ {
954
+ "icon_id": "33051333",
955
+ "name": "路段评估",
956
+ "font_class": "luduanpinggu",
957
+ "unicode": "e6d8",
958
+ "unicode_decimal": 59096
959
+ },
960
+ {
961
+ "icon_id": "33051334",
962
+ "name": "其他",
963
+ "font_class": "qita",
964
+ "unicode": "e6d9",
965
+ "unicode_decimal": 59097
966
+ },
967
+ {
968
+ "icon_id": "33051335",
969
+ "name": "权限设置",
970
+ "font_class": "quanxianshezhi",
971
+ "unicode": "e6da",
972
+ "unicode_decimal": 59098
973
+ },
974
+ {
975
+ "icon_id": "33051336",
976
+ "name": "主页",
977
+ "font_class": "zhuye2",
978
+ "unicode": "e6db",
979
+ "unicode_decimal": 59099
980
+ },
981
+ {
982
+ "icon_id": "33051337",
983
+ "name": "路线管理",
984
+ "font_class": "luxianguanli1",
985
+ "unicode": "e6dc",
986
+ "unicode_decimal": 59100
987
+ },
988
+ {
989
+ "icon_id": "33051338",
990
+ "name": "权限管理",
991
+ "font_class": "quanxianguanli",
992
+ "unicode": "e6dd",
993
+ "unicode_decimal": 59101
994
+ },
995
+ {
996
+ "icon_id": "33051339",
997
+ "name": "路口评估",
998
+ "font_class": "lukoupinggu",
999
+ "unicode": "e6de",
1000
+ "unicode_decimal": 59102
1001
+ },
1002
+ {
1003
+ "icon_id": "33051340",
1004
+ "name": "角色设置 ",
1005
+ "font_class": "jiaoseshezhi",
1006
+ "unicode": "e6df",
1007
+ "unicode_decimal": 59103
1008
+ },
1009
+ {
1010
+ "icon_id": "33051341",
1011
+ "name": "协调路线",
1012
+ "font_class": "xietiaoluxian1",
1013
+ "unicode": "e6e0",
1014
+ "unicode_decimal": 59104
1015
+ },
1016
+ {
1017
+ "icon_id": "33051342",
1018
+ "name": "组织机构",
1019
+ "font_class": "zuzhijigou",
1020
+ "unicode": "e6e1",
1021
+ "unicode_decimal": 59105
1022
+ },
1023
+ {
1024
+ "icon_id": "33051343",
1025
+ "name": "瓶颈控制",
1026
+ "font_class": "pingjingkongzhi1",
1027
+ "unicode": "e6e2",
1028
+ "unicode_decimal": 59106
1029
+ },
1030
+ {
1031
+ "icon_id": "33051344",
1032
+ "name": "用户管理",
1033
+ "font_class": "yonghuguanli",
1034
+ "unicode": "e6e3",
1035
+ "unicode_decimal": 59107
1036
+ },
1037
+ {
1038
+ "icon_id": "33051345",
1039
+ "name": "区域协调",
1040
+ "font_class": "quyuxietiao",
1041
+ "unicode": "e6e4",
1042
+ "unicode_decimal": 59108
1043
+ },
1044
+ {
1045
+ "icon_id": "33051346",
1046
+ "name": "交通分析",
1047
+ "font_class": "jiaotongfenxi",
1048
+ "unicode": "e6e5",
1049
+ "unicode_decimal": 59109
1050
+ },
1051
+ {
1052
+ "icon_id": "33051347",
1053
+ "name": "特勤路线",
1054
+ "font_class": "teqinluxian",
1055
+ "unicode": "e6e6",
1056
+ "unicode_decimal": 59110
1057
+ },
1058
+ {
1059
+ "icon_id": "33051348",
1060
+ "name": "设备状态",
1061
+ "font_class": "shebeizhuangtai",
1062
+ "unicode": "e6e7",
1063
+ "unicode_decimal": 59111
1064
+ },
1065
+ {
1066
+ "icon_id": "33051349",
1067
+ "name": "特勤路线-1级菜单",
1068
+ "font_class": "teqinluxian-1jicaidan",
1069
+ "unicode": "e6e8",
1070
+ "unicode_decimal": 59112
1071
+ },
1072
+ {
1073
+ "icon_id": "15175195",
1074
+ "name": "摄像头",
1075
+ "font_class": "shexiangtou",
1076
+ "unicode": "e790",
1077
+ "unicode_decimal": 59280
1078
+ },
1079
+ {
1080
+ "icon_id": "21899148",
1081
+ "name": "icon-雷达",
1082
+ "font_class": "icon-taikong10",
1083
+ "unicode": "e657",
1084
+ "unicode_decimal": 58967
1085
+ },
1086
+ {
1087
+ "icon_id": "30108061",
1088
+ "name": "lukouzhilu",
1089
+ "font_class": "lukouzhilu",
1090
+ "unicode": "e639",
1091
+ "unicode_decimal": 58937
1092
+ },
1093
+ {
1094
+ "icon_id": "29659767",
1095
+ "name": "路口渠化",
1096
+ "font_class": "lukouquhua",
1097
+ "unicode": "e60e",
1098
+ "unicode_decimal": 58894
1099
+ },
1100
+ {
1101
+ "icon_id": "27455054",
1102
+ "name": "虚相位",
1103
+ "font_class": "xuxiangwei",
1104
+ "unicode": "e6cd",
1105
+ "unicode_decimal": 59085
1106
+ },
1107
+ {
1108
+ "icon_id": "27419588",
1109
+ "name": "行人",
1110
+ "font_class": "hangren",
1111
+ "unicode": "e6cc",
1112
+ "unicode_decimal": 59084
1113
+ },
1114
+ {
1115
+ "icon_id": "27412128",
1116
+ "name": "BRT",
1117
+ "font_class": "BRT",
1118
+ "unicode": "e6c8",
1119
+ "unicode_decimal": 59080
1120
+ },
1121
+ {
1122
+ "icon_id": "27412129",
1123
+ "name": "非机动车",
1124
+ "font_class": "feijidongche",
1125
+ "unicode": "e6c9",
1126
+ "unicode_decimal": 59081
1127
+ },
1128
+ {
1129
+ "icon_id": "27412130",
1130
+ "name": "公交车",
1131
+ "font_class": "gongjiaoche",
1132
+ "unicode": "e6ca",
1133
+ "unicode_decimal": 59082
1134
+ },
1135
+ {
1136
+ "icon_id": "27412131",
1137
+ "name": "有轨电车",
1138
+ "font_class": "youguidianche",
1139
+ "unicode": "e6cb",
1140
+ "unicode_decimal": 59083
1141
+ },
1142
+ {
1143
+ "icon_id": "26107142",
1144
+ "name": "帮助",
1145
+ "font_class": "bangzhu",
1146
+ "unicode": "e6c7",
1147
+ "unicode_decimal": 59079
1148
+ },
1149
+ {
1150
+ "icon_id": "22150952",
1151
+ "name": "南掉头-印尼",
1152
+ "font_class": "nandiaotou-yinni",
1153
+ "unicode": "e6c6",
1154
+ "unicode_decimal": 59078
1155
+ },
1156
+ {
1157
+ "icon_id": "22149254",
1158
+ "name": "东调头-印尼",
1159
+ "font_class": "dongtiaotou-yinni",
1160
+ "unicode": "e6c2",
1161
+ "unicode_decimal": 59074
1162
+ },
1163
+ {
1164
+ "icon_id": "22149255",
1165
+ "name": "北调头-印尼",
1166
+ "font_class": "beitiaotou-yinni",
1167
+ "unicode": "e6c3",
1168
+ "unicode_decimal": 59075
1169
+ },
1170
+ {
1171
+ "icon_id": "22149256",
1172
+ "name": "南调头-印尼",
1173
+ "font_class": "nantiaotou-yinni",
1174
+ "unicode": "e6c4",
1175
+ "unicode_decimal": 59076
1176
+ },
1177
+ {
1178
+ "icon_id": "22149257",
1179
+ "name": "西调头-印尼",
1180
+ "font_class": "xitiaotou-yinni",
1181
+ "unicode": "e6c5",
1182
+ "unicode_decimal": 59077
1183
+ },
1184
+ {
1185
+ "icon_id": "21883108",
1186
+ "name": "cutRed",
1187
+ "font_class": "cutRed",
1188
+ "unicode": "e60c",
1189
+ "unicode_decimal": 58892
1190
+ },
1191
+ {
1192
+ "icon_id": "21883109",
1193
+ "name": "connectBlue",
1194
+ "font_class": "connectBlue",
1195
+ "unicode": "e60d",
1196
+ "unicode_decimal": 58893
1197
+ },
1198
+ {
1199
+ "icon_id": "21753955",
1200
+ "name": "相位合集-Openatc-admin",
1201
+ "font_class": "xiangweiheji-Openatc-admin",
1202
+ "unicode": "e6c1",
1203
+ "unicode_decimal": 59073
1204
+ },
1205
+ {
1206
+ "icon_id": "21193711",
1207
+ "name": "视频菜单",
1208
+ "font_class": "shipincaidan",
1209
+ "unicode": "e6bf",
1210
+ "unicode_decimal": 59071
1211
+ },
1212
+ {
1213
+ "icon_id": "21193712",
1214
+ "name": "视频刷新",
1215
+ "font_class": "shipinshuaxin",
1216
+ "unicode": "e6c0",
1217
+ "unicode_decimal": 59072
1218
+ },
1219
+ {
1220
+ "icon_id": "20330656",
1221
+ "name": "评价",
1222
+ "font_class": "pingjia",
1223
+ "unicode": "e6be",
1224
+ "unicode_decimal": 59070
1225
+ },
1226
+ {
1227
+ "icon_id": "20326916",
1228
+ "name": "控制",
1229
+ "font_class": "kongzhi",
1230
+ "unicode": "e6bd",
1231
+ "unicode_decimal": 59069
1232
+ },
1233
+ {
1234
+ "icon_id": "20192745",
1235
+ "name": "通行效率",
1236
+ "font_class": "tonghangxiaoshuai1",
1237
+ "unicode": "e6bc",
1238
+ "unicode_decimal": 59068
1239
+ },
1240
+ {
1241
+ "icon_id": "20192314",
1242
+ "name": "路段",
1243
+ "font_class": "luduan",
1244
+ "unicode": "e6bb",
1245
+ "unicode_decimal": 59067
1246
+ },
1247
+ {
1248
+ "icon_id": "19610512",
1249
+ "name": "瓶颈控制",
1250
+ "font_class": "pingjingkongzhi",
1251
+ "unicode": "e6ba",
1252
+ "unicode_decimal": 59066
1253
+ },
1254
+ {
1255
+ "icon_id": "19391491",
1256
+ "name": "斜向行人过街1",
1257
+ "font_class": "xiexianghangrenguojie1",
1258
+ "unicode": "e6b6",
1259
+ "unicode_decimal": 59062
1260
+ },
1261
+ {
1262
+ "icon_id": "19391492",
1263
+ "name": "斜向行人过街2",
1264
+ "font_class": "xiexianghangrenguojie2",
1265
+ "unicode": "e6b7",
1266
+ "unicode_decimal": 59063
1267
+ },
1268
+ {
1269
+ "icon_id": "19391539",
1270
+ "name": "路段行人过街-南北",
1271
+ "font_class": "luduanhangrenguojie-nanbei",
1272
+ "unicode": "e6b8",
1273
+ "unicode_decimal": 59064
1274
+ },
1275
+ {
1276
+ "icon_id": "19391540",
1277
+ "name": "路段行人过街-东西",
1278
+ "font_class": "luduanhangrenguojie-dongxi",
1279
+ "unicode": "e6b9",
1280
+ "unicode_decimal": 59065
1281
+ },
1282
+ {
1283
+ "icon_id": "19391315",
1284
+ "name": "北左",
1285
+ "font_class": "beizuo",
1286
+ "unicode": "e6ad",
1287
+ "unicode_decimal": 59053
1288
+ },
1289
+ {
1290
+ "icon_id": "19391356",
1291
+ "name": "北右",
1292
+ "font_class": "beiyou",
1293
+ "unicode": "e6af",
1294
+ "unicode_decimal": 59055
1295
+ },
1296
+ {
1297
+ "icon_id": "19391360",
1298
+ "name": "南左",
1299
+ "font_class": "nanzuo",
1300
+ "unicode": "e6b0",
1301
+ "unicode_decimal": 59056
1302
+ },
1303
+ {
1304
+ "icon_id": "19391361",
1305
+ "name": "南右",
1306
+ "font_class": "nanyou",
1307
+ "unicode": "e6b1",
1308
+ "unicode_decimal": 59057
1309
+ },
1310
+ {
1311
+ "icon_id": "19391365",
1312
+ "name": "东下",
1313
+ "font_class": "dongxia",
1314
+ "unicode": "e6b2",
1315
+ "unicode_decimal": 59058
1316
+ },
1317
+ {
1318
+ "icon_id": "19391366",
1319
+ "name": "东上",
1320
+ "font_class": "dongshang",
1321
+ "unicode": "e6b3",
1322
+ "unicode_decimal": 59059
1323
+ },
1324
+ {
1325
+ "icon_id": "19391367",
1326
+ "name": "西上",
1327
+ "font_class": "xishang",
1328
+ "unicode": "e6b4",
1329
+ "unicode_decimal": 59060
1330
+ },
1331
+ {
1332
+ "icon_id": "19391368",
1333
+ "name": "西下",
1334
+ "font_class": "xixia",
1335
+ "unicode": "e6b5",
1336
+ "unicode_decimal": 59061
1337
+ },
1338
+ {
1339
+ "icon_id": "19386718",
1340
+ "name": "协调路线",
1341
+ "font_class": "xietiaoluxian",
1342
+ "unicode": "e6aa",
1343
+ "unicode_decimal": 59050
1344
+ },
1345
+ {
1346
+ "icon_id": "19386719",
1347
+ "name": "勤务路线",
1348
+ "font_class": "qinwuluxian",
1349
+ "unicode": "e6ab",
1350
+ "unicode_decimal": 59051
1351
+ },
1352
+ {
1353
+ "icon_id": "19386720",
1354
+ "name": "路线管理",
1355
+ "font_class": "luxianguanli",
1356
+ "unicode": "e6ac",
1357
+ "unicode_decimal": 59052
1358
+ },
1359
+ {
1360
+ "icon_id": "19043951",
1361
+ "name": "详细数据",
1362
+ "font_class": "xiangxishuju",
1363
+ "unicode": "e6a9",
1364
+ "unicode_decimal": 59049
1365
+ },
1366
+ {
1367
+ "icon_id": "19031554",
1368
+ "name": "感应式行人过街",
1369
+ "font_class": "ganyingshihangrenguojie",
1370
+ "unicode": "e6a8",
1371
+ "unicode_decimal": 59048
1372
+ },
1373
+ {
1374
+ "icon_id": "18888681",
1375
+ "name": "路口",
1376
+ "font_class": "lukou",
1377
+ "unicode": "e6a7",
1378
+ "unicode_decimal": 59047
1379
+ },
1380
+ {
1381
+ "icon_id": "18887012",
1382
+ "name": "故障",
1383
+ "font_class": "guzhang",
1384
+ "unicode": "e6a3",
1385
+ "unicode_decimal": 59043
1386
+ },
1387
+ {
1388
+ "icon_id": "18887013",
1389
+ "name": "拥堵",
1390
+ "font_class": "yongdu",
1391
+ "unicode": "e6a6",
1392
+ "unicode_decimal": 59046
1393
+ },
1394
+ {
1395
+ "icon_id": "18855016",
1396
+ "name": "西行人",
1397
+ "font_class": "xihangren1",
1398
+ "unicode": "e6a5",
1399
+ "unicode_decimal": 59045
1400
+ },
1401
+ {
1402
+ "icon_id": "18854470",
1403
+ "name": "东行人",
1404
+ "font_class": "donghangren",
1405
+ "unicode": "e6a1",
1406
+ "unicode_decimal": 59041
1407
+ },
1408
+ {
1409
+ "icon_id": "18854471",
1410
+ "name": "南行人",
1411
+ "font_class": "nanhangren",
1412
+ "unicode": "e6a2",
1413
+ "unicode_decimal": 59042
1414
+ },
1415
+ {
1416
+ "icon_id": "18854473",
1417
+ "name": "北行人",
1418
+ "font_class": "beihangren",
1419
+ "unicode": "e6a4",
1420
+ "unicode_decimal": 59044
1421
+ },
1422
+ {
1423
+ "icon_id": "18851871",
1424
+ "name": "绿波",
1425
+ "font_class": "lvbo",
1426
+ "unicode": "e6a0",
1427
+ "unicode_decimal": 59040
1428
+ },
1429
+ {
1430
+ "icon_id": "18423010",
1431
+ "name": "自适应",
1432
+ "font_class": "zishiying",
1433
+ "unicode": "e69f",
1434
+ "unicode_decimal": 59039
1435
+ },
1436
+ {
1437
+ "icon_id": "18058109",
1438
+ "name": "更多关于",
1439
+ "font_class": "gengduoguanyu",
1440
+ "unicode": "e69e",
1441
+ "unicode_decimal": 59038
1442
+ },
1443
+ {
1444
+ "icon_id": "18005071",
1445
+ "name": "饱和数据",
1446
+ "font_class": "baoheshuju",
1447
+ "unicode": "e69c",
1448
+ "unicode_decimal": 59036
1449
+ },
1450
+ {
1451
+ "icon_id": "18005072",
1452
+ "name": "路口数据",
1453
+ "font_class": "lukoushuju",
1454
+ "unicode": "e69d",
1455
+ "unicode_decimal": 59037
1456
+ },
1457
+ {
1458
+ "icon_id": "17496381",
1459
+ "name": "联盟实验室logo",
1460
+ "font_class": "lianmengshiyanshilogo",
1461
+ "unicode": "e69b",
1462
+ "unicode_decimal": 59035
1463
+ },
1464
+ {
1465
+ "icon_id": "17496270",
1466
+ "name": "开源开放",
1467
+ "font_class": "kaiyuankaifang",
1468
+ "unicode": "e697",
1469
+ "unicode_decimal": 59031
1470
+ },
1471
+ {
1472
+ "icon_id": "17496271",
1473
+ "name": "互动交流",
1474
+ "font_class": "hudongjiaoliu",
1475
+ "unicode": "e698",
1476
+ "unicode_decimal": 59032
1477
+ },
1478
+ {
1479
+ "icon_id": "17496272",
1480
+ "name": "资源共享",
1481
+ "font_class": "ziyuangongxiang",
1482
+ "unicode": "e699",
1483
+ "unicode_decimal": 59033
1484
+ },
1485
+ {
1486
+ "icon_id": "17496273",
1487
+ "name": "智能控制",
1488
+ "font_class": "zhinengkongzhi",
1489
+ "unicode": "e69a",
1490
+ "unicode_decimal": 59034
1491
+ },
1492
+ {
1493
+ "icon_id": "17213373",
1494
+ "name": "待执勤",
1495
+ "font_class": "daizhiqin",
1496
+ "unicode": "e695",
1497
+ "unicode_decimal": 59029
1498
+ },
1499
+ {
1500
+ "icon_id": "17213374",
1501
+ "name": "执勤中",
1502
+ "font_class": "zhiqinzhong",
1503
+ "unicode": "e696",
1504
+ "unicode_decimal": 59030
1505
+ },
1506
+ {
1507
+ "icon_id": "16639662",
1508
+ "name": "区域协调评价",
1509
+ "font_class": "quyuxietiaopingjia",
1510
+ "unicode": "e690",
1511
+ "unicode_decimal": 59024
1512
+ },
1513
+ {
1514
+ "icon_id": "16639663",
1515
+ "name": "路口数据模型",
1516
+ "font_class": "lukoushujumoxing",
1517
+ "unicode": "e692",
1518
+ "unicode_decimal": 59026
1519
+ },
1520
+ {
1521
+ "icon_id": "16639664",
1522
+ "name": "路线组协调优化",
1523
+ "font_class": "luxianzuxietiaoyouhua",
1524
+ "unicode": "e693",
1525
+ "unicode_decimal": 59027
1526
+ },
1527
+ {
1528
+ "icon_id": "16639665",
1529
+ "name": "路线协调评价",
1530
+ "font_class": "luxianxietiaopingjia",
1531
+ "unicode": "e694",
1532
+ "unicode_decimal": 59028
1533
+ },
1534
+ {
1535
+ "icon_id": "16303806",
1536
+ "name": "统计",
1537
+ "font_class": "tongji2",
1538
+ "unicode": "e691",
1539
+ "unicode_decimal": 59025
1540
+ },
1541
+ {
1542
+ "icon_id": "16301171",
1543
+ "name": "路线协调优化",
1544
+ "font_class": "luxianxietiaoyouhua",
1545
+ "unicode": "e681",
1546
+ "unicode_decimal": 59009
1547
+ },
1548
+ {
1549
+ "icon_id": "16301172",
1550
+ "name": "主页",
1551
+ "font_class": "zhuye1",
1552
+ "unicode": "e682",
1553
+ "unicode_decimal": 59010
1554
+ },
1555
+ {
1556
+ "icon_id": "16301173",
1557
+ "name": "区域协调优化",
1558
+ "font_class": "quyuxietiaoyouhua",
1559
+ "unicode": "e683",
1560
+ "unicode_decimal": 59011
1561
+ },
1562
+ {
1563
+ "icon_id": "16301174",
1564
+ "name": "信号研判",
1565
+ "font_class": "xinhaoyanpan",
1566
+ "unicode": "e684",
1567
+ "unicode_decimal": 59012
1568
+ },
1569
+ {
1570
+ "icon_id": "16301175",
1571
+ "name": "路口方案评价",
1572
+ "font_class": "lukoufanganpingjia",
1573
+ "unicode": "e685",
1574
+ "unicode_decimal": 59013
1575
+ },
1576
+ {
1577
+ "icon_id": "16301176",
1578
+ "name": "信号优化",
1579
+ "font_class": "xinhaoyouhua",
1580
+ "unicode": "e686",
1581
+ "unicode_decimal": 59014
1582
+ },
1583
+ {
1584
+ "icon_id": "16301177",
1585
+ "name": "路口排行",
1586
+ "font_class": "lukoupaihang",
1587
+ "unicode": "e687",
1588
+ "unicode_decimal": 59015
1589
+ },
1590
+ {
1591
+ "icon_id": "16301178",
1592
+ "name": "拥堵研判",
1593
+ "font_class": "yongduyanpan",
1594
+ "unicode": "e688",
1595
+ "unicode_decimal": 59016
1596
+ },
1597
+ {
1598
+ "icon_id": "16301179",
1599
+ "name": "操作记录",
1600
+ "font_class": "caozuojilu",
1601
+ "unicode": "e689",
1602
+ "unicode_decimal": 59017
1603
+ },
1604
+ {
1605
+ "icon_id": "16301180",
1606
+ "name": "偶发拥堵预警",
1607
+ "font_class": "oufayongduyujing",
1608
+ "unicode": "e68a",
1609
+ "unicode_decimal": 59018
1610
+ },
1611
+ {
1612
+ "icon_id": "16301181",
1613
+ "name": "静态绿波",
1614
+ "font_class": "jingtailvbo",
1615
+ "unicode": "e68b",
1616
+ "unicode_decimal": 59019
1617
+ },
1618
+ {
1619
+ "icon_id": "16301182",
1620
+ "name": "路口管理",
1621
+ "font_class": "lukouguanli",
1622
+ "unicode": "e68c",
1623
+ "unicode_decimal": 59020
1624
+ },
1625
+ {
1626
+ "icon_id": "16301183",
1627
+ "name": "信号管控",
1628
+ "font_class": "xinhaoguankong",
1629
+ "unicode": "e68d",
1630
+ "unicode_decimal": 59021
1631
+ },
1632
+ {
1633
+ "icon_id": "16301184",
1634
+ "name": "常态拥堵预警",
1635
+ "font_class": "changtaiyongduyujing",
1636
+ "unicode": "e68e",
1637
+ "unicode_decimal": 59022
1638
+ },
1639
+ {
1640
+ "icon_id": "16301185",
1641
+ "name": "设备管理",
1642
+ "font_class": "shebeiguanli",
1643
+ "unicode": "e68f",
1644
+ "unicode_decimal": 59023
1645
+ },
1646
+ {
1647
+ "icon_id": "9559068",
1648
+ "name": "行人",
1649
+ "font_class": "ziyuan1",
1650
+ "unicode": "e628",
1651
+ "unicode_decimal": 58920
1652
+ },
1653
+ {
1654
+ "icon_id": "14329757",
1655
+ "name": "相位合集最新",
1656
+ "font_class": "zuixin1",
1657
+ "unicode": "e680",
1658
+ "unicode_decimal": 59008
1659
+ },
1660
+ {
1661
+ "icon_id": "13483671",
1662
+ "name": "用户",
1663
+ "font_class": "yonghu",
1664
+ "unicode": "e67f",
1665
+ "unicode_decimal": 59007
1666
+ },
1667
+ {
1668
+ "icon_id": "13145328",
1669
+ "name": "未知类型",
1670
+ "font_class": "weizhileixing",
1671
+ "unicode": "e67e",
1672
+ "unicode_decimal": 59006
1673
+ },
1674
+ {
1675
+ "icon_id": "13117014",
1676
+ "name": "无线缆",
1677
+ "font_class": "wuxianlan",
1678
+ "unicode": "e67d",
1679
+ "unicode_decimal": 59005
1680
+ },
1681
+ {
1682
+ "icon_id": "13058886",
1683
+ "name": "本地",
1684
+ "font_class": "bendi",
1685
+ "unicode": "e67b",
1686
+ "unicode_decimal": 59003
1687
+ },
1688
+ {
1689
+ "icon_id": "13058822",
1690
+ "name": "感应控制",
1691
+ "font_class": "ganyingkongzhi",
1692
+ "unicode": "e676",
1693
+ "unicode_decimal": 58998
1694
+ },
1695
+ {
1696
+ "icon_id": "13058823",
1697
+ "name": "黄闪",
1698
+ "font_class": "huangshan",
1699
+ "unicode": "e677",
1700
+ "unicode_decimal": 58999
1701
+ },
1702
+ {
1703
+ "icon_id": "13058824",
1704
+ "name": "步进",
1705
+ "font_class": "bujin",
1706
+ "unicode": "e678",
1707
+ "unicode_decimal": 59000
1708
+ },
1709
+ {
1710
+ "icon_id": "13058825",
1711
+ "name": "定周期",
1712
+ "font_class": "dingzhouqi",
1713
+ "unicode": "e679",
1714
+ "unicode_decimal": 59001
1715
+ },
1716
+ {
1717
+ "icon_id": "13058826",
1718
+ "name": "系统",
1719
+ "font_class": "xitong",
1720
+ "unicode": "e67a",
1721
+ "unicode_decimal": 59002
1722
+ },
1723
+ {
1724
+ "icon_id": "13058844",
1725
+ "name": "全红",
1726
+ "font_class": "quanhong",
1727
+ "unicode": "e67c",
1728
+ "unicode_decimal": 59004
1729
+ },
1730
+ {
1731
+ "icon_id": "13058727",
1732
+ "name": "图形界面",
1733
+ "font_class": "tuxingjiemian",
1734
+ "unicode": "e674",
1735
+ "unicode_decimal": 58996
1736
+ },
1737
+ {
1738
+ "icon_id": "13058728",
1739
+ "name": "文字界面",
1740
+ "font_class": "wenzijiemian",
1741
+ "unicode": "e675",
1742
+ "unicode_decimal": 58997
1743
+ },
1744
+ {
1745
+ "icon_id": "8176672",
1746
+ "name": "行人监控",
1747
+ "font_class": "hangrenjiankong",
1748
+ "unicode": "e671",
1749
+ "unicode_decimal": 58993
1750
+ },
1751
+ {
1752
+ "icon_id": "12101830",
1753
+ "name": "引导icon",
1754
+ "font_class": "yindaoicon",
1755
+ "unicode": "e672",
1756
+ "unicode_decimal": 58994
1757
+ },
1758
+ {
1759
+ "icon_id": "12101831",
1760
+ "name": "引导icon1",
1761
+ "font_class": "yindaoicon1",
1762
+ "unicode": "e673",
1763
+ "unicode_decimal": 58995
1764
+ },
1765
+ {
1766
+ "icon_id": "11526328",
1767
+ "name": "资源 19",
1768
+ "font_class": "ziyuan",
1769
+ "unicode": "e670",
1770
+ "unicode_decimal": 58992
1771
+ },
1772
+ {
1773
+ "icon_id": "8136762",
1774
+ "name": "球机",
1775
+ "font_class": "shipin",
1776
+ "unicode": "e60b",
1777
+ "unicode_decimal": 58891
1778
+ },
1779
+ {
1780
+ "icon_id": "11508258",
1781
+ "name": "前往",
1782
+ "font_class": "qianwang",
1783
+ "unicode": "e66f",
1784
+ "unicode_decimal": 58991
1785
+ },
1786
+ {
1787
+ "icon_id": "11271479",
1788
+ "name": "van",
1789
+ "font_class": "van",
1790
+ "unicode": "e66b",
1791
+ "unicode_decimal": 58987
1792
+ },
1793
+ {
1794
+ "icon_id": "11271480",
1795
+ "name": "car",
1796
+ "font_class": "car",
1797
+ "unicode": "e66c",
1798
+ "unicode_decimal": 58988
1799
+ },
1800
+ {
1801
+ "icon_id": "11271481",
1802
+ "name": "bus",
1803
+ "font_class": "bus",
1804
+ "unicode": "e66d",
1805
+ "unicode_decimal": 58989
1806
+ },
1807
+ {
1808
+ "icon_id": "11271482",
1809
+ "name": "truck",
1810
+ "font_class": "truck",
1811
+ "unicode": "e66e",
1812
+ "unicode_decimal": 58990
1813
+ },
1814
+ {
1815
+ "icon_id": "10792348",
1816
+ "name": "实时",
1817
+ "font_class": "shishi",
1818
+ "unicode": "e66a",
1819
+ "unicode_decimal": 58986
1820
+ },
1821
+ {
1822
+ "icon_id": "10701921",
1823
+ "name": "报告",
1824
+ "font_class": "baogao",
1825
+ "unicode": "e669",
1826
+ "unicode_decimal": 58985
1827
+ },
1828
+ {
1829
+ "icon_id": "10075615",
1830
+ "name": "交通仿真",
1831
+ "font_class": "jiaotongfangzhen",
1832
+ "unicode": "e65b",
1833
+ "unicode_decimal": 58971
1834
+ },
1835
+ {
1836
+ "icon_id": "10075616",
1837
+ "name": "交通编辑",
1838
+ "font_class": "jiaotongbianji",
1839
+ "unicode": "e65c",
1840
+ "unicode_decimal": 58972
1841
+ },
1842
+ {
1843
+ "icon_id": "10075617",
1844
+ "name": "优化决策",
1845
+ "font_class": "youhuajuece",
1846
+ "unicode": "e65d",
1847
+ "unicode_decimal": 58973
1848
+ },
1849
+ {
1850
+ "icon_id": "10075618",
1851
+ "name": "交通态势",
1852
+ "font_class": "jiaotongtaishi",
1853
+ "unicode": "e65e",
1854
+ "unicode_decimal": 58974
1855
+ },
1856
+ {
1857
+ "icon_id": "10075619",
1858
+ "name": "主页",
1859
+ "font_class": "zhuye",
1860
+ "unicode": "e65f",
1861
+ "unicode_decimal": 58975
1862
+ },
1863
+ {
1864
+ "icon_id": "10075620",
1865
+ "name": "事件",
1866
+ "font_class": "shijian",
1867
+ "unicode": "e660",
1868
+ "unicode_decimal": 58976
1869
+ },
1870
+ {
1871
+ "icon_id": "10075621",
1872
+ "name": "交通预测",
1873
+ "font_class": "jiaotongyuce",
1874
+ "unicode": "e661",
1875
+ "unicode_decimal": 58977
1876
+ },
1877
+ {
1878
+ "icon_id": "10075623",
1879
+ "name": "仿真开始",
1880
+ "font_class": "fangzhenkaishi",
1881
+ "unicode": "e662",
1882
+ "unicode_decimal": 58978
1883
+ },
1884
+ {
1885
+ "icon_id": "10075624",
1886
+ "name": "仿真停止",
1887
+ "font_class": "fangzhentingzhi",
1888
+ "unicode": "e663",
1889
+ "unicode_decimal": 58979
1890
+ },
1891
+ {
1892
+ "icon_id": "10075625",
1893
+ "name": "仿真暂停",
1894
+ "font_class": "fangzhenzanting",
1895
+ "unicode": "e664",
1896
+ "unicode_decimal": 58980
1897
+ },
1898
+ {
1899
+ "icon_id": "10075626",
1900
+ "name": "退出",
1901
+ "font_class": "tuichu2",
1902
+ "unicode": "e665",
1903
+ "unicode_decimal": 58981
1904
+ },
1905
+ {
1906
+ "icon_id": "10075627",
1907
+ "name": "同步",
1908
+ "font_class": "tongbu",
1909
+ "unicode": "e666",
1910
+ "unicode_decimal": 58982
1911
+ },
1912
+ {
1913
+ "icon_id": "10075628",
1914
+ "name": "日期选择",
1915
+ "font_class": "riqixuanze",
1916
+ "unicode": "e667",
1917
+ "unicode_decimal": 58983
1918
+ },
1919
+ {
1920
+ "icon_id": "9766126",
1921
+ "name": "路口方位合集1",
1922
+ "font_class": "lukoufangweiheji1",
1923
+ "unicode": "e654",
1924
+ "unicode_decimal": 58964
1925
+ },
1926
+ {
1927
+ "icon_id": "9746844",
1928
+ "name": "强度",
1929
+ "font_class": "qiangdu1",
1930
+ "unicode": "e65a",
1931
+ "unicode_decimal": 58970
1932
+ },
1933
+ {
1934
+ "icon_id": "9642018",
1935
+ "name": "通行效率",
1936
+ "font_class": "tonghangxiaoshuai",
1937
+ "unicode": "e653",
1938
+ "unicode_decimal": 58963
1939
+ },
1940
+ {
1941
+ "icon_id": "9642057",
1942
+ "name": "背景",
1943
+ "font_class": "beijing",
1944
+ "unicode": "e655",
1945
+ "unicode_decimal": 58965
1946
+ },
1947
+ {
1948
+ "icon_id": "9642058",
1949
+ "name": "背景-选中",
1950
+ "font_class": "beijing-xuanzhong",
1951
+ "unicode": "e656",
1952
+ "unicode_decimal": 58966
1953
+ },
1954
+ {
1955
+ "icon_id": "8451618",
1956
+ "name": "向下箭头",
1957
+ "font_class": "xiangxiajiantou",
1958
+ "unicode": "e651",
1959
+ "unicode_decimal": 58961
1960
+ },
1961
+ {
1962
+ "icon_id": "8451619",
1963
+ "name": "向上箭头",
1964
+ "font_class": "xiangshangjiantou",
1965
+ "unicode": "e652",
1966
+ "unicode_decimal": 58962
1967
+ },
1968
+ {
1969
+ "icon_id": "8448600",
1970
+ "name": "流量",
1971
+ "font_class": "liuliang",
1972
+ "unicode": "e64d",
1973
+ "unicode_decimal": 58957
1974
+ },
1975
+ {
1976
+ "icon_id": "8448601",
1977
+ "name": "饱和度",
1978
+ "font_class": "baohedu",
1979
+ "unicode": "e64e",
1980
+ "unicode_decimal": 58958
1981
+ },
1982
+ {
1983
+ "icon_id": "8448602",
1984
+ "name": "速度",
1985
+ "font_class": "sudu",
1986
+ "unicode": "e64f",
1987
+ "unicode_decimal": 58959
1988
+ },
1989
+ {
1990
+ "icon_id": "8448603",
1991
+ "name": "排队长度",
1992
+ "font_class": "paiduichangdu",
1993
+ "unicode": "e650",
1994
+ "unicode_decimal": 58960
1995
+ },
1996
+ {
1997
+ "icon_id": "8394706",
1998
+ "name": "交通状态",
1999
+ "font_class": "jiaotongzhuangtai",
2000
+ "unicode": "e649",
2001
+ "unicode_decimal": 58953
2002
+ },
2003
+ {
2004
+ "icon_id": "8394708",
2005
+ "name": "路网",
2006
+ "font_class": "luwang",
2007
+ "unicode": "e64a",
2008
+ "unicode_decimal": 58954
2009
+ },
2010
+ {
2011
+ "icon_id": "8394709",
2012
+ "name": "研判",
2013
+ "font_class": "yanpan",
2014
+ "unicode": "e64b",
2015
+ "unicode_decimal": 58955
2016
+ },
2017
+ {
2018
+ "icon_id": "8394783",
2019
+ "name": "统计",
2020
+ "font_class": "tongji",
2021
+ "unicode": "e64c",
2022
+ "unicode_decimal": 58956
2023
+ },
2024
+ {
2025
+ "icon_id": "7999476",
2026
+ "name": "提交并执行",
2027
+ "font_class": "tijiaobingzhihang",
2028
+ "unicode": "e648",
2029
+ "unicode_decimal": 58952
2030
+ },
2031
+ {
2032
+ "icon_id": "7922641",
2033
+ "name": "1level",
2034
+ "font_class": "level",
2035
+ "unicode": "e643",
2036
+ "unicode_decimal": 58947
2037
+ },
2038
+ {
2039
+ "icon_id": "7922670",
2040
+ "name": "3level",
2041
+ "font_class": "level1",
2042
+ "unicode": "e644",
2043
+ "unicode_decimal": 58948
2044
+ },
2045
+ {
2046
+ "icon_id": "7922673",
2047
+ "name": "2level",
2048
+ "font_class": "level2",
2049
+ "unicode": "e645",
2050
+ "unicode_decimal": 58949
2051
+ },
2052
+ {
2053
+ "icon_id": "7922675",
2054
+ "name": "4level",
2055
+ "font_class": "level3",
2056
+ "unicode": "e646",
2057
+ "unicode_decimal": 58950
2058
+ },
2059
+ {
2060
+ "icon_id": "7922676",
2061
+ "name": "5level",
2062
+ "font_class": "level4",
2063
+ "unicode": "e647",
2064
+ "unicode_decimal": 58951
2065
+ },
2066
+ {
2067
+ "icon_id": "7553278",
2068
+ "name": "退出1",
2069
+ "font_class": "tuichu",
2070
+ "unicode": "e641",
2071
+ "unicode_decimal": 58945
2072
+ },
2073
+ {
2074
+ "icon_id": "7553279",
2075
+ "name": "退出",
2076
+ "font_class": "tuichu1",
2077
+ "unicode": "e642",
2078
+ "unicode_decimal": 58946
2079
+ },
2080
+ {
2081
+ "icon_id": "7382830",
2082
+ "name": "Management",
2083
+ "font_class": "Management",
2084
+ "unicode": "e640",
2085
+ "unicode_decimal": 58944
2086
+ },
2087
+ {
2088
+ "icon_id": "7284699",
2089
+ "name": "Single Point Optimiz",
2090
+ "font_class": "SinglePointOptimiz",
2091
+ "unicode": "e63e",
2092
+ "unicode_decimal": 58942
2093
+ },
2094
+ {
2095
+ "icon_id": "7284702",
2096
+ "name": "Green Wave Optimize",
2097
+ "font_class": "GreenWaveOptimize",
2098
+ "unicode": "e63f",
2099
+ "unicode_decimal": 58943
2100
+ },
2101
+ {
2102
+ "icon_id": "7236051",
2103
+ "name": "select3",
2104
+ "font_class": "select2",
2105
+ "unicode": "e63d",
2106
+ "unicode_decimal": 58941
2107
+ },
2108
+ {
2109
+ "icon_id": "7232860",
2110
+ "name": "select",
2111
+ "font_class": "select1",
2112
+ "unicode": "e63c",
2113
+ "unicode_decimal": 58940
2114
+ },
2115
+ {
2116
+ "icon_id": "7220665",
2117
+ "name": "select",
2118
+ "font_class": "select",
2119
+ "unicode": "e63b",
2120
+ "unicode_decimal": 58939
2121
+ },
2122
+ {
2123
+ "icon_id": "7214955",
2124
+ "name": "noimages",
2125
+ "font_class": "noimages",
2126
+ "unicode": "e63a",
2127
+ "unicode_decimal": 58938
2128
+ },
2129
+ {
2130
+ "icon_id": "7183820",
2131
+ "name": "15",
2132
+ "font_class": "icon-test",
2133
+ "unicode": "e629",
2134
+ "unicode_decimal": 58921
2135
+ },
2136
+ {
2137
+ "icon_id": "7183821",
2138
+ "name": "16",
2139
+ "font_class": "icon-test1",
2140
+ "unicode": "e62a",
2141
+ "unicode_decimal": 58922
2142
+ },
2143
+ {
2144
+ "icon_id": "7183822",
2145
+ "name": "1",
2146
+ "font_class": "icon-test2",
2147
+ "unicode": "e62b",
2148
+ "unicode_decimal": 58923
2149
+ },
2150
+ {
2151
+ "icon_id": "7183823",
2152
+ "name": "3",
2153
+ "font_class": "icon-test3",
2154
+ "unicode": "e62c",
2155
+ "unicode_decimal": 58924
2156
+ },
2157
+ {
2158
+ "icon_id": "7183824",
2159
+ "name": "2",
2160
+ "font_class": "icon-test4",
2161
+ "unicode": "e62d",
2162
+ "unicode_decimal": 58925
2163
+ },
2164
+ {
2165
+ "icon_id": "7183825",
2166
+ "name": "5",
2167
+ "font_class": "icon-test5",
2168
+ "unicode": "e62e",
2169
+ "unicode_decimal": 58926
2170
+ },
2171
+ {
2172
+ "icon_id": "7183826",
2173
+ "name": "4",
2174
+ "font_class": "icon-test6",
2175
+ "unicode": "e62f",
2176
+ "unicode_decimal": 58927
2177
+ },
2178
+ {
2179
+ "icon_id": "7183827",
2180
+ "name": "6",
2181
+ "font_class": "icon-test7",
2182
+ "unicode": "e630",
2183
+ "unicode_decimal": 58928
2184
+ },
2185
+ {
2186
+ "icon_id": "7183828",
2187
+ "name": "8",
2188
+ "font_class": "icon-test8",
2189
+ "unicode": "e631",
2190
+ "unicode_decimal": 58929
2191
+ },
2192
+ {
2193
+ "icon_id": "7183829",
2194
+ "name": "7",
2195
+ "font_class": "icon-test9",
2196
+ "unicode": "e632",
2197
+ "unicode_decimal": 58930
2198
+ },
2199
+ {
2200
+ "icon_id": "7183830",
2201
+ "name": "9",
2202
+ "font_class": "icon-test10",
2203
+ "unicode": "e633",
2204
+ "unicode_decimal": 58931
2205
+ },
2206
+ {
2207
+ "icon_id": "7183832",
2208
+ "name": "12",
2209
+ "font_class": "icon-test11",
2210
+ "unicode": "e634",
2211
+ "unicode_decimal": 58932
2212
+ },
2213
+ {
2214
+ "icon_id": "7183833",
2215
+ "name": "10",
2216
+ "font_class": "icon-test12",
2217
+ "unicode": "e635",
2218
+ "unicode_decimal": 58933
2219
+ },
2220
+ {
2221
+ "icon_id": "7183834",
2222
+ "name": "11",
2223
+ "font_class": "icon-test13",
2224
+ "unicode": "e636",
2225
+ "unicode_decimal": 58934
2226
+ },
2227
+ {
2228
+ "icon_id": "7183835",
2229
+ "name": "14",
2230
+ "font_class": "icon-test14",
2231
+ "unicode": "e637",
2232
+ "unicode_decimal": 58935
2233
+ },
2234
+ {
2235
+ "icon_id": "7183836",
2236
+ "name": "13",
2237
+ "font_class": "icon-test15",
2238
+ "unicode": "e638",
2239
+ "unicode_decimal": 58936
2240
+ },
2241
+ {
2242
+ "icon_id": "7062888",
2243
+ "name": "停止",
2244
+ "font_class": "tingzhi1",
2245
+ "unicode": "e622",
2246
+ "unicode_decimal": 58914
2247
+ },
2248
+ {
2249
+ "icon_id": "7062889",
2250
+ "name": "启动",
2251
+ "font_class": "qidong",
2252
+ "unicode": "e623",
2253
+ "unicode_decimal": 58915
2254
+ },
2255
+ {
2256
+ "icon_id": "7062890",
2257
+ "name": "减速",
2258
+ "font_class": "jiansu",
2259
+ "unicode": "e624",
2260
+ "unicode_decimal": 58916
2261
+ },
2262
+ {
2263
+ "icon_id": "7062891",
2264
+ "name": "加速",
2265
+ "font_class": "jiasu1",
2266
+ "unicode": "e625",
2267
+ "unicode_decimal": 58917
2268
+ },
2269
+ {
2270
+ "icon_id": "7062892",
2271
+ "name": "暂停",
2272
+ "font_class": "zanting1",
2273
+ "unicode": "e626",
2274
+ "unicode_decimal": 58918
2275
+ },
2276
+ {
2277
+ "icon_id": "7062893",
2278
+ "name": "载入数据",
2279
+ "font_class": "zairushuju",
2280
+ "unicode": "e627",
2281
+ "unicode_decimal": 58919
2282
+ },
2283
+ {
2284
+ "icon_id": "7058227",
2285
+ "name": "编辑",
2286
+ "font_class": "bianji",
2287
+ "unicode": "e620",
2288
+ "unicode_decimal": 58912
2289
+ },
2290
+ {
2291
+ "icon_id": "7058229",
2292
+ "name": "删除",
2293
+ "font_class": "shanchu",
2294
+ "unicode": "e621",
2295
+ "unicode_decimal": 58913
2296
+ },
2297
+ {
2298
+ "icon_id": "1440108",
2299
+ "name": "快进",
2300
+ "font_class": "simujiasu",
2301
+ "unicode": "e609",
2302
+ "unicode_decimal": 58889
2303
+ },
2304
+ {
2305
+ "icon_id": "1440120",
2306
+ "name": "快退 上一个",
2307
+ "font_class": "simujiansu",
2308
+ "unicode": "e60a",
2309
+ "unicode_decimal": 58890
2310
+ },
2311
+ {
2312
+ "icon_id": "2815740",
2313
+ "name": "暂停",
2314
+ "font_class": "zanting",
2315
+ "unicode": "e608",
2316
+ "unicode_decimal": 58888
2317
+ },
2318
+ {
2319
+ "icon_id": "3907976",
2320
+ "name": "加速",
2321
+ "font_class": "jiasu",
2322
+ "unicode": "e658",
2323
+ "unicode_decimal": 58968
2324
+ },
2325
+ {
2326
+ "icon_id": "4672474",
2327
+ "name": "急减速",
2328
+ "font_class": "jijiansu",
2329
+ "unicode": "e659",
2330
+ "unicode_decimal": 58969
2331
+ },
2332
+ {
2333
+ "icon_id": "7046169",
2334
+ "name": "仿真进行状态",
2335
+ "font_class": "fangzhenjinhangzhuangtai",
2336
+ "unicode": "e61f",
2337
+ "unicode_decimal": 58911
2338
+ },
2339
+ {
2340
+ "icon_id": "768019",
2341
+ "name": "load",
2342
+ "font_class": "load",
2343
+ "unicode": "e668",
2344
+ "unicode_decimal": 58984
2345
+ },
2346
+ {
2347
+ "icon_id": "2553880",
2348
+ "name": "停止",
2349
+ "font_class": "tingzhi",
2350
+ "unicode": "e6ae",
2351
+ "unicode_decimal": 59054
2352
+ },
2353
+ {
2354
+ "icon_id": "4889699",
2355
+ "name": "开始",
2356
+ "font_class": "kaishi",
2357
+ "unicode": "e61e",
2358
+ "unicode_decimal": 58910
2359
+ },
2360
+ {
2361
+ "icon_id": "2815724",
2362
+ "name": "视频播放",
2363
+ "font_class": "shipinbofang",
2364
+ "unicode": "e600",
2365
+ "unicode_decimal": 58880
2366
+ },
2367
+ {
2368
+ "icon_id": "6756887",
2369
+ "name": "个人中心",
2370
+ "font_class": "gerenzhongxin",
2371
+ "unicode": "e61d",
2372
+ "unicode_decimal": 58909
2373
+ },
2374
+ {
2375
+ "icon_id": "6729079",
2376
+ "name": "仿真",
2377
+ "font_class": "fangzhen",
2378
+ "unicode": "e61c",
2379
+ "unicode_decimal": 58908
2380
+ },
2381
+ {
2382
+ "icon_id": "5830694",
2383
+ "name": "搜索按钮",
2384
+ "font_class": "sousuoanniu",
2385
+ "unicode": "e60f",
2386
+ "unicode_decimal": 58895
2387
+ },
2388
+ {
2389
+ "icon_id": "5830695",
2390
+ "name": "坐标",
2391
+ "font_class": "zuobiao",
2392
+ "unicode": "e610",
2393
+ "unicode_decimal": 58896
2394
+ },
2395
+ {
2396
+ "icon_id": "5830696",
2397
+ "name": "标记",
2398
+ "font_class": "biaoji",
2399
+ "unicode": "e611",
2400
+ "unicode_decimal": 58897
2401
+ },
2402
+ {
2403
+ "icon_id": "5830698",
2404
+ "name": "放大",
2405
+ "font_class": "fangda",
2406
+ "unicode": "e612",
2407
+ "unicode_decimal": 58898
2408
+ },
2409
+ {
2410
+ "icon_id": "5830699",
2411
+ "name": "缩小",
2412
+ "font_class": "suoxiao",
2413
+ "unicode": "e613",
2414
+ "unicode_decimal": 58899
2415
+ },
2416
+ {
2417
+ "icon_id": "5830712",
2418
+ "name": "测距",
2419
+ "font_class": "ceju",
2420
+ "unicode": "e614",
2421
+ "unicode_decimal": 58900
2422
+ },
2423
+ {
2424
+ "icon_id": "5830818",
2425
+ "name": "工具箱",
2426
+ "font_class": "gongjuxiang",
2427
+ "unicode": "e615",
2428
+ "unicode_decimal": 58901
2429
+ },
2430
+ {
2431
+ "icon_id": "5830819",
2432
+ "name": "图层",
2433
+ "font_class": "tuceng",
2434
+ "unicode": "e616",
2435
+ "unicode_decimal": 58902
2436
+ },
2437
+ {
2438
+ "icon_id": "5830977",
2439
+ "name": "定位",
2440
+ "font_class": "dingwei",
2441
+ "unicode": "e617",
2442
+ "unicode_decimal": 58903
2443
+ },
2444
+ {
2445
+ "icon_id": "5830978",
2446
+ "name": "设备定位",
2447
+ "font_class": "shebeidingwei",
2448
+ "unicode": "e618",
2449
+ "unicode_decimal": 58904
2450
+ },
2451
+ {
2452
+ "icon_id": "5830979",
2453
+ "name": "实时状态",
2454
+ "font_class": "shishizhuangtai",
2455
+ "unicode": "e619",
2456
+ "unicode_decimal": 58905
2457
+ },
2458
+ {
2459
+ "icon_id": "5830980",
2460
+ "name": "方案配置",
2461
+ "font_class": "fanganpeizhi",
2462
+ "unicode": "e61a",
2463
+ "unicode_decimal": 58906
2464
+ },
2465
+ {
2466
+ "icon_id": "5831004",
2467
+ "name": "编辑路口信息",
2468
+ "font_class": "bianjilukouxinxi",
2469
+ "unicode": "e61b",
2470
+ "unicode_decimal": 58907
2471
+ },
2472
+ {
2473
+ "icon_id": "5830154",
2474
+ "name": "me",
2475
+ "font_class": "me",
2476
+ "unicode": "e601",
2477
+ "unicode_decimal": 58881
2478
+ },
2479
+ {
2480
+ "icon_id": "5830155",
2481
+ "name": "Maintenance",
2482
+ "font_class": "Maintenance",
2483
+ "unicode": "e602",
2484
+ "unicode_decimal": 58882
2485
+ },
2486
+ {
2487
+ "icon_id": "5830156",
2488
+ "name": "Statistics",
2489
+ "font_class": "Statistics",
2490
+ "unicode": "e603",
2491
+ "unicode_decimal": 58883
2492
+ },
2493
+ {
2494
+ "icon_id": "5830158",
2495
+ "name": "Black list",
2496
+ "font_class": "Blacklist",
2497
+ "unicode": "e604",
2498
+ "unicode_decimal": 58884
2499
+ },
2500
+ {
2501
+ "icon_id": "5830159",
2502
+ "name": "Configuration",
2503
+ "font_class": "Configuration",
2504
+ "unicode": "e605",
2505
+ "unicode_decimal": 58885
2506
+ },
2507
+ {
2508
+ "icon_id": "5830160",
2509
+ "name": "home",
2510
+ "font_class": "home",
2511
+ "unicode": "e606",
2512
+ "unicode_decimal": 58886
2513
+ },
2514
+ {
2515
+ "icon_id": "5830216",
2516
+ "name": "Alarm",
2517
+ "font_class": "Alarm",
2518
+ "unicode": "e607",
2519
+ "unicode_decimal": 58887
2520
+ }
2521
+ ]
2522
+ }